.blogs-header {
  width: 100%;
  height: 80vh;
  background-image: url("/assest/side2.jpeg");
  background-size: cover;
  background-position: center;
  position: relative;
}

.blogs-overlay {
  width: 100%;
  height: 100%;
  background: rgba(7, 7, 7, 0.269);
}

.blogs-title {
  font-size: 60px;
  font-weight: 700;
  color: #fff;
}

.blogs-subtitle {
  font-size: 20px;
  margin-top: 10px;
  color: #fff;
}

.bottom-curve {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
}

section .border {
  border: 1.5px dashed #e6e6e6 !important;
}

/* 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;
}

.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;
}


.hotel-img{
   height: 40%;
 }

/* 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%;
  }
}