/* =============================================
   BOLLYWOOD TADKA — Animations
   ============================================= */

/* ---- MARQUEE LIGHTS ---- */
.marquee-lights {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  padding: 0.5rem 0.25rem;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.marquee-light {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold), 0 0 16px rgba(212,160,23,0.5);
  animation: bulbPulse 1.4s ease-in-out infinite;
  flex-shrink: 0;
}

.marquee-light:nth-child(2n)  { animation-delay: 0.28s; background: var(--gold-light); }
.marquee-light:nth-child(3n)  { animation-delay: 0.56s; }
.marquee-light:nth-child(4n)  { animation-delay: 0.84s; background: #fff8dc; }
.marquee-light:nth-child(5n)  { animation-delay: 1.12s; }
.marquee-light:nth-child(6n)  { animation-delay: 1.40s; background: var(--gold-light); }
.marquee-light:nth-child(7n)  { animation-delay: 0.14s; }
.marquee-light:nth-child(8n)  { animation-delay: 0.70s; }
.marquee-light:nth-child(9n)  { animation-delay: 1.00s; background: #fff8dc; }
.marquee-light:nth-child(10n) { animation-delay: 0.42s; }

@keyframes bulbPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--gold), 0 0 18px rgba(212,160,23,0.6); }
  50%       { opacity: 0.25; box-shadow: none; }
}

/* ---- GOLD SHIMMER TEXT ---- */
.shimmer-text {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 30%, #FFF8DC 50%, var(--gold-light) 70%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.stagger > *:nth-child(1) { transition-delay: 0.05s; }
.stagger > *:nth-child(2) { transition-delay: 0.18s; }
.stagger > *:nth-child(3) { transition-delay: 0.31s; }
.stagger > *:nth-child(4) { transition-delay: 0.44s; }
.stagger > *:nth-child(5) { transition-delay: 0.57s; }
.stagger > *:nth-child(6) { transition-delay: 0.70s; }

/* ---- GOLD GLOW PULSE ---- */
@keyframes goldGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,160,23,0.5); }
  50%       { box-shadow: 0 0 16px 4px rgba(212,160,23,0.25); }
}
.glow-pulse { animation: goldGlow 2.5s ease-in-out infinite; }

/* ---- FLOAT ---- */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.float { animation: float 3.5s ease-in-out infinite; }

/* ---- FADE IN ---- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in              { animation: fadeIn 0.8s ease forwards; }
.fade-in-delay-1      { animation-delay: 0.2s; opacity: 0; }
.fade-in-delay-2      { animation-delay: 0.5s; opacity: 0; }
.fade-in-delay-3      { animation-delay: 0.8s; opacity: 0; }
.fade-in-delay-4      { animation-delay: 1.1s; opacity: 0; }

/* ---- MANDALA ---- */
.mandala-wrap {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
  animation: rotateSlow 120s linear infinite;
}

@keyframes rotateSlow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ---- PAGE ENTER ---- */
@keyframes pageEnter {
  from { opacity: 0; }
  to   { opacity: 1; }
}
body { animation: pageEnter 0.4s ease; }
