.hotelsContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 40px 20px;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
  background-color: #f9f9f9;
  border-radius: 10px;
}

.hotelsContainer .left1 {
  flex: 1 1 500px; /* Takes remaining space, min 500px */
}

.hotelsContainer .left1 h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #333;
}

.hotelsContainer .left1 p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}

/* Image Section */
.hotelsContainer .thumb-main {
  flex: 1 1 300px; /* Minimum 300px */
  display: flex;
  justify-content: center;
  align-items: center;
}

.hotelsContainer .thumb-main img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  object-fit:cover;
}


/* Responsive Styles */
@media (max-width: 768px) {
  .hotelsContainer {
    flex-direction: column;
    padding: 20px 10px;
  }

  .hotelsContainer .left1 {
    text-align: center;
  }
.hotelsContainer .left1 h1 {
  font-size: 1.7rem;
}
.hotelsContainer .left1 p {
  font-size: .9rem;
  text-align:justify;
}
.hotelsContainer .left1 {
  flex: 1 1 auto; 
}
.hotelsContainer .thumb-main {
  width: 100%;
  display: block;
 margin:0;
}
.hotelsContainer .thumb-main img{
    height:300px;
}
}


/* ============ rooms style section =================== */


.rooms-section {
  padding: 60px 5%;
  background: #fff;
}
.rooms-section h2{
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
  text-align: center;
}
.rooms-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.room-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.room-card h3 {
  font-size: 22px;
  margin: 20px 0 15px;
  font-weight: 600;
   color: #333;
}

.room-card h3 span {
  font-weight: 400;
  font-size: 16px;
}

.room-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.room-card ul li {
  font-size: 15px;
  color: #333;
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
}

.room-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #000;
}

.book-btn {
  display: block;
  text-align: center;
  padding: 12px;
  border: 1.5px solid #3a9d23;
  color: #3a9d23;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.book-btn:hover {
  background: #3a9d23;
  color: #fff;
}

/* Responsive */
@media (max-width: 950px) {
  .rooms-container {
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
  }
}
@media(max-width:768px){
    .rooms-section {
  padding: 20px 5%;
}
    .rooms-section h2{
  font-size: 1.6rem;
}
}


/* Gallery section start */
.galleryContaner{
    padding:40px 5%;
}
.galleryContaner h2{
     font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}
 .gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 40px 20px;
    margin: auto;
  }

  .gallery img {
    width: 100%;
    height:200px;
    object-fit:cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s;
  }


  /* Modal / Lightbox */
  .modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
  }

  .modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
  }

  .modal-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }

  /* Close Button */
  .close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
  }

  /* Navigation Buttons */
  .prev, .next {
    position: absolute;
    top: 50%;
    color: white;
    font-size: 40px;
    font-weight: bold;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.5);
    user-select: none;
    transform: translateY(-50%);
  }

  .prev { left: 10px; }
  .next { right: 10px; }

  @media(max-width:768px){
      .galleryContaner{
          padding: 20px 5%;
      }
     .galleryContaner h2{
     font-size: 1.6rem;
     
} 
 .gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 0px 0px;
  }

    .prev, .next {
      font-size: 30px;
      padding: 8px;
    }
  }
