/* ═══════════════════════════════════════════
   animations.css — All keyframe animations
   Change this file to update: star twinkle
   speed, pulse dot animation, or add new
   animations for any section
═══════════════════════════════════════════ */

/* ── Live dot pulse (social strip) ── */
@keyframes pulse{
  0%,100%{opacity:1;transform:scale(1)}
  50%{opacity:.7;transform:scale(.9)}
}

/* ── Star twinkle (destination & tour sections) ── */
@keyframes twinkle{
  0%,100%{opacity:.6;transform:scale(1)}
  50%{opacity:1;transform:scale(1.4)}
}
.stars::before{animation:twinkle 4s ease-in-out infinite}
.stars::after{animation:twinkle 6s ease-in-out infinite 2s}
