
/* image slider */

.slider-container {
  height: auto;
  width: 100%;
}

.slider-container .carousel-item img {
  height: 90vh;
  width: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.carousel-caption {
  z-index: 10;
}

/* SECTION WRAPPER */
.hospitality-section {
  padding: 70px 0;
  background: #f8f9fb;
  font-family: "Poppins", Arial, sans-serif;
}

/* CONTAINER */
.hospitality-section .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* TEXT CONTENT */
.content-box {
  flex: 1;
}

.small-title {
  color: #c49b24;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.main-title {
  font-size: 36px;
  font-weight: 800;
  color: #1f1f1f;
  margin-bottom: 20px;
}

.content-box p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* IMAGE AREA */
.image-area {
  flex: 1;
  display: flex;
  justify-content: center;
}

.image-area .circles {
  position: relative;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.image-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --------- RESPONSIVE DESIGN --------- */

/* Tablets */
@media (max-width: 992px) {
  .hospitality-section .container {
    flex-direction: column;
    text-align: center;
  }

  .image-area .circles {
    width: 300px;
    height: 300px;
  }

  .main-title {
    font-size: 30px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .hospitality-section {
    padding: 50px 0;
  }

  .image-area .circles {
    width: 250px;
    height: 250px;
  }

  .main-title {
    font-size: 26px;
  }

  .content-box p {
    font-size: 14px;
  }
}

/* Room List Box */
.room-list-box {
  transition: transform 0.3s ease;
  border: 1px solid #eee;
}
.room-list-box:hover {
  transform: translateY(-5px);
}

.room-image-wrapper img {
  min-height: 250px;
  object-fit: cover;
}

/* Room Features Icons */
.hotel-featured li {
  width: 50%;
  font-size: 13px;
  margin-bottom: 8px;
  color: #555;
}
.hotel-featured li i {
  color: #a2781b;
  margin-right: 8px;
  width: 20px;
}

/* Buttons */
.view-detail-btn {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid #704214; /* Brown */
  color: #704214;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  transition: all 0.3s;
}
.view-detail-btn:hover {
  background: #704214;
  color: white;
}

.hotel-img{
  height: 40%;
}

.book-now-btn-solid {
  display: inline-block;
  padding: 9px 20px;
  background: #ddae49; /* Gold */
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  transition: all 0.3s;
  border: 1px solid #a2781b;
}
.book-now-btn-solid:hover {
  background: transparent;
  color: #a2781b;
}

/* Sidebar Helper Box */
.help-sidebar {
  background: #fdfaf4; /* Very light cream */
  border: 1px dashed #a2781b;
}
.help-sidebar h4 {
  color: #704214;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hotel-featured li {
    width: 100%;
  }
  .room-image-wrapper img {
    height: 200px;
    width: 100%;
  }
}
