/* ===== Rooms Page – Page Hero + Room Cards + Testimonials ===== */

.page-hero {
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--img-page-hero) center/cover no-repeat;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,35,50,0.8) 0%, rgba(15,22,35,0.75) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 40px 20px;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin: 0 0 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.breadcrumb {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
}
.breadcrumb a { color: rgba(255,255,255,0.95); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { margin: 0 6px; opacity: 0.8; }

.strip {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 16px 20px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.rooms-page { padding: 80px 0; background: var(--gray-light); }
.room-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.room-card {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  transition: all var(--transition);
  border: none;
  box-shadow: none;
}
.room-card:hover {
  transform: translateY(-5px);
  box-shadow: none;
}
.room-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 24px;
  border-radius: 0 40px 0 0;
}
.room-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
}
.room-card:hover .room-img { transform: scale(1.05); }
.room-img-1 { background-image: var(--img-room1); }
.room-img-2 { background-image: var(--img-room2); }
.room-img-3 { background-image: var(--img-room3); }
.room-price {
  position: absolute;
  bottom: 0px;
  left: 0px;
  background: var(--bg-creme);
  color: var(--navy-dark);
  padding: 12px 20px;
  font-weight: 500;
  font-size: 1rem;
  font-family: 'Playfair Display', serif;
}
.room-body { padding: 0; }
.room-body h3 {
  margin: 0 0 12px;
  font-size: 1.4rem;
  color: var(--navy-dark);
  font-family: 'Playfair Display', serif;
  font-weight: 400;
}
.room-stars { display: none; }
.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.room-features i { color: var(--orange); margin-right: 8px; font-size: 1rem; }
.room-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Testimonials on Rooms page */
.testimonials {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.testimonials-bg {
  position: absolute;
  inset: 0;
  background: var(--img-testimonials-bg) center/cover no-repeat;
  filter: blur(8px);
  opacity: 0.4;
}
.testimonials-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,35,50,0.85), rgba(15,22,35,0.9));
}
.testimonial-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  position: relative;
  transition: all var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.testimonial-text {
  margin: 0 0 24px;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
}
.testimonial-quote {
  position: absolute;
  bottom: 60px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: var(--orange);
  opacity: 0.2;
  border-radius: 4px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
}
.testimonial-author strong { display: block; color: var(--navy); }
.testimonial-author span { font-size: 0.85rem; color: var(--gray); }

@media (max-width: 1024px) {
  .room-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .page-hero { min-height: 35vh; }
  .room-cards { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .testimonial-cards { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .room-btns { flex-direction: column; }
  .room-btns .btn { width: 100%; justify-content: center; }
}
