:root {
  --gold-primary: #f3cf7a;
  --gold-secondary: #d8aa44;
  --gold-border: rgba(243, 207, 122, 0.35);
  --text-pure: #ffffff;
  --text-ivory: #fff6e5;
  --text-champagne: #e5c578;
}

html {
  scroll-behavior: smooth;
}

body.combo-body {
  margin: 0;
  background-color: #080c14;
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--text-ivory);
  overflow-x: hidden;
}

.combo-container {
  max-width: 480px; /* Mobile viewport constraint */
  position: relative;
}

.font-cinzel {
  font-family: 'Cinzel Decorative', Georgia, serif;
}

.telugu-invocation {
  font-family: 'Ramabhadra', sans-serif;
  color: var(--gold-primary);
  font-size: 0.95rem;
}

.text-gold { color: var(--gold-primary) !important; }
.text-ivory { color: var(--text-ivory) !important; }
.text-champagne { color: var(--text-champagne) !important; }
.x-small { font-size: 0.72rem; }
.tracking-wide { letter-spacing: 2px; }

/* Slide Full-Height Layout */
.story-slide {
  min-height: 100vh;
  position: relative;
}

/* Glassmorphism Card Container */
.slide-card {
  border-radius: 28px;
  background: rgba(12, 16, 28, 0.75);
  backdrop-filter: blur(14px);
  border: 1px solid var(--gold-border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* Slide 1: Sangeet (Emerald & Amber) */
.theme-sangeet {
  background: radial-gradient(circle at 50% 30%, #0d3b2b 0%, #041a12 100%);
}

/* Slide 2: Muhurtham (Imperial Crimson & Gold) */
.theme-muhurtham {
  background: radial-gradient(circle at 50% 30%, #3d0a18 0%, #1c030a 100%);
}

/* Slide 3: Reception (Midnight Blue & Starlight) */
.theme-reception {
  background: radial-gradient(circle at 50% 30%, #121e3d 0%, #080d1a 100%);
}

.hero-slide {
  background: radial-gradient(circle at center, #24140a 0%, #0a0604 100%);
}

.final-slide {
  background: radial-gradient(circle at center, #1b1622 0%, #09070c 100%);
}

.parents-subtext {
  color: var(--text-champagne);
  font-size: 0.95rem;
}

.ornament-divider {
  color: var(--gold-primary);
  font-size: 1.1rem;
}

.badge-gold-outline {
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  background: rgba(243, 207, 122, 0.08);
  letter-spacing: 1.5px;
}

.details-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--gold-border);
}

.time-block {
  background: rgba(243, 207, 122, 0.08);
  border: 1px solid rgba(243, 207, 122, 0.25);
}

/* Buttons */
.btn-gold-solid {
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
  color: #1a0308;
  border: none;
}
.btn-gold-solid:hover {
  background: linear-gradient(135deg, #ffde94 0%, var(--gold-primary) 100%);
  color: #000;
}

.btn-gold-outline {
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  background: transparent;
}
.btn-gold-outline:hover {
  background: var(--gold-primary);
  color: #1a0308;
}

/* Sticky Bottom Event Navigator Dock */
.floating-nav-dock {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1040;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold-border);
  border-radius: 50px;
  max-width: 90vw;
}

.nav-pill-link {
  color: var(--text-champagne);
  transition: all 0.25s ease;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
}

.nav-pill-link.active, .nav-pill-link:hover {
  background: var(--gold-primary);
  color: #0a0e1a !important;
}

/* Floating Music Control */
.audio-dock {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 1050;
}
.btn-audio-floating {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.btn-audio-floating.playing {
  animation: spinMusic 4s linear infinite;
}
@keyframes spinMusic {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
.bounce-arrow {
  animation: bounce 1.5s infinite;
  color: var(--gold-primary);
  font-size: 1.2rem;
}