/* ============================================
   VROOM510 – Room Page Styles
   ============================================ */

/* ── BREADCRUMB ── */
.breadcrumb {
  font-size: 0.78rem; color: #aaa; margin-bottom: 1rem;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ── ROOM HERO ── */
.room-hero {
  padding-top: 64px; /* navbar height */
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  background: var(--dark);
}

.room-hero-gallery {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.room-hero-main {
  width: 100%; flex: 1; object-fit: cover;
  transition: opacity .3s; min-height: 0;
}
.room-hero-thumbs {
  display: flex; gap: 3px; height: 90px; flex-shrink: 0;
  background: #000;
}
.room-hero-thumbs img {
  flex: 1; object-fit: cover; cursor: pointer;
  opacity: 0.65; transition: opacity .2s;
}
.room-hero-thumbs img:hover,
.room-hero-thumbs img.active { opacity: 1; }

.room-hero-info {
  padding: 3.5rem 3.5rem 3rem;
  display: flex; flex-direction: column; justify-content: center;
  overflow-y: auto;
}

.room-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white); line-height: 1.05;
  margin-bottom: 1.2rem;
}
.room-hero-title span { color: var(--gold); }

.room-hero-desc {
  color: #bbb; line-height: 1.75; font-size: 1rem;
  margin-bottom: 2rem; max-width: 460px;
}

/* ── HIGHLIGHTS ── */
.room-highlights {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-bottom: 2rem;
}
.highlight {
  display: flex; align-items: flex-start; gap: 0.75rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius); padding: 1rem;
}
.h-icon { font-size: 1.4rem; flex-shrink: 0; }
.highlight div { display: flex; flex-direction: column; }
.highlight strong { color: var(--white); font-size: 0.85rem; margin-bottom: 2px; }
.highlight span { color: #999; font-size: 0.75rem; }

/* ── WHATSAPP CTA ── */
.whatsapp-book-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366; color: var(--white);
  padding: 15px 30px; border-radius: 40px;
  font-weight: 700; font-size: 0.95rem;
  text-decoration: none; transition: background .2s, transform .2s;
  align-self: flex-start;
}
.whatsapp-book-btn:hover { background: #1ebe5d; transform: translateY(-2px); }

/* ── DETAILS SECTION ── */
.room-details { background: var(--bg); }
.room-details-grid {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 3.5rem; align-items: start;
}

/* ── AMENITY GROUPS ── */
.amenity-groups {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; margin-top: 2rem;
}
.amenity-group {
  background: var(--white); border-radius: var(--radius);
  padding: 1.5rem; border: 1px solid #e8e4dc;
}
.amenity-group h3 {
  font-size: 0.9rem; font-weight: 600; color: var(--dark);
  margin-bottom: 1rem; padding-bottom: 0.6rem;
  border-bottom: 1px solid #e8e4dc;
}
.amenity-group ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.amenity-group li {
  font-size: 0.82rem; color: var(--text);
  padding-left: 1.1rem; position: relative;
}
.amenity-group li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--gold); font-weight: 700; font-size: 0.75rem;
}

/* ── SIDEBAR ── */
.room-sidebar { display: flex; flex-direction: column; gap: 1.2rem; }
.sidebar-card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.5rem; border: 1px solid #e8e4dc;
}
.sidebar-card h3 {
  font-size: 0.9rem; font-weight: 600; color: var(--dark);
  margin-bottom: 0.75rem;
}
.sidebar-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; margin-bottom: 0.75rem; }

.distances { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-top: 0.75rem; }
.distances li {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; padding-bottom: 0.5rem;
  border-bottom: 1px solid #f0ede6;
}
.distances li:last-child { border-bottom: none; }
.distances span { color: var(--muted); }
.distances strong { color: var(--dark); font-weight: 600; }

.highlight-card {
  background: var(--dark); border-color: transparent;
}
.highlight-card h3 { color: var(--white); }
.highlight-card p { color: #aaa; }
.highlight-card .whatsapp-book-btn { width: 100%; justify-content: center; }

.info-card { background: #fffbf0; border-color: rgba(201,168,76,0.3); }

/* ── OTHER ROOMS ── */
.other-rooms { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 0.5rem; }
.other-room-link {
  display: flex; align-items: center; gap: 1rem;
  text-decoration: none; border-radius: 8px;
  overflow: hidden; border: 1px solid #e8e4dc;
  transition: border-color .2s, box-shadow .2s;
}
.other-room-link:hover {
  border-color: var(--gold);
  box-shadow: 0 2px 12px rgba(201,168,76,0.15);
}
.other-room-link img {
  width: 80px; height: 55px; object-fit: cover; flex-shrink: 0;
}
.other-room-link span {
  font-size: 0.85rem; font-weight: 600; color: var(--dark); padding: 0 1rem;
}
.other-room-link:hover span { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .room-details-grid { grid-template-columns: 1fr; }
  .room-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
}
@media (max-width: 768px) {
  .room-hero { grid-template-columns: 1fr; min-height: auto; }
  .room-hero-gallery { height: 300px; }
  .room-hero-info { padding: 2rem 5%; }
  .room-highlights { grid-template-columns: 1fr; }
  .amenity-groups { grid-template-columns: 1fr; }
  .room-sidebar { grid-template-columns: 1fr; }
}
