/* === Subtle Background Gradient for Hero & Room Section === */
.hero,
.section.rooms {
 background: var(--surface);
}


.hero {
  padding-top: 4rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #ffe0d0;
}


/* ===== Room Grid Layout ===== */
.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin: 2rem auto;
  max-width: 1200px;
   padding-bottom: 3rem;
}

/* ===== Room Card Styles ===== */
.room-card {
    background-color: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 1rem;
  text-align: center;
  transition: outline-offset 0.2s ease;
  will-change: transform;
  cursor: pointer;
}

.room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(255, 87, 34, 0.1);
}

.room-card img {
  width: 100%;
  max-height: 160px;
  object-fit: cover;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
 transition: transform 0.25s ease, box-shadow 0.25s ease;
 will-change: transform;

}
.room-card:hover img {
  transform: scale(1.02);
}

.room-card h2 {
  font-size: 1.3rem;
  color: #ff5722;
  margin: 0.2rem 0 0.4rem;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.room-card p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1rem;
}



/* ===== Rate Table Styles ===== */
.rate-table {
   background: var(--surface);
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  margin-top: 1.2rem;
  text-align: left;
  font-size: 0.88rem;
   color: var(--text);
  line-height: 1.4;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease;
  border: 1px solid var(--border);
}

/* Rate Rows */
.rate-table div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.3rem;
  padding: 0.1rem 0;
  align-items: center;
}

.rate-table div strong {
  white-space: nowrap;
}
.rate-table dd {
  color: var(--text); /* Or var(--primary-dark) for key tiers */
}

/* Hover enhancement */
.room-card:hover .rate-table {
  box-shadow: 0 4px 12px rgba(255, 87, 34, 0.08);
}

.hero {
  text-align: center;
  padding: 3rem 1rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  width: 80px;
  margin: 0 auto 1rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.hero .tagline {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 700px;
}




@media (max-width: 480px) {
  .room-card {
    padding: 1.2rem 0.8rem;
  }

  .rate-table {
    font-size: 0.95rem;
  }
    .hero h1 {
    font-size: 2rem;
  }
  .hero .tagline {
    font-size: 1rem;
  }
}

.room-card:focus-within {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
  transform: translateY(-2px);
  box-shadow: 0 3px 14px rgba(255, 87, 34, 0.12);
}

.occupancy-note,
.electricity-note {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: -0.2rem;
  line-height: 1.4;
}

.notice-box {
  background: #fff8f2;
  border: 1px solid var(--border);
  border-left: 6px solid var(--primary);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  margin: 2rem auto 3rem;
  max-width: 750px;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
  box-shadow: var(--shadow-main);
}

.notice-box strong {
  color: var(--primary-dark);
}

.notice-box ul {
  padding-left: 1.2rem;
  margin: 1rem 0;
}

.notice-box li::before {
  content: "• ";
  color: var(--accent);
  font-weight: bold;
}

.notice-box h3.notice-heading {
  margin-top: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.6rem;
}

.rate-table dt,
.rate-table dd {
  margin: 0;
}

.rate-table dt.rate-label {
  font-weight: 500;
  color: var(--muted);
}
.rate-table dd.rate-price {
  text-align: right;
  font-weight: 600;
}

.notice-box:focus-within {
  outline: 2px dashed var(--primary);
  outline-offset: 6px;
}

.card-notes p {
  margin: 0.2rem 0 0.4rem;
  line-height: 1.4;
}

.notice-wrapper {
  width: 100%;
  padding: 2.5rem 1rem;
  margin: 0;
}
.notice-wrapper.section {
  background: none !important;
  margin: 0 !important;
  padding: 2.5rem 1rem;
}

footer.site-footer {
  margin-top: 0;
}


.section.rooms {
  background: linear-gradient(to bottom, #ffffff 0%, #fff8f2 100%) !important;
}

body.rooms-page {
  background-color: #fff8f2;
}
/* === Override Hero Background Only for Rooms Page === */
body.rooms-page .hero {
  background: linear-gradient(to bottom, #ffffff 0%, #fff8f2 100%) !important;
}
