/* Rooms page — premium styling aligned with home-new */

.page-rooms {
  --rm-surface: #0a0a0a;
  --rm-surface-alt: #080808;
  --rm-surface-deep: #050505;
  --rm-surface-rich: #030303;
  --rm-surface-card: #161616;
  --rm-silver: #c0c0c0;
  --rm-text-dark: #0a0a0a;

  background-color: var(--rm-surface);
  color: #fff;
  overflow-x: hidden;
}

.page-rooms * {
  box-sizing: border-box;
}

/* ── Layout tokens ── */
.rm-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.rm-section {
  padding: 5.5rem 0;
  position: relative;
  border-top: 1px solid rgba(192, 192, 192, 0.06);
}

.rm-section-heading {
  margin-bottom: 3rem;
}

.rm-section-label {
  font-family: "Lato", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rm-silver);
  margin-bottom: 0.75rem;
}

.rm-section-title {
  font-family: "Jost-Bold", sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: var(--rm-silver);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.rm-divider {
  width: 80px;
  height: 1px;
  background: var(--rm-silver);
  margin: 1.5rem auto;
}

.rm-divider-left {
  margin-left: 0;
}

/* ── Buttons ── */
.rm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 2rem;
  font-family: condensedhand-webfont, sans-serif;
  font-size: 1.05rem;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: all 0.35s ease;
  border: 1px solid transparent;
}

.rm-btn-primary {
  background: var(--rm-silver);
  color: var(--rm-text-dark);
  border-color: var(--rm-silver);
}

.rm-btn-primary:hover {
  background: transparent;
  color: var(--rm-silver);
}

.rm-btn-outline {
  background: transparent;
  color: var(--rm-silver);
  border-color: var(--rm-silver);
}

.rm-btn-outline:hover {
  background: var(--rm-silver);
  color: var(--rm-text-dark);
}

.rm-btn-block {
  width: 100%;
}

.rm-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ── Hero ── */
.rm-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.rm-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 8s ease;
}

.rm-hero:hover .rm-hero-bg {
  transform: scale(1.06);
}

.rm-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(47, 47, 47, 0.35) 45%,
    rgba(0, 0, 0, 0.82) 100%
  );
}

.rm-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 7rem 1.5rem 4rem;
  max-width: 820px;
}

.rm-eyebrow {
  font-family: "Lato", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--rm-silver);
  margin-bottom: 1.25rem;
}

.rm-hero-title {
  font-family: "Jost-Bold", sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--rm-silver);
  line-height: 1.1;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.rm-hero-title.rusticjackRough {
  font-family: "Jost-Bold", sans-serif !important;
}

.rm-hero-sub {
  font-family: "Lato", sans-serif;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #fff;
  max-width: 620px;
  margin: 0 auto 2.25rem;
  line-height: 1.75;
}

/* ── Intro ── */
.rm-intro {
  background: var(--rm-surface);
  border-top: none;
}

.rm-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}

.rm-intro-lead {
  font-family: "Lato", sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #ececec;
  margin-top: 1rem;
  max-width: 520px;
}

.rm-intro-meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rm-meta-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: var(--rm-surface-card);
  border: 1px solid rgba(192, 192, 192, 0.12);
  transition: border-color 0.35s ease, transform 0.35s ease;
}

.rm-meta-card:hover {
  border-color: var(--rm-silver);
  transform: translateX(4px);
}

.rm-meta-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(192, 192, 192, 0.12);
  border: 1px solid rgba(192, 192, 192, 0.25);
  color: var(--rm-silver);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.rm-meta-card h4 {
  font-family: "Jost-Bold", sans-serif;
  color: var(--rm-silver);
  font-size: 1rem !important;
  margin: 0 0 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.rm-meta-card p {
  font-family: "Lato", sans-serif;
  margin: 0;
  font-size: 0.92rem;
  color: #fff;
}

/* ── Highlights ── */
.rm-highlights {
  background: var(--rm-surface-alt);
}

.rm-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.rm-highlight-card {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--rm-surface-card);
  border: 1px solid rgba(192, 192, 192, 0.12);
  transition: border-color 0.4s, transform 0.4s, background 0.4s;
}

.rm-highlight-card:hover {
  border-color: var(--rm-silver);
  background: var(--rm-surface-deep);
  transform: translateY(-6px);
}

.rm-highlight-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(192, 192, 192, 0.3);
  background: rgba(192, 192, 192, 0.08);
  color: var(--rm-silver);
  font-size: 1.5rem;
  transition: background 0.35s ease, color 0.35s ease;
}

.rm-highlight-card:hover .rm-highlight-icon {
  background: var(--rm-silver);
  color: var(--rm-text-dark);
}

.rm-highlight-card h4 {
  font-family: "Jost-Bold", sans-serif;
  color: var(--rm-silver);
  font-size: 1.25rem !important;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

.rm-highlight-card p {
  font-family: "Lato", sans-serif;
  font-size: 0.92rem;
  color: #fff;
  line-height: 1.65;
  margin: 0;
}

/* ── Showcase ── */
.rm-showcase {
  background: var(--rm-surface-deep);
}

.rm-showcase-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: stretch;
}

.rm-gallery-panel,
.rm-details-panel {
  background: var(--rm-surface-card);
  border: 1px solid rgba(192, 192, 192, 0.12);
  padding: 1.25rem;
}

.rm-carousel {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: #111;
}

.rm-carousel .carousel-item {
  position: relative;
}

.rm-carousel-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  cursor: zoom-in;
  border-radius: 0 !important;
}

