/* ==========================================================================
   EVENT OVERVIEW & BASE DESIGN SYSTEM - LIGHT & ELEGANT EDITION
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&family=Outfit:wght@300;400;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  /* Default Fallback CSS Variables (Wedding Light Theme) */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  --bg-primary: #FAF7F2;
  --bg-surface: rgba(255, 255, 255, 0.95);
  --bg-card: #FFFFFF;
  --text-main: #1E293B;
  --text-muted: #64748B;
  --accent: #B8860B;
  --primary-gold: #B8860B;
  --primary-glow: rgba(184, 134, 11, 0.25);
  --cobaltho-blue: #0066FF;
  --cobaltho-cyan: #00D2FF;
  --cobaltho-gradient: linear-gradient(135deg, #0066FF 0%, #00D2FF 100%);
  --border-color: rgba(184, 134, 11, 0.2);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --shadow-glow: 0 10px 30px rgba(0, 0, 0, 0.06);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  transition: var(--transition);
  min-height: 100vh;
}

/* Typography Utilities */
h1, h2, h3, h4, .font-serif {
  font-family: var(--font-heading);
}

.text-gradient {
  background: var(--accent-gradient, linear-gradient(135deg, #B8860B 0%, #D4AF37 50%, #996515 100%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-cobaltho {
  background: var(--cobaltho-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Cobaltho Portfolio Top Announcement Bar */
.cobaltho-top-banner {
  background: #0F172A;
  border-bottom: 1px solid rgba(0, 210, 255, 0.3);
  padding: 8px 16px;
  text-align: center;
  font-size: 0.85rem;
  color: #F8FAFC;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1100;
}

.cobaltho-badge {
  background: var(--cobaltho-gradient);
  color: #FFF;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cobaltho-link {
  color: var(--cobaltho-cyan);
  text-decoration: underline;
  font-weight: 600;
  margin-left: 6px;
  cursor: pointer;
}

/* Header & Boxed Floating Navigation Bar */
.navbar {
  position: fixed;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 1100px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0;
  transition: var(--transition);
}

.navbar.scrolled {
  top: 8px;
}

.nav-container {
  width: 100%;
  background: #FFFFFF;
  border: 1.5px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--radius-full);
  padding: 10px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.brand-logo {
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  color: #D4AF37 !important; /* Pure gold letter fill */
  -webkit-text-fill-color: #D4AF37 !important;
  -webkit-text-stroke: 0px transparent !important;
  letter-spacing: 0.5px;
  white-space: nowrap;
  text-shadow:
    -1px -1px 0 #0F172A,
     1px -1px 0 #0F172A,
    -1px  1px 0 #0F172A,
     1px  1px 0 #0F172A,
     0 2px 6px rgba(0, 0, 0, 0.2);
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  align-items: center;
  margin-left: auto;
}

.nav-links a {
  text-decoration: none;
  color: #0F172A !important; /* Bold dark slate text for high contrast */
  font-size: 0.92rem;
  font-weight: 700;
  transition: var(--transition);
  position: relative;
  padding: 6px 10px;
  border-radius: var(--radius-full);
}

.nav-links a:hover {
  color: var(--primary-gold) !important;
  background: rgba(0, 0, 0, 0.05);
}

/* Floating Event Switcher Pill Box BELOW the Main Navbar */
.preset-switcher-bar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  border: 1.5px solid rgba(15, 23, 42, 0.12);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.preset-switcher-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #475569;
}

.switcher-btns {
  display: flex;
  gap: 6px;
}

.switcher-btn {
  background: #F1F5F9;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #0F172A;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.switcher-btn:hover {
  background: #E2E8F0;
  transform: translateY(-1px);
}

.switcher-btn.active {
  background: var(--primary-gold);
  color: #FFFFFF !important;
  font-weight: 700;
  border-color: var(--primary-gold);
  box-shadow: 0 4px 12px var(--primary-glow);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 180px 20px 70px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.5s ease-in-out;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--hero-overlay, linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.6) 75%, var(--bg-primary) 100%));
  z-index: 1;
  transition: var(--transition);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.hero-subtitle {
  font-size: 1.25rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #FFD700 !important; /* 100% Radiant Gold fill */
  -webkit-text-fill-color: #FFD700 !important;
  -webkit-text-stroke: 0px transparent !important;
  font-weight: 800;
  /* Pure outer dark halo contour + deep outer drop shadow */
  text-shadow:
    -1.5px -1.5px 0 #000000,
     1.5px -1.5px 0 #000000,
    -1.5px  1.5px 0 #000000,
     1.5px  1.5px 0 #000000,
     0 4px 15px rgba(0, 0, 0, 0.9),
     0 0 15px rgba(255, 215, 0, 0.5);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.7));
}

.hero-title {
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
  color: #FFD700 !important; /* Pure radiant gold text fill - 100% GOLD! */
  -webkit-text-fill-color: #FFD700 !important;
  -webkit-text-stroke: 0px transparent !important; /* Completely eliminate inner black fill! */
  /* Pure outer halo contour + deep outer drop shadow */
  text-shadow:
    -2px -2px 0 #000000,
     2px -2px 0 #000000,
    -2px  2px 0 #000000,
     2px  2px 0 #000000,
    -3px  0   0 #000000,
     3px  0   0 #000000,
     0    3px 0 #000000,
     0   -3px 0 #000000,
     0 12px 30px rgba(0, 0, 0, 0.9),
     0 0 25px rgba(255, 215, 0, 0.6);
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.7));
}

