/* ═══════════════════════════════════════════════════
   TULIP GARDEN — Shared Stylesheet
   Design: Regal Indian Wedding · Gold × Maroon × Cream
   ═══════════════════════════════════════════════════ */

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

:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C97A;
  --gold-pale:   #F5E8C0;
  --gold-dark:   #9A6E2A;
  --maroon:      #6B1E2E;
  --maroon-dark: #4A1020;
  --maroon-deep: #2E0A14;
  --cream:       #FDF6EC;
  --cream-dark:  #F2E8D5;
  --cream-mid:   #EEE0C6;
  --charcoal:    #1A0A0E;
  --text:        #3A2A1A;
  --text-light:  #7A6A5A;
  --white:       #FFFFFF;
  --shadow:      0 8px 40px rgba(106,30,46,0.15);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.3);
  --transition:  all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ─── SHARED COMPONENTS ─── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.ornament {
  display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 14px;
}
.ornament span { display: block; height: 1px; width: 60px; background: linear-gradient(to right, transparent, var(--gold)); }
.ornament span:last-child { background: linear-gradient(to left, transparent, var(--gold)); }
.ornament i { color: var(--gold); font-size: 14px; }
.ornament.left { justify-content: flex-start; }
.ornament.left span { background: linear-gradient(to right, var(--gold), transparent); }
.ornament.left span:last-child { background: linear-gradient(to left, var(--gold), transparent); }

.section-label {
  font-size: 10px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); text-align: center; margin-bottom: 10px;
  font-family: 'Nunito Sans', sans-serif;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 58px); font-weight: 400;
  text-align: center; color: var(--maroon-dark); line-height: 1.15; margin-bottom: 18px;
}
.section-title em { font-style: italic; color: var(--gold-dark); }
.section-title.light { color: var(--gold-light); }
.section-desc {
  text-align: center; color: var(--text-light); font-size: 15px;
  max-width: 600px; margin: 0 auto 60px; line-height: 1.9;
}
.section-desc.light { color: rgba(255,255,255,0.6); }

section { padding: 100px 0; }

/* Buttons */
.btn-primary {
  display: inline-block; font-family: 'Nunito Sans', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase; font-weight: 700;
  padding: 15px 38px; background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--charcoal); text-decoration: none; border-radius: 2px;
  transition: var(--transition); box-shadow: var(--shadow-gold); border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(201,168,76,0.45); }

.btn-outline {
  display: inline-block; font-family: 'Nunito Sans', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase; font-weight: 700;
  padding: 14px 36px; border: 1.5px solid var(--gold);
  color: var(--gold); text-decoration: none; border-radius: 2px;
  transition: var(--transition); background: transparent; cursor: pointer;
}
.btn-outline:hover { background: rgba(201,168,76,0.1); transform: translateY(-2px); }

.btn-outline-light {
  display: inline-block; font-family: 'Nunito Sans', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase; font-weight: 700;
  padding: 14px 36px; border: 1.5px solid rgba(201,168,76,0.5);
  color: var(--gold-light); text-decoration: none; border-radius: 2px;
  transition: var(--transition); background: transparent; cursor: pointer;
}
.btn-outline-light:hover { border-color: var(--gold-light); background: rgba(201,168,76,0.08); transform: translateY(-2px); }

/* Scroll Reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; } .d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }

/* ─── NAVBAR ─── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 40px; display: flex; align-items: center;
  justify-content: space-between; transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(26,10,12,0.97); backdrop-filter: blur(12px);
  padding: 12px 40px; box-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
#navbar.opaque {
  background: rgba(26,10,12,0.97); padding: 14px 40px;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.nav-logo-main { font-family: 'Great Vibes', cursive; font-size: 32px; color: var(--gold-light); letter-spacing: 1px; }
.nav-logo-sub { font-size: 9px; letter-spacing: 4px; color: rgba(232,201,122,0.7); text-transform: uppercase; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.82); text-decoration: none; transition: var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--charcoal) !important; padding: 10px 24px; border-radius: 2px;
  font-weight: 700 !important; box-shadow: var(--shadow-gold);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 28px rgba(201,168,76,0.45) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--gold-light); border-radius: 2px; transition: var(--transition); }

/* Mobile Menu */
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: rgba(26,10,12,0.99); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif; font-size: 28px;
  color: var(--gold-light); text-decoration: none; letter-spacing: 3px;
}
.mobile-menu a.active { color: var(--white); border-bottom: 1px solid var(--gold); }
.mobile-close { position: absolute; top: 24px; right: 32px; font-size: 28px; color: var(--gold-light); cursor: pointer; background: none; border: none; }

/* ─── PAGE HERO ─── */
.page-hero {
  position: relative; height: 55vh; min-height: 400px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,10,12,0.4) 0%, rgba(26,10,12,0.8) 100%);
}
.page-hero-content { position: relative; padding: 0 60px 60px; width: 100%; }
.page-hero-label {
  font-size: 10px; letter-spacing: 5px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px; display: block;
}
.page-hero-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(42px, 6vw, 78px);
  font-weight: 300; color: var(--white); line-height: 1.05;
}
.page-hero-title em { font-style: italic; color: var(--gold-light); }
.page-hero-crumb {
  display: flex; align-items: center; gap: 10px; margin-top: 16px;
  font-size: 11px; letter-spacing: 2px; color: rgba(255,255,255,0.45); text-transform: uppercase;
}
.page-hero-crumb a { color: rgba(255,255,255,0.45); text-decoration: none; }
.page-hero-crumb a:hover { color: var(--gold-light); }
.page-hero-crumb i { font-size: 8px; }

/* ─── FOOTER ─── */
footer { background: #0e0508; padding: 60px 24px 36px; text-align: center; }
.footer-logo { font-family: 'Great Vibes', cursive; font-size: 48px; color: var(--gold); margin-bottom: 6px; }
.footer-tagline { font-size: 11px; letter-spacing: 4px; color: rgba(232,201,122,0.5); text-transform: uppercase; margin-bottom: 32px; }
.footer-divider { width: 100%; height: 1px; background: linear-gradient(to right, transparent, rgba(201,168,76,0.3), transparent); margin: 28px 0; }
.footer-links { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; margin-bottom: 24px; }
.footer-links a { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold-light); }
.social-row { display: flex; justify-content: center; gap: 18px; margin-bottom: 32px; }
.social-icon {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5);
  font-size: 15px; text-decoration: none; transition: var(--transition);
}
.social-icon:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-3px); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); margin-bottom: 8px; }
.footer-closing { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 16px; color: rgba(201,168,76,0.45); }
.footer-nav-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; max-width: 900px; margin: 0 auto 48px; text-align: left;
}
.footer-nav-col h4 {
  font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--gold-light);
  margin-bottom: 16px; font-weight: 400;
}
.footer-nav-col a { display: block; color: rgba(255,255,255,0.4); text-decoration: none; font-size: 12px; letter-spacing: 1px; margin-bottom: 10px; transition: color 0.3s; }
.footer-nav-col a:hover { color: var(--gold-light); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-nav-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 768px) {
  section { padding: 70px 0; }
  #navbar { padding: 14px 20px; }
  #navbar.scrolled, #navbar.opaque { padding: 10px 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .page-hero-content { padding: 0 28px 48px; }
  .page-hero-title { font-size: clamp(34px, 10vw, 52px); }
  .footer-nav-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 480px) {
  .footer-nav-grid { grid-template-columns: 1fr; text-align: center; }
}

/* ─── SHARED JS INIT STYLE ─── */
.no-transition * { transition: none !important; }
