/* ═══ bus-booking.com — Custom CSS ═══ */
/* Tailwind CDN handles 95% of styling. This file: fonts + animations only. */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@700;800&family=Inter:wght@400;500;600&display=swap');

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
}

.fade-up.visible {
  animation: fadeUp 0.6s ease forwards;
}
