.hero h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero p {
  font-size: clamp(1rem, 3vw, 1.25rem);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.card:hover {
  transform: translateY(-4px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.btn-primary {
  background-color: #d63384;
  border: none;
}

.btn-primary:hover {
  background-color: #b12e70;
}

.overlay {
  background: rgba(0, 0, 0, 0.55);
}

section h2 {
  letter-spacing: 0.5px;
}

.testimonials-section {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  border: none !important;
  box-shadow: none !important;
}

.testimonials-section h2,
.testimonials-section p,
.testimonials-section footer {
  color: #fff;
}

section {
  background-color: transparent !important;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero .overlay {
  backdrop-filter: brightness(0.8);
}

.animate-fade-in {
  opacity: 0;
  transform: translateY(15px);
  animation: fadeInUp 1s ease-out forwards;
}

.animate-fade-in-delay {
  opacity: 0;
  transform: translateY(15px);
  animation: fadeInUp 1.4s ease-out forwards;
}

.animate-fade-in-delay-2 {
  opacity: 0;
  transform: translateY(15px);
  animation: fadeInUp 1.8s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-indicator i {
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-8px);
  }

  60% {
    transform: translateY(-4px);
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  font-size: 1.8rem;
  border-radius: 50%;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
  transform: scale(1.1);
}

/* --- Fade and Slide Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up {
  transition-delay: 0.1s;
}

.fade-in {
  transition-delay: 0.2s;
}

.fade-left {
  transform: translateX(-40px);
}

.fade-right {
  transform: translateX(40px);
}


/* Parallax only on desktop */
@media (min-width: 992px) {
  .hero {
    background-attachment: fixed;
  }
}

/* Mobile hero fix */
@media (max-width: 991px) {
  .hero {
    background-attachment: scroll;
    background-position: center top;
  }
}

/* In your CSS or inside <style> block */
input[type="date"]:invalid {
  background-color: #f8d7da;
}

#availabilityMessage {
  min-height: 1.5rem;
}

/* --- Navbar Visibility Fix --- */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1050;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
  background-color: rgba(33, 37, 41, 0.85) !important;
  /* always slightly visible */
  backdrop-filter: blur(6px);
}

.navbar.home-navbar {
  background-color: rgba(33, 37, 41, 0.85) !important;
}


.navbar.scrolled {
  background-color: rgba(33, 37, 41, 0.95) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}