/* ============================================
   ROOM DETAIL PAGE — room-detail.css
   ============================================ */

/* Hero Banner */
.rd-hero {
  height: 70vh;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 2rem 3rem;
}

.rd-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 8, 6, 0.15) 0%,
    rgba(10, 8, 6, 0.55) 100%
  );
}

.rd-hero-badge {
  position: relative;
  z-index: 2;
}

.rd-hero-badge a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  text-decoration: none;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}

.rd-hero-badge a:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* Main Layout */
.rd-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.2rem 4rem;
}

/* Title Block */
.rd-title-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding: 2.5rem 0 2rem;
  border-bottom: 1px solid #e8ddd0;
}

.rd-title-inner {
  flex: 1;
}

.rd-tagline {
  color: #b89a61;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.rd-name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-style: italic;
  color: #11192a;
  margin: 0 0 1.2rem;
  line-height: 1.1;
}

.rd-meta-strip {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.rd-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.92rem;
  color: #4a4a4a;
  font-weight: 500;
}

.rd-meta-item svg {
  color: #b89a61;
  flex-shrink: 0;
}

.rd-price {
  color: #2d2322;
  font-weight: 700;
  font-size: 1.05rem;
}

.rd-meta-divider {
  width: 1px;
  height: 18px;
  background: #d3c4af;
}

.rd-book-wrap {
  flex-shrink: 0;
  padding-top: 0.5rem;
}

.rd-book-btn {
  display: inline-block;
  background: linear-gradient(135deg, #d2a737, #b88d21);
  color: #111 !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  border: none;
  letter-spacing: 0.04em;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(210, 167, 55, 0.35);
}

.rd-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(210, 167, 55, 0.45);
}

/* Body Grid */
.rd-body-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  padding: 3rem 0;
  border-bottom: 1px solid #e8ddd0;
}

.rd-section-heading {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: #11192a;
  margin: 0 0 1.2rem;
  font-style: italic;
}

.rd-section-heading.center {
  text-align: center;
}

.rd-description {
  color: #3f3f3f;
  line-height: 1.85;
  font-size: 1.02rem;
  margin: 0 0 2rem;
}

/* Highlights */
.rd-highlights {
  display: grid;
  gap: 1.2rem;
}

.rd-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #faf7f2;
  border: 1px solid #ede4d6;
  border-left: 4px solid #d2a737;
  padding: 1rem 1.1rem;
  border-radius: 6px;
}

.rd-highlight-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1;
}

.rd-highlight-item strong {
  display: block;
  font-size: 0.95rem;
  color: #1a1a1a;
  margin-bottom: 0.2rem;
}

.rd-highlight-item p {
  margin: 0;
  font-size: 0.88rem;
  color: #5a5a5a;
  line-height: 1.5;
}

/* Amenities */
.rd-amenities-col {
  background: #f9f5ef;
  border: 1px solid #e8ddd0;
  border-radius: 12px;
  padding: 1.8rem;
  align-self: start;
  position: sticky;
  top: 1.5rem;
}

.rd-amenities-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.rd-amenity-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.93rem;
  color: #2d2322;
  padding: 0.5rem 0;
  border-bottom: 1px solid #ede4d6;
}

.rd-amenity-item:last-child {
  border-bottom: none;
}

.rd-amenity-check {
  width: 22px;
  height: 22px;
  background: #d2a737;
  color: #111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* Gallery Section */
.rd-gallery-section {
  padding: 3rem 0;
  border-bottom: 1px solid #e8ddd0;
}

.rd-gallery-sub {
  text-align: center;
  color: #666;
  margin: -0.6rem 0 1.8rem;
  font-size: 0.95rem;
}

.rd-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  min-height: 260px;
}

.rd-gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  transition: transform 0.4s ease;
}

.rd-gallery-grid img:hover {
  transform: scale(1.03);
}

/* Other Rooms */
.rd-other-rooms {
  padding: 3rem 0;
  border-bottom: 1px solid #e8ddd0;
}

.rd-other-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.rd-other-card {
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e8ddd0;
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: block;
}

.rd-other-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(34, 28, 21, 0.12);
}

.rd-other-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.rd-other-info {
  padding: 1rem 1.1rem;
}

.rd-other-info h4 {
  margin: 0 0 0.3rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.1rem;
  color: #11192a;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.rd-other-info p {
  margin: 0;
  color: #b89a61;
  font-weight: 600;
  font-size: 0.9rem;
}

/* CTA Section */
.rd-cta-section {
  margin-top: 3rem;
  background: linear-gradient(135deg, #2d2322 0%, #1a1210 100%);
  border-radius: 16px;
  padding: 3.5rem 2rem;
  text-align: center;
}

.rd-cta-inner h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  font-style: italic;
  margin: 0 0 0.8rem;
}

.rd-cta-inner p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  margin: 0 0 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive */
@media (max-width: 900px) {
  .rd-title-block {
    flex-direction: column;
    gap: 1.2rem;
  }

  .rd-body-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .rd-amenities-col {
    position: static;
  }

  .rd-hero {
    height: 50vh;
    padding: 1.5rem;
  }

  .rd-other-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .rd-other-grid {
    grid-template-columns: 1fr;
  }

  .rd-gallery-grid {
    grid-template-columns: 1fr;
  }
}
