
/* KeyKrest Event Architects Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Montserrat:wght@300;400;600;800&display=swap');

:root {
  --rich-black: #1A1A1A;
  --champagne-gold: #E6C392;
  --silver-steel: #C0C0C0;
  --deep-gold: #D4AF37;
  --text-light: #F5F5F5;
  --text-dark: #333333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  background-color: var(--rich-black);
  color: var(--text-light);
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.headline {
  font-weight: 900;
  letter-spacing: 1px;
}

.gold-text {
  color: var(--champagne-gold);
}

.silver-text {
  color: var(--silver-steel);
}

/* Buttons */
.btn-gold {
  background: transparent;
  color: var(--champagne-gold);
  border: 1px solid var(--champagne-gold);
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-gold:hover {
  background: var(--champagne-gold);
  color: var(--rich-black);
  box-shadow: 0 0 20px rgba(230, 195, 146, 0.5);
}

.btn-gold::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.btn-gold:hover::after {
  left: 100%;
}

/* Cards */
.service-card {
  background: rgba(30, 30, 30, 0.8);
  border: 1px solid rgba(230, 195, 146, 0.3);
  border-radius: 8px;
  padding: 30px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--champagne-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--champagne-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.card-silver::before {
  background: var(--silver-steel);
}

.card-gold::before {
  background: var(--deep-gold);
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.shimmer-gold {
  background: linear-gradient(90deg, var(--champagne-gold), #f5e6d0, var(--champagne-gold));
  background-size: 200% 100%;
  animation: shimmer 3s infinite linear;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pulse-animation {
  animation: pulse 2s infinite;
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--champagne-gold);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 26, 0.7);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.hero-motto {
  font-size: 2.5rem;
  margin-bottom: 30px;
  line-height: 1.3;
}

/* Dual Focus Section */
.dual-focus {
  background: rgba(20, 20, 20, 0.9);
}

.focus-card {
  position: relative;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s ease;
}

.focus-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.focus-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
  text-align: center;
  transition: background 0.3s ease;
}

.focus-title {
  font-size: 2rem;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.focus-card:hover .focus-image {
  transform: scale(1.05);
}

.focus-card:hover .focus-overlay {
  background: rgba(0, 0, 0, 0.4);
}

.focus-card:hover .focus-title {
  color: var(--champagne-gold);
  text-shadow: 0 0 10px rgba(230, 195, 146, 0.8);
}

/* Blueprint Watermark */
.blueprint-bg {
  position: relative;
}

.blueprint-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(90deg, rgba(230, 195, 146, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(230, 195, 146, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: -1;
}

/* Countdown Timer */
.countdown-container {
  background: rgba(30, 30, 30, 0.9);
  border: 1px solid var(--champagne-gold);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}

.countdown-item {
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(230, 195, 146, 0.3);
  border-radius: 6px;
  padding: 15px;
  min-width: 80px;
}

.countdown-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--champagne-gold);
  font-family: 'Playfair Display', serif;
}

.countdown-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-motto {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .hero-motto {
    font-size: 1.5rem;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .focus-card {
    height: 300px;
  }
  
  .countdown-item {
    min-width: 60px;
    padding: 10px;
  }
  
  .countdown-number {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-motto {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .countdown-timer {
    gap: 10px;
  }
  
  .countdown-item {
    min-width: 50px;
    padding: 8px;
  }
  
  .countdown-number {
    font-size: 1.2rem;
  }
}
