body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #fdf8ef;
  color: #333;
}
 .navbar {
      position: sticky;
      top: 0;
      z-index: 50;
      /* background: #c4c3c1;        */
      background: #b1b0ad      ;
      transition: background-color 0.3s ease, box-shadow 0.3s ease, box-shadow 0 2px 4px rgba(0, 0, 0, 0.1);
      padding: 1rem 2rem;
    }
   .navbar .logo-img {
    width: 20px;
    height: 50px;
  }
  /* .navbar .scrolled {
    background-color: #d78212;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  } */
    .logo span {
      font-size: 1.25rem;
      font-weight: 700;
      color: #1f2937;
      margin-left: 0.5rem;
    }
    .logo small {
      font-size: 0.75rem;
      color: #6b7280;
    }
    .nav-links {
      display: flex;
      transition: max-height 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
      gap: 1rem; /* Reduced gap between nav items */
    }
    .nav-links a {
      /* color: #374151; */
      color: #111;
      font-weight: 700;
      padding: 0.5rem;
      transition: color 0.3s ease;
    }
    .nav-links a:hover {
      color: #2563eb; /* Blue hover color for a professional look */
    }
    .btn-contact {
      background-color: #2563eb;
      color: white;
      padding: 0.5rem 1rem;
      border-radius: 0.375rem;
      font-weight: 600;
      transition: background-color 0.3s ease;
    }
    .btn-contact:hover {
      background-color: #1d4ed8;
    }
    .menu-icon {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: #374151;
    }
    @media (max-width: 768px) {
      .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      }
      .nav-links.active {
        display: flex;
      }
      .menu-icon {
        display: block;
      }
      .nav-actions {
        display: flex;
        align-items: center;
        gap: 1rem;
      }
    }


/* ---------------Room and Suite----------- */
.swiper {
  width: 100%;
  max-width: 1000px;
  margin: auto;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide-content {
  display: flex;
  width: 100%;
  background: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  height: 100%; 
}

.slide-image {
  width: 100%;
  height: 350px; /* increase this value for a taller image area */
  overflow: hidden;
  border-radius: 10px; /* optional for rounded corners */
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures image fills container without stretching */
  display: block;
}
/* 
.slide-image {
  flex: 0 0 40%;
}

.slide-image img {
  width: 100%;
 max-height: 245px;
  object-fit: cover;
} */

/* 🌿 Global list styling for consistency */
ul {
  list-style-type: disc;          /* standard bullet style */
  margin-left: 1.5rem;            /* consistent left indent */
  margin-bottom: 1rem;            /* spacing below lists */
  padding-left: 0;                /* remove extra indent */
}

ul li {
  color: #4b5563;                 /* Tailwind gray-600 equivalent */
  font-size: 1rem;                /* consistent readable text */
  line-height: 1.6;               /* better vertical spacing */
  margin-bottom: 0.5rem;          /* spacing between list items */
  font-family: "Poppins", sans-serif;
}

/* Optional – for sections using dark backgrounds */
section.bg-gray-900 ul li,
section.bg-black ul li {
  color: #e5e7eb; /* Tailwind gray-200 */
}

.slide-text {
  flex: 0 0 50%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.slide-text h4 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #111;
  font-weight: bold;
}

.slide-text ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.slide-text ul li {
  margin-bottom: 8px;
  font-size: 16px;
}

.room-actions a {
background-color: #1b86f8; /* Blue color */
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.room-actions a.btn-discover {
  background: #949393;
}










.highlight {
  color: #f7941d;
}
/* .about-section h2 {
  line-height: 1.2;
} */
/* .about-section img {
  max-height: 350px;
  object-fit: cover;
} */

.about-section {
  padding: 40px;
  display: flex;
  background: #fff;
  border-top: 2px solid #ddd;
}
.about-content {
  display: flex;
  gap: 40px;
}
.about-left {
  flex: 2;
}
.about-right {
  flex: 1;
  text-align: center;
}
.about-right img {
  width: 100%;
  max-width: 300px;
}
.map-note {
  margin-top: 10px;
  font-style: italic;
  color: #666;
}

.services-section {
  padding: 40px;
  background: #444;
  color: white;
  text-align: center;
}
.services-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
}
.services-section ul {
  list-style: none;
  padding: 0;
}
.services-section li {
  margin: 10px 0;
}

.rooms-section {
  padding: 40px;
  background: #fff;
}
.rooms-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rooms-grid {
  display: flex;
  gap: 40px;
  margin-top: 20px;
}
.room-image, .room-info {
  flex: 1;
}
.room-image img, .room-info img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}
.room-info h4 {
  margin-bottom: 10px;
}
.room-info ul {
  list-style-type: square;
  padding-left: 20px;
  margin-bottom: 15px;
}
.room-actions {
  display: flex;
  justify-content: center;  /* Centers buttons horizontally */
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}
/* .btn-book, .btn-discover {
  padding: 10px 20px;
  text-decoration: none;
  background-color: #f7941d;
  color: white;
  border-radius: 4px;
}
.btn-discover {
  background-color: transparent;
  color: #f7941d;
  border: 1px solid #f7941d;
} */
.btn-book,
.btn-discover {
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.btn-book {
  background-color: #2563eb;
  color: #fff;
}

.btn-book:hover {
 background-color: #0056b3; /* Darker blue on hover */
  transform: translateY(-2px);
}

.btn-discover {
  background-color: transparent;
  color: #2563eb;
  border: 1px solid #2563eb;
}

.btn-discover:hover {
  background-color: #2563eb;
  color: #3d8181;
}

footer {
  font-family: Arial, sans-serif;
}
footer h4 {
  font-size: 18px;
  font-weight: 600;
}
footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
footer a:hover {
  color: #facc15; /* Tailwind yellow-400 */
}
.rooms-section .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: stretch; /* makes all slides equal height */
  transition: transform 0.3s ease; 
}
.rooms-section .swiper-slide:hover {
  transform: translateY(-4px);
}

input, textarea {
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  border: 1px solid #ccc;
}
input:focus, textarea:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 1px #6366f1;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 1.2s ease-out forwards;
}

.delay-300 {
  animation-delay: 0.3s;
}
html {
  scroll-behavior: smooth;
}