/* ==========================================================================
   Shuvatara — Modern Accommodation / Room Cards
   Scoped under `sh-room` so it never collides with the legacy theme CSS.
   Renders as a static, editorial-style grid (no carousel): full-bleed image
   with a gradient title overlay, floating price pill, and a Book Now CTA.
   ========================================================================== */

/* `.attraction-area` is shared with #nearby — scope the background to this
   section's own id so the two sections can alternate independently. */
#accommodation {
  background: #fff;
}

.sh-rooms__head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.sh-rooms__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sh-gold, #d4af6a);
  margin-bottom: 14px;
}

.sh-rooms__eyebrow::before,
.sh-rooms__eyebrow::after {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--sh-gold, #d4af6a);
}

.sh-rooms__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.25;
  color: var(--sh-navy, #0b1420);
  margin-bottom: 14px;
}

.sh-rooms__lead {
  font-family: 'Lato', sans-serif;
  font-size: 15.5px;
  line-height: 1.85;
  color: #5c6470;
  margin: 0;
}

.sh-rooms__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
}

.sh-room {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 50px -30px rgba(11, 20, 32, .3);
  transition: transform .35s ease, box-shadow .35s ease;
  height: 100%;
}

.sh-room:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 64px -26px rgba(11, 20, 32, .42);
}

.sh-room__media {
  position: relative;
  height: 280px;
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
}

.sh-room:hover .sh-room__media {
  transform: scale(1.06);
}

.sh-room__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 20, 32, 0) 40%, rgba(11, 20, 32, .85) 100%);
}

.sh-room__price {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  background: linear-gradient(135deg, var(--sh-gold-light, #f1dfb5), var(--sh-gold, #d4af6a));
  color: #241a05;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(212, 175, 106, .4);
}

.sh-room__price sub {
  font-size: 10px;
  font-weight: 600;
  opacity: .8;
}

.sh-room__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 20px 22px;
}

.sh-room__title {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  color: #fff;
  margin: 0;
}

.sh-room__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 22px 24px;
}

.sh-room__desc {
  font-family: 'Lato', sans-serif;
  font-size: 13.5px;
  line-height: 1.7;
  color: #7c8492;
  margin-bottom: 16px;
}

.sh-room__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.sh-room__amenity {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fbf9f5;
  border: 1px solid rgba(11, 20, 32, .06);
  transition: background .25s ease, transform .25s ease;
}

.sh-room__amenity:hover {
  background: rgba(212, 175, 106, .16);
  transform: translateY(-2px);
}

.sh-room__amenity img { width: 16px; height: 16px; object-fit: contain; }

.sh-room__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(11, 20, 32, .07);
}

.sh-room__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Lato', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: #5c6470;
}

.sh-room__meta span { display: inline-flex; align-items: center; gap: 5px; }
.sh-room__meta i { color: var(--sh-gold, #d4af6a); font-size: 14px; }

.sh-room__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--sh-navy, #0b1420);
  text-decoration: none;
  white-space: nowrap;
  transition: color .25s ease;
}

.sh-room__cta i {
  font-size: 12px;
  transition: transform .25s ease;
}

.sh-room__cta:hover {
  color: var(--sh-gold, #d4af6a);
}

.sh-room__cta:hover i {
  transform: translateX(4px);
}

@media (max-width: 991px) {
  .sh-rooms__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 575px) {
  .sh-rooms__grid { grid-template-columns: 1fr; gap: 22px; }
  .sh-room__media { height: 230px; }
}
