/* ═══════════════════════════════════════════════
   ANIMATIONS — entrance, scroll, pulse
   ═══════════════════════════════════════════════ */

@keyframes pulse {
  0%, 100% { opacity: 1;   transform: scale(1);   }
  50%       { opacity: 0.4; transform: scale(0.88); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0);    }
}

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

/* ─── Scroll fade-in ─── */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Hero staggered entrance ─── */
.hero-content > * {
  animation: fadeUp 0.65s ease both;
}

.hero-content .hero-badge    { animation-delay: 0.05s; }
.hero-content .hero-name     { animation-delay: 0.18s; }
.hero-content .hero-title    { animation-delay: 0.30s; }
.hero-content .hero-desc     { animation-delay: 0.42s; }
.hero-content .hero-btns     { animation-delay: 0.54s; }
.hero-content .hero-location { animation-delay: 0.62s; }

/* ─── Live badge (fire) ─── */
@keyframes live-glow {
  0%, 100% { box-shadow: 0 0 7px rgba(249,115,22,0.55); }
  50%       { box-shadow: 0 0 18px rgba(220,38,38,0.8), 0 0 36px rgba(249,115,22,0.35); }
}

@keyframes live-dot {
  0%, 100% { opacity: 1;   transform: translateY(-50%) scale(1);    }
  50%       { opacity: 0.3; transform: translateY(-50%) scale(0.55); }
}

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
