/* =========================================================================
   Zimmer page styles
   ========================================================================= */

/* HERO */
.rooms-hero {
  height: 50vh;
  min-height: 350px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rooms-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1611892440504-42a792e24d32?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  scale: 1.1;
  transition: scale 8s ease;
  will-change: scale, translate;
}
.rooms-hero:hover .rooms-hero-bg { scale: 1; }
.rooms-hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-deep);
}
.rooms-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}
.rooms-hero-content h1 {
  font-size: clamp(32px, 5vw, 56px);
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.rooms-hero-content p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  opacity: 0.8;
  letter-spacing: 3px;
  margin-top: 10px;
}

/* AMENITIES */
.amenities {
  background: var(--black);
  color: var(--white);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.amenities::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1611892440504-42a792e24d32?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  opacity: 0.05;
  pointer-events: none;
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.amenity-item .icon {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
  margin-inline: auto;
}
.amenity-item h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 5px;
}
.amenity-item p {
  font-size: 13px;
  color: var(--text-muted);
}

/* INFO BANNER */
.info-banner {
  background: var(--gold);
  color: var(--black);
  padding: 30px 0;
  text-align: center;
}
.info-banner p {
  font-size: 15px;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.info-banner strong { font-weight: 700; }

/* ROOM DETAILS */
.room-detail-section {
  background: var(--offwhite);
  position: relative;
  overflow: hidden;
}
.room-detail-section::before {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,169,126,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.room-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.room-detail-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  transition: transform 0.6s var(--transition-smooth), box-shadow 0.6s;
}
.room-detail-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}
.room-detail-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.8s;
}
.room-detail-card:hover .room-detail-img { transform: scale(1.05); }
.room-detail-content { padding: 35px; }
.room-detail-content h3 {
  font-size: 24px;
  color: var(--black);
  margin-bottom: 8px;
}
.room-detail-content .price {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 15px;
  display: block;
  font-weight: 600;
}
.room-detail-content .price span {
  font-size: 14px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-weight: 400;
}
.room-detail-content p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.room-detail-features { margin-bottom: 25px; }
.room-detail-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 12px;
}
.room-detail-features li .icon {
  color: var(--gold);
  font-size: 14px;
  width: 20px;
}

/* BREAKFAST */
.breakfast {
  background: var(--white);
  padding: 80px 0;
}
.breakfast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.breakfast-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.breakfast-content h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--black);
  margin-bottom: 25px;
  line-height: 1.15;
}
.breakfast-content h2 em {
  font-style: italic;
  color: var(--gold-dark);
}
.breakfast-content p {
  color: var(--text-light);
  margin-bottom: 18px;
  line-height: 1.8;
  font-size: 15px;
}
.breakfast-hours {
  background: var(--offwhite);
  padding: 30px;
  border-radius: 4px;
  border-left: 3px solid var(--gold);
  margin-top: 25px;
}
.breakfast-hours h4 {
  font-size: 16px;
  color: var(--black);
  margin-bottom: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.breakfast-hours h4 .icon { color: var(--gold); }
.breakfast-hours p {
  margin: 0;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
}

/* WELCOME NOTE */
.welcome-note {
  background: var(--offwhite);
  padding: 80px 0;
  position: relative;
}
.welcome-note-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  padding: 60px 50px;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}
.welcome-note-inner .icon {
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 25px;
  display: block;
  margin-inline: auto;
}
.welcome-note-inner h3 {
  font-size: 28px;
  color: var(--black);
  margin-bottom: 20px;
}
.welcome-note-inner p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 15px;
}
.welcome-note-inner p:last-child {
  margin-top: 15px;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--gold-dark);
}

/* CTA bg */
.cta {
  --cta-bg: url('https://images.unsplash.com/photo-1582719478250-c89cae4dc85b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
}

@media (max-width: 1024px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .room-detail-grid,
  .breakfast-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .amenities-grid { grid-template-columns: 1fr; }
  .breakfast-img { height: 300px; }
}
