/* General Styles */
body {
  margin: 0;
  font-family: Inter;
}

a {
  text-decoration: none;
  color: inherit;
}

.bold {
  font-weight: bold;
}

/* Enquiry Heading */
.enquiry-heading {
  background-color: #183b67;
  width: 100%;
  height: 40px;
}

.enquiry-heading .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
  font-size: 12px;
  color: white;
}

/* Navbar */



/* Logo */
.logo img {
  width: 180px;
  height: auto;
  background-color: white;
  padding: 8px;
}

/* Navigation Links */
.nav-links ul {
  display: flex;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.nav-links hr {
  border: 0.5px solid #aaa;
  margin: 8px 0;
}

/* Icons Section */
.icons {
  display: flex;
  gap: 16px;
}

.icon {
  width: 24px;
  height: 24px;
  cursor: pointer;
  stroke: white;
  transition: stroke 0.3s ease, transform 0.2s ease;
}

.icon:hover {
  stroke: #e2e8f0;
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}

#active-indicator {
  transition: all 0.5s ease-in-out;
}

#carousel-description,
#carousel-images {
  transition: opacity 0.5s ease-in-out;
}

.opacity-0 {
  opacity: 0;
}

.hotel-carousel-container {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  overflow: hidden;
  width: 80%;
  height: 400px; /* Set container height */
  position: relative; /* For layout control */
  background: #f9f9f9;
}

.hotel-carousel-item {
  // flex-grow: 1; /* Allows items to grow and shrink */
  flex-basis: 0; /* Start with equal width for all items */
  height: 100%;
  //transition: flex-grow 1s ease, transform 1s ease; /* Smooth resizing */
  position: relative; /* For overlay or z-index */
  overflow: hidden;
}

.hotel-carousel-item:hover {
  /* flex-grow: 4; The hovered item expands
  z-index: 10; Bring the hovered item to the top */
}

.hotel-carousel-image {
  width: 100%; /* Ensure the image fills the div */
  height: 100%;
  object-fit: cover; /* Ensures the image scales properly */
//  transition: transform 0.5s ease; /* Add a smooth zoom effect */
}

.hotel-carousel-item:hover .hotel-carousel-image {
 // transform: scale(1.05); /* Slight zoom for hovered image */
}

.hotel-title {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: bold;
//  transition: font-size 0.5s ease, transform 0.5s ease;
 // transform-origin: left bottom;
}

.hotel-carousel-item:hover .hotel-title {
  transform: scale(1.1); /* Slightly increase size */
}

.tilted-card {
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.district {
  fill: #d1d5db;
  transition: fill 0.5s ease;
}

#map {
  height: 600px;
  width: 100%;
  background-color: white;
}
@media (max-width: 640px) {  /* Tailwind 'sm' breakpoint (Mobile) */
    section#slidercarousel { 
        height: 90vh; /* Adjust the height for mobile */
    }
}
