/* Wanderlust Tours & Travels — custom styles on top of Tailwind */

html {
  scroll-behavior: smooth;
}

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

/* Hero overlay gradient */
.hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.35) 0%,
    rgba(15, 23, 42, 0.55) 60%,
    rgba(15, 23, 42, 0.75) 100%
  );
}

/* Reusable card hover lift */
.card-lift {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.card-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Image zoom on hover (wrap image in .img-zoom-wrap with overflow-hidden) */
.img-zoom {
  transition: transform 0.6s ease;
}
.img-zoom-wrap:hover .img-zoom {
  transform: scale(1.08);
}

/* Gradient brand text */
.text-gradient {
  background: linear-gradient(90deg, #f97316, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Fade-up entrance animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
}
.reveal.visible {
  animation: fadeUp 0.7s ease forwards;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #f97316; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #ea580c; }
