body {
  background-color: #e8f5e9;
  /* This is a light green color for the background of the whole website */
}
.logo-clickable {
  cursor: pointer;
}

.navbar {
  position: relative;
  z-index: 1000;
  /* High z-index for navbar to stay on top */
}

#navbar-container {
  position: relative;
  z-index: 1000;
}

/* Home page CSS start */
@media (max-width: 768px) {
  .hero-section {
    height: 600px !important;
  }

  .carousel-item img {
    height: 400px !important;
  }

  .carousel-overlay h5 {
    font-size: 1rem;
  }

  .position-absolute.bottom-0.end-0 {
    bottom: 10px !important;
    right: 10px !important;
    max-width: 200px !important;
  }

  .position-absolute.bottom-0.end-0 h4 {
    font-size: 1rem;
  }

  .position-absolute.bottom-0.end-0 h6 {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .hero-section img {
    height: 500px !important;
  }

  .carousel-item img {
    height: 300px !important;
  }

  .carousel-container {
    width: 95% !important;
  }
}

/* Home page CSS end */

/* Card Animation */
.card {
  transition: transform 0.3s ease-in-out;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Amenities Animation */
.amenities-row {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.amenities-row:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}


.navbar {
  height: 80px;
  /* Fixed height */
  max-height: 80px;
}

.navbar-brand img {
  height: 40px;
  /* Fixed logo height */
  width: auto;
}

.navbar .nav-link {
  font-size: 1rem;
  /* Standard font size */
}

/* For smaller screens */
@media (max-width: 992px) {
  .navbar-collapse {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: white;
    z-index: 1000;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
}

/* Hero section(home page) with consistent proportions */
.hero-section {
  position: relative;
  height: 75vh;
  /* Scales with viewport height */
  min-height: 500px;
  /* Minimum height */
  max-height: 800px;
  /* Maximum height */
  overflow: hidden;
}

.hero-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Carousel container with consistent size */
.carousel-container {
  width: 80%;
  /* Percentage width for responsiveness */
  max-width: 1000px;
  /* Maximum width */
  margin: 0 auto;
}

.carousel-item img {
  height: 55vh;
  /* Proportional to viewport */
  min-height: 350px;
  /* Minimum height */
  max-height: 600px;
  /* Maximum height */
  object-fit: cover;
  width: 100%;
}

#guideLocationCarousel {
  margin-top: 20px;
  /* Reduce space below the heading */
  margin-bottom: 20px;
  /* Reduce space above the specification text */
}

.carousel .ratio-16x9 {
  max-height: 500px;
}

#guideLocationCarousel .carousel-control-prev,
#guideLocationCarousel .carousel-control-next {
  background-color: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

#guideLocationCarousel .carousel-control-prev-icon,
#guideLocationCarousel .carousel-control-next-icon {
  width: 24px;
  height: 24px;
}

/* Typography consistency */
.hero-section h5 {
  font-size: clamp(1rem, 2vw, 1.3rem);
  /* Responsive text size */
}

.hero-section h6 {
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  /* Responsive text size */
}
