html { scroll-behavior: smooth; }
body { font-family: 'Helvetica Neue', sans-serif; }

/* Hero reduced height */
.hero, .hero-slide {
  position: relative;
  height: 50vh;
}

/* Hero overlay */
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.hero-slide .container {
  position: relative;
  z-index: 2;
}
.hero-slide h1 {
  font-size: 3rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

/* Global tighter section spacing */
section {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

/* Section titles */
.section-title {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

/* Testimonials box */
.testimonial {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 0.5rem;
}

/* Navbar spacing */
.navbar {
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
}
.navbar-brand img {
  vertical-align: middle;
}
.nav-link { margin-left: 1rem; }

/* Footer */
footer p { margin: 0; }

/* Primary buttons: aqua blue with lime green hover */
.btn-primary {
  background-color: #00AEEF; /* aqua blue */
  border-color: #00AEEF;
  animation: pulse 2s infinite;
}
.btn-primary:hover {
  background-color: #7AC943; /* lime green */
  border-color: #7AC943;
}
.wave svg {
  display: block;
  width: 100%;
  height: auto;
  margin-top: -1px; /* remove gap between hero and wave */
}

/* Optional: if you want the wave to cover next section top edge */
.wave {
  line-height: 0; /* remove spacing caused by inline svg */
}
.logo-img {
  height: 80px;   /* Adjust to preferred size */
  width: 130px;
  max-height: 100%;
}

/* Cards */
.card-title { font-weight: 600; }
.card-text { font-size: 0.95rem; }
.card-img-top { height: 250px; object-fit: cover; }

/* Pricing cards with theme colors */
#pricing .card { border: 2px solid #00AEEF; transition: transform 0.3s ease; }
#pricing .card:hover { transform: scale(1.05); border-color: #7AC943; }

/* Pulse animation */
@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.15); } 100% { transform: scale(1); } }

/* About, pricing, contact paragraphs spacing */
#about p, #pricing p, #contact p { margin-bottom: 0.75rem; }

/* Booking modal form spacing fixes using flex gap */
#bookingModal .modal-body form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem; /* adjust as needed for spacing between fields */
}

#bookingModal .modal-body .mb-3 {
  margin-bottom: 0 !important; /* reset Bootstrap margin */
}

#bookingModal .modal-body {
  padding: 1rem; /* optional: tighter modal padding */
}
#contact-form {
  margin-top: 40px;
  max-width: 600px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
}

#contact-form h2 {
  margin-bottom: 20px;
}

#contact-form label {
  font-weight: bold;
}

#contact-form input,
#contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

#contact-form button {
  padding: 14px 28px;
  background-color: #009688;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

#contact-form button:hover {
  background-color: #00796b;
}
