/* ============================================================
   MY VTC GO — alternative-animation.css
   Animations spécifiques aux pages Alternative Uber/Bolt
   ============================================================ */

/* ─── FADE UP (entrée au chargement) ─────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up {
  animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.fade-up--1 { animation-delay: 0.05s; }
.fade-up--2 { animation-delay: 0.12s; }
.fade-up--3 { animation-delay: 0.19s; }
.fade-up--4 { animation-delay: 0.26s; }

/* ─── SECTION REVEAL AU SCROLL ───────────────── */
.alt-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(.22,.68,0,1.2);
}
.alt-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── PREFERS REDUCED MOTION ─────────────────── */
@media (prefers-reduced-motion: reduce) {
  .fade-up, .fade-up--1, .fade-up--2,
  .fade-up--3, .fade-up--4 { animation: none; }
  .alt-reveal { opacity: 1; transform: none; transition: none; }
}