.hero-date-location {
  font-size: 1.25rem;
  margin-bottom: 32px;
  color: var(--text-main);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.badge-tag {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

/* Countdown Timer */
.countdown-container {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.countdown-card {
  background: #FFFFFF;
  backdrop-filter: blur(16px);
  border: 2px solid var(--primary-gold);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  min-width: 95px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08), 0 0 15px var(--primary-glow);
  text-align: center;
  transition: var(--transition);
}

.countdown-card:hover {
  transform: translateY(-4px) scale(1.03);
}

.countdown-value {
  font-size: 2.4rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--primary-gold);
}

.countdown-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 4px;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary-gold) 0%, #996515 100%);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 36px;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px var(--primary-glow);
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 28px var(--primary-glow);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  color: var(--text-main);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
  background: #F8FAFC;
  transform: translateY(-2px);
}

.btn-cobaltho {
  background: var(--cobaltho-gradient);
  color: #FFF;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.btn-cobaltho:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 210, 255, 0.5);
}

/* Sections */
.section {
  padding: 90px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px;
}

.section-subtitle {
  color: var(--primary-gold);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-main);
}

.section-description {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Portfolio Sale Highlight Card Section */
.pricing-section {
  background: #FFFFFF;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.pricing-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.pricing-card.popular {
  border-color: var(--cobaltho-blue);
  box-shadow: 0 10px 40px rgba(0, 102, 255, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cobaltho-gradient);
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: var(--radius-full);
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 16px 0 8px;
  color: var(--text-main);
}

.pricing-features {
  list-style: none;
  margin: 24px 0;
  text-align: left;
}

.pricing-features li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.95rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '✓';
  color: var(--cobaltho-blue);
  font-weight: 700;
}

/* Timeline / Agenda */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--primary-gold), transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: 40px;
  position: relative;
  margin-bottom: 40px;
  width: 50%;
}

.timeline-item:nth-child(even) {
  align-self: flex-end;
  justify-content: flex-start;
  padding-right: 0;
  padding-left: 40px;
  margin-left: 50%;
}

.timeline-dot {
  position: absolute;
  right: -10px;
  top: 15px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-gold);
  border: 4px solid var(--bg-primary);
  box-shadow: 0 0 10px var(--primary-glow);
}

.timeline-item:nth-child(even) .timeline-dot {
  right: auto;
  left: -10px;
}

.timeline-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-glow);
  width: 100%;
}

.timeline-time {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-gold);
  background: rgba(0, 0, 0, 0.04);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
}

.timeline-title {
  font-size: 1.3rem;
  margin-bottom: 6px;
  color: var(--text-main);
}

/* Location Grid */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.location-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-glow);
}

.location-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-gold);
}

.location-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.04);
  color: var(--primary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}

/* Gift Registry & Bank Details */
.gift-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.gift-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-glow);
}

.gift-card:hover {
  border-color: var(--primary-gold);
}

.gift-details {
  background: #F1F5F9;
  border-radius: var(--radius-sm);
  padding: 12px;
  margin: 16px 0;
  font-family: monospace;
  font-size: 1.05rem;
  color: var(--primary-gold);
  font-weight: 700;
  letter-spacing: 1px;
}

.btn-copy {
  background: #F1F5F9;
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-copy:hover {
  background: var(--primary-gold);
  color: #FFFFFF;
}

/* RSVP Form Section */
.rsvp-wrapper {
  max-width: 650px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-main);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: #F8FAFC;
  border: 1px solid #CBD5E1;
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 10px var(--primary-glow);
  background: #FFFFFF;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Floating WhatsApp Lead Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1000;
  background: #25D366;
  color: #FFF;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-glow);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text-main);
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--font-body);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-muted);
  display: none;
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Modal Lead Popup */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: #FFFFFF;
  border: 1px solid var(--cobaltho-cyan);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 102, 255, 0.25);
  text-align: center;
  color: var(--text-main);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Footer */
footer {
  background: #FFFFFF;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 40px 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #0F172A;
  border: 1px solid var(--primary-gold);
  color: #FFFFFF;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2000;
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
  transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .cobaltho-top-banner {
    font-size: 0.75rem;
    flex-wrap: wrap;
  }
  .preset-switcher-bar {
    width: 95%;
    padding: 6px 12px;
    top: 75px;
    flex-direction: column;
    gap: 6px;
    border-radius: 16px;
  }
  .navbar {
    top: 155px;
  }
  .nav-links {
    display: none;
  }
  .timeline::before {
    left: 20px;
  }
  .timeline-item, .timeline-item:nth-child(even) {
    width: 100%;
    margin-left: 0;
    padding-left: 50px;
    padding-right: 0;
  }
  .timeline-dot, .timeline-item:nth-child(even) .timeline-dot {
    left: 10px;
    right: auto;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
