/* Lila Tour DMC — Landing page fine-tuning on top of Tailwind CDN */

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Scroll reveal animation (progressive enhancement via main.js) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* Nav shadow on scroll */
.nav-scrolled {
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

/* Hero bounce arrow */
@keyframes bounce-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}
.animate-bounce-soft {
  animation: bounce-soft 2s ease-in-out infinite;
}

/* Testimonial quote mark */
.quote-mark {
  font-family: Georgia, serif;
  line-height: 1;
}

/* Mobile nav */
#mobileNav {
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

/* Toast for contact form */
.toast {
  transition: opacity .3s ease, transform .3s ease;
}
