/* Room Cards */
.rooms-section {
  position: relative;
  padding: 80px 0 60px;
  background: var(--color-two, rgb(14,13,11));
}

.room-block {
  position: relative;
  margin-bottom: 40px;
}

.room-block .inner-box {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: rgb(26,27,28);
  border: 1px solid rgba(228,197,144,0.15);
  box-shadow: 0 4px 30px rgba(0,0,0,0.40);
  transition: all 300ms ease;
}

.room-block .inner-box:hover {
  border-color: rgba(228,197,144,0.55);
  box-shadow: 0 8px 40px rgba(0,0,0,0.60);
  transform: translateY(-4px);
}

.room-block .image-box {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.room-block .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.room-block .inner-box:hover .image-box img {
  transform: scale(1.06);
}

/* Gold top-edge accent line */
.room-block .image-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--main-color, rgb(228,197,144));
}

.room-block .content-box {
  padding: 28px 30px 30px;
}

.room-block .content-box h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #fff;
}

.room-block .content-box h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 300ms ease;
}

.room-block .content-box h3 a:hover {
  color: var(--main-color, rgb(228,197,144));
}

.room-block .content-box .desc {
  color: rgba(255,255,255,0.60);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.room-block .amenities {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
}

.room-block .amenities li {
  font-size: 13px;
  color: rgba(255,255,255,0.60);
  display: flex;
  align-items: center;
  gap: 6px;
}

.room-block .amenities li .fa {
  color: var(--main-color, rgb(228,197,144));
  font-size: 13px;
}

.room-block .divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 22px;
}

.room-block .book-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--main-color, rgb(228,197,144));
  text-decoration: none;
  border-bottom: 1px solid rgba(228,197,144,0.5);
  padding-bottom: 2px;
  transition: all 300ms ease;
}

.room-block .book-link:hover {
  color: #fff;
  border-color: #fff;
}

/* Amenities strip */
.amenities-strip {
  position: relative;
  padding: 60px 0;
  background: var(--color-two, rgb(14,13,11));
}

.amenities-strip .title-box h2,
.amenities-strip .title-box h3 {
  color: #fff;
}

.amenity-item {
  text-align: center;
  padding: 10px 0;
}

.amenity-item .icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--main-color, rgb(228,197,144));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: background 300ms ease;
}

.amenity-item:hover .icon-wrap {
  background: var(--main-color, rgb(228,197,144));
}

.amenity-item .icon-wrap .fa {
  font-size: 24px;
  color: var(--main-color, rgb(228,197,144));
  transition: color 300ms ease;
}

.amenity-item:hover .icon-wrap .fa {
  color: var(--color-two, rgb(14,13,11));
}

.amenity-item h5 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-one, rgb(167,167,167));
  margin-bottom: 0;
}

/* Quote / CTA strip */
.rooms-cta {
  position: relative;
  padding: 100px 0;
  text-align: center;
  color: #fff;
}

.rooms-cta .image-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
}

.rooms-cta .auto-container {
  position: relative;
  z-index: 2;
}

.rooms-cta h2 {
  color: #fff;
  font-size: 40px;
  margin-bottom: 16px;
}

.rooms-cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
}

/* Rating badge */
.room-block .rating-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.room-block .rating-score {
  background: var(--main-color, rgb(228,197,144));
  color: var(--color-two, rgb(14,13,11));
  font-size: 12px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 2px;
  letter-spacing: 0.5px;
}
.room-block .rating-label {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.3;
}

/* Rooms testimonials */
.rooms-reviews {
  position: relative;
  padding: 80px 0;
  background: #fff;
}

/* Room detail page */
.room-detail-gallery {
  position: relative;
  padding: 40px 0 0;
}
.room-detail-gallery .main-image {
  position: relative;
  height: 480px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}
.room-detail-gallery .main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.room-detail-gallery .thumb-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.room-detail-gallery .thumb-row .thumb {
  position: relative;
  width: 120px;
  height: 90px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
}
.room-detail-gallery .thumb-row .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.room-detail-gallery .thumb-row .thumb.active {
  border-color: var(--main-color, rgb(228,197,144));
}
.room-detail-info h1 {
  font-size: 44px;
  color: #fff;
  margin-bottom: 14px;
}
.room-detail-info .price-line {
  font-size: 20px;
  color: var(--main-color, rgb(228,197,144));
  margin-bottom: 20px;
}
.room-detail-info .quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  margin: 26px 0;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.room-detail-info .quick-facts .fact {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
}
.room-detail-info .quick-facts .fact .fa {
  color: var(--main-color, rgb(228,197,144));
  font-size: 18px;
}

@media (max-width: 767px) {
  .room-block .image-box { height: 220px; }
  .rooms-cta h2 { font-size: 28px; }
  .room-detail-gallery .main-image { height: 280px; }
  .room-detail-info h1 { font-size: 30px; }
}
