/* ═══════════════════════════════════════
   animations.css 
═══════════════════════════════════════ */

/* ── Page Load Fade-Up ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.main-nav            { animation: fadeUp .5s ease both; }
.booking-widget-wrap { animation: fadeUp .5s ease both; }
.deals-section       { animation: fadeUp .5s .15s ease both; }