/* =========================================================
   Divnitiy Travels — Animation Helpers
   ========================================================= */

@keyframes fadeUp{
  from{opacity:0;transform:translateY(26px);}
  to{opacity:1;transform:translateY(0);}
}
@keyframes fadeIn{
  from{opacity:0;}
  to{opacity:1;}
}
@keyframes dashMove{
  to{stroke-dashoffset:-40;}
}
@keyframes floatSlow{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-10px);}
}

.hero-plane{animation:floatSlow 6s ease-in-out infinite;}
.flight-arc{
  stroke-dasharray:6 6;
  animation:dashMove 3s linear infinite;
}

.fade-up{animation:fadeUp .8s ease both;}
.fade-in{animation:fadeIn 1s ease both;}
.delay-1{animation-delay:.15s;}
.delay-2{animation-delay:.3s;}
.delay-3{animation-delay:.45s;}

@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important;}
}