.rm-zoom-hint {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(192, 192, 192, 0.5);
  background: rgba(0, 0, 0, 0.55);
  color: var(--rm-silver);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.rm-zoom-hint:hover {
  background: var(--rm-silver);
  color: var(--rm-text-dark);
}

.rm-carousel-control {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(192, 192, 192, 0.35);
  color: var(--rm-silver);
}

.rm-carousel .carousel-control-prev,
.rm-carousel .carousel-control-next {
  width: auto;
  opacity: 1;
}

.rm-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.85rem;
}

.rm-thumb {
  border: 2px solid transparent;
  padding: 0;
  background: none;
  width: 76px;
  height: 76px;
  overflow: hidden;
  opacity: 0.6;
  transition: opacity 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}

.rm-thumb.is-active,
.rm-thumb:hover {
  opacity: 1;
  border-color: var(--rm-silver);
}

.rm-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rm-gallery-placeholder {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--rm-silver);
  background: rgba(255, 255, 255, 0.04);
}

.rm-gallery-placeholder i {
  font-size: 2rem;
  opacity: 0.7;
}

.rm-details-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  margin-bottom: 1rem;
  background: rgba(192, 192, 192, 0.12);
  border: 1px solid rgba(192, 192, 192, 0.28);
  color: var(--rm-silver);
  font-family: condensedhand-webfont, sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.rm-details-copy {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: #ececec;
  margin-bottom: 1.5rem;
}

.rm-details-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.rm-details-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: "Lato", sans-serif;
  font-size: 0.95rem;
  color: #fff;
  margin: 0;
  padding: 0;
}

.rm-details-list li i {
  width: 20px;
  color: var(--rm-silver);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

/* ── Facilities ── */
.rm-facilities {
  background: var(--rm-surface);
}

.rm-facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.rm-facility-card {
  padding: 1.35rem;
  background: var(--rm-surface-card);
  border: 1px solid rgba(192, 192, 192, 0.12);
  transition: border-color 0.35s ease;
}

.rm-facility-card:hover {
  border-color: rgba(192, 192, 192, 0.35);
}

.rm-facility-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(192, 192, 192, 0.15);
}

.rm-facility-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(192, 192, 192, 0.1);
  border: 1px solid rgba(192, 192, 192, 0.22);
  color: var(--rm-silver);
  font-size: 1rem;
}

.rm-facility-head h3 {
  font-family: "Jost-Bold", sans-serif;
  font-size: 1.05rem !important;
  color: var(--rm-silver);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.rm-facility-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.rm-facility-card li {
  font-family: "Lato", sans-serif;
  font-size: 0.88rem;
  color: #ececec;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}

.rm-facility-card li i {
  font-size: 0.65rem;
  color: var(--rm-silver);
}

.rm-policies {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.rm-policy-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.35rem;
  background: var(--rm-surface-deep);
  border: 1px solid rgba(192, 192, 192, 0.12);
}

.rm-policy-card > i {
  font-size: 1.35rem;
  color: var(--rm-silver);
  margin-top: 0.15rem;
}

.rm-policy-card h4 {
  font-family: "Jost-Bold", sans-serif;
  color: var(--rm-silver);
  font-size: 1rem !important;
  margin: 0 0 0.35rem;
  text-transform: uppercase;
}

.rm-policy-card p {
  font-family: "Lato", sans-serif;
  margin: 0;
  font-size: 0.9rem;
  color: #fff;
  line-height: 1.6;
}

/* ── CTA ── */
.rm-cta {
  background:
    linear-gradient(rgba(5, 5, 5, 0.92), rgba(10, 10, 10, 0.95)),
    url('../../new_image/492753928.jpg') center/cover no-repeat;
  text-align: center;
  padding: 6.5rem 1.5rem;
  border-top: none;
}

.rm-cta h2 {
  font-family: "Jost-Bold", sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: var(--rm-silver);
  margin-bottom: 1rem;
}

.rm-cta p {
  font-family: "Lato", sans-serif;
  color: #fff;
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.75;
}

/* ── Fullscreen modal ── */
.rm-fullscreen-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.94);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.rm-fullscreen-modal.is-open {
  display: flex;
}

.rm-fullscreen-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(192, 192, 192, 0.35);
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.rm-fullscreen-close:hover {
  background: var(--rm-silver);
  color: var(--rm-text-dark);
}

.rm-fullscreen-modal img {
  max-width: min(92vw, 1100px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
}

/* ── Animations ── */
.rm-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.rm-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.rm-text-slide {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
  transition-delay: var(--rm-delay, 0s);
}

.rm-text-slide.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.rm-text-slide[data-rm-delay="0.1"] { --rm-delay: 0.1s; }
.rm-text-slide[data-rm-delay="0.2"] { --rm-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
  .rm-reveal,
  .rm-text-slide {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Hide duplicate hotel hours in global footer on rooms page */
body:has(.page-rooms) .section8-booking .location_booking .row > .container:first-child,
body:has(.page-rooms) .section8-booking .dev22 .container:first-child {
  display: none;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .rm-intro-grid,
  .rm-showcase-grid,
  .rm-highlights-grid,
  .rm-facilities-grid,
  .rm-policies {
    grid-template-columns: 1fr;
  }

  .rm-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rm-facilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rm-carousel-image {
    height: 320px;
  }
}

@media (max-width: 575px) {
  .rm-section {
    padding: 4rem 0;
  }

  .rm-hero {
    min-height: 62vh;
  }

  .rm-hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .rm-btn {
    width: 100%;
    max-width: 300px;
  }

  .rm-highlights-grid,
  .rm-facilities-grid {
    grid-template-columns: 1fr;
  }

  .rm-thumb {
    width: 62px;
    height: 62px;
  }

  .rm-carousel-image {
    height: 260px;
  }
}
