/* ===========================================
   HORIZON ESCAPES – ANIMATIONS
=========================================== */

/* Fade up animation for reveal-on-scroll */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

/* GSAP will handle most animations, but these are fallbacks */