/* ===========================
   GLOBAL VARIABLES
=========================== */

:root {
  --accent: #f0b37a;
  --bg-card: #fdf7ef;
  --bg-page: #f5eee4;
  --border-soft: #eadfd0;
  --text-main: #222222;
  --text-muted: #666666;
}

/* ===========================
   BASE ELEMENTS
=========================== */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  background: var(--bg-page);
  color: var(--text-main);
  display: flex;
  font-family: system-ui, sans-serif;
  justify-content: center;
  margin: 0;
  padding: 2.5rem 1rem;
}

h1, h2, h3, h4, h5 {
  margin: 0;
}

/* ===========================
   LAYOUT SHELL
=========================== */

.shell {
  background: var(--bg-card);
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  max-width: 1100px;
  overflow: hvisible;
  width: 100%;
}

/* ===========================
   HEADER
=========================== */

.brand {
  font-weight: 500;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  color: var(--text-main);
  font-size: 0.9rem;
  text-decoration: none;
  padding: 0.35rem 0;
}

.nav a:hover {
  text-decoration: underline;
}

.top-bar{
  position: sticky;
  top: 0;
  z-index: 1000;

  /* make sure it doesn't become transparent over content */
  background: #fff;

  /* optional: a subtle separation line/shadow */
  border-bottom: 1px solid rgba(0,0,0,0.08);

  align-items: center;
  display: flex;
  justify-content: space-between;

  padding: 1.6rem 2.25rem;   /* ↑ vertical padding */
}

/* ===========================
   HERO
=========================== */

.hero {
  height: 360px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.hero img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-text {
  align-items: center;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05), rgba(0,0,0,0.4));
  color: #ffffff;
  display: flex;
  inset: 0;
  justify-content: center;
  position: absolute;
  text-align: center;
}

.hero-text h1 {
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
  font-weight: 500;
}

/* ===========================
   MAIN CONTENT
=========================== */

.content {
  padding: 2.5rem 2.5rem 2.25rem;
}

/* ===========================
   HOTEL OVERVIEW
=========================== */

.hotel-header {
  align-items: start;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
}

.hotel-title {
  font-size: 1.8rem;
  margin-bottom: 0.35rem;
}

.location {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

.section-heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.stars {
  margin-bottom: 1.5rem;
}

/* ===========================
   TEXT
=========================== */

.body-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===========================
   INSIGHTS SYSTEM
=========================== */

.insights-heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.insights-section {
  margin-top: 0;
  padding-top: 0;
}
.insight-card {
  background: #f7f0e4;
  border: 1px solid rgba(234,223,208,0.9);
  border-radius: 16px;
  display: grid;
  gap: 1.4rem;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
  margin-bottom: 1.6rem;
  padding: 1.6rem;
}

.insight-card1 {
  background: #f7f0e4;
  border: 1px solid rgba(234,223,208,0.9);
  border-radius: 16px;
  display: block;
  margin-bottom: 1.6rem;
  padding: 1.6rem;
}


.insight-left,
.insight-right {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.insight-title {
  font-size: 1rem;
  font-weight: 600;
}

.insight-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.insight-text a,
.insight-text a:link,
.insight-text a:visited,
.insight-bullets a,
.insight-bullets a:link,
.insight-bullets a:visited {
  color: #7a3f2a !important;
  font-weight: 600;
  text-decoration: underline;
}

.insight-text a:hover,
.insight-bullets a:hover {
  color: #5f2f20 !important;
}

.insight-left .insight-text {
  line-height: 1.55;
  margin-bottom: 4px;
  margin-top: 4px;
}

.insight-subtitle {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  margin-top: 10px;
}

.insight-bullets {
  color: #333;
  font-size: 0.9rem;
  line-height: 1.6;
  list-style-type: disc;
  margin: 4px 0 4px 20px;
  padding: 0;
}

.insight-bullets a,
.insight-bullets a:visited {
  color: #7a3f2a;
  font-weight: 600;
  text-decoration: underline;
}

.insight-bullets a:hover {
  color: #5f2f20;
}

.insight-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: start;
}

@media (max-width: 900px) {
  .insight-split {
    grid-template-columns: 1fr;
  }
}


/* ===========================
   MEDIA & GALLERY
=========================== */

.insight-gallery {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.insight-gallery img,
.insight-gallery .placeholder {
  align-items: center;
  aspect-ratio: 4 / 3;
  background: #e6d8c6;
  border: 1px dashed #d0c0aa;
  border-radius: 10px;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  font-size: 0.78rem;
  justify-content: center;
  object-fit: cover;
  width: 100%;
}

.insight-image-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.insight-image-title {
  color: var(--text-main);
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 6px;
  text-align: center;
}

/* ===========================
   MEDIA CARD / VIDEO
=========================== */

.media-card {
  background: #f6efe5;
  border-radius: 14px;
  padding: 1rem;
}

.media-thumb {
  border-radius: 12px;
  overflow: hidden;
}

.media-thumb iframe {
  border: none;
  height: 100%;
  min-height: 220px;
  width: 100%;
}

.media-card.video-narrow {
  max-width: 720px;
  margin: 10px auto 18px;
  padding: 8px;
}

.media-card.video-narrow .media-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}

.media-card.video-narrow .media-thumb iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

@media (max-width: 600px) {
  .media-card.video-narrow {
    max-width: 100%;
    padding: 8px;
  }

  .media-card.video-narrow .media-thumb {
    aspect-ratio:4/ 3;
  }
}



/* ===========================
   DOWNLOAD BUTTONS
=========================== */

.insight-download {
  align-items: center;
  background: #f1e4cf;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  color: var(--text-main);
  display: inline-flex;
  font-size: 0.88rem;
  gap: 0.35rem;
  padding: 0.55rem 1rem;
  text-decoration: none;
  width: fit-content;
}

.insight-download span.icon {
  font-size: 1rem;
}

/* ===========================
   ROOMS
=========================== */



.rooms-header {
  margin-bottom: 1.1rem;
  margin-top: 2.4rem;
}

.rooms-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 2rem;
}

.room-card {
  background: #f6efe5;
  border-radius: 14px;
  cursor: pointer;
  padding: 0.8rem;
}

.room-name {
  font-size: 0.9rem;
  margin-top: 0.4rem;
  text-align: center;
}

.room-thumb img {
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  object-fit: cover;
  width: 100%;
}

/* Make the whole room card clickable (when wrapped with <a>) */
.room-link{
  color: inherit;
  text-decoration: none;
  display: block;
}

/* Optional hover polish */
.room-card:hover{
  transform: translateY(-2px);
  transition: transform .15s ease;
}

/* Room details section */
.rooms-details{
  display: grid;
  gap: 1.2rem;
  margin-top: 1.2rem;
}

.room-detail{
  background: #fff;
  border: 1px solid #eadfcd;
  border-radius: 16px;
  padding: 1rem;
}

.room-detail-title{
  margin: 0 0 .5rem 0;
  color: #1e5aa8;
  font-weight: 800;
}

.room-detail-desc{
  margin: 0 0 1rem 0;
  color: #5b6572;
  line-height: 1.5;
}

/* Base room thumbnail */
.room-thumb{
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

/* Overlay text */
.room-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  pointer-events: none;
}

/* Optional visual tone difference */
.room-unverified img{
  filter: grayscale(100%) contrast(0.9);
}

.room-disabled{
  cursor: not-allowed;
}

.room-disabled .room-thumb img{
  filter: grayscale(100%) brightness(0.85);
}

/* Prevent hover effects from pretending it’s clickable */
.room-disabled:hover{
  transform: none;
}

.room-status{
  margin-top: 4px;
  font-size: 0.72rem;
  color: #999;
}

/* ===========================
   NEARBY EXPERIENCES
=========================== */

.nearby-section {
  margin-top: 2.4rem;
}

.nearby-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nearby-card {
  background: #f7f0e4;
  border: 1px solid rgba(234,223,208,0.9);
  border-radius: 16px;
  padding: 1.4rem;
}

.nearby-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.nearby-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.7rem;
}

.nearby-video {
  background: #e6d8c6;
  border: 1px dashed #d0c0aa;
  border-radius: 12px;
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 0.8rem;
  text-align: center;
}



/* ===========================
   FOOTER
=========================== */

footer {
  border-top: 1px solid var(--border-soft);
  color: var(--text-muted);
  display: flex;
  font-size: 0.85rem;
  gap: 0.6rem;
  justify-content: space-between;
  margin-top: 2.4rem;
  padding-top: 1.4rem;
}

footer .tagline {
  font-style: italic;
}

/* ===========================
   LIGHTBOX
=========================== */


/* Video inside lightbox */
#lightbox-video{
  max-width: 90vw;     /* never wider than viewport */
  max-height: 70vh;    /* never taller than viewport */
  width: auto;
  height: auto;

  border-radius: 12px;
  background: #000;
  box-shadow: 0 0 25px rgba(0,0,0,0.5);
  pointer-events: auto;
}

.lightbox{
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
}

/* arrows */
.lightbox-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  user-select: none;
  padding: 0 12px;
}

.lightbox-prev{ left: 30px; }
.lightbox-next{ right: 30px; }

.lightbox-arrow:hover{ color: #f0e4d0; }

/* container */
.lightbox-content{
  max-width: 92vw;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* image frame */
.lightbox-figure{
  max-width: 92vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
 }

/* image fits */
#lightbox-image{
  max-width: 92vw;
  max-height: 80vh;
  width: auto;
  height: auto;

  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0,0,0,0.5);

  cursor: zoom-in;                 /* ✅ added */
  transition: transform 0.2s ease; /* ✅ added */
  transform-origin: center center; /* zoom from center */
  pointer-events: auto;
}


/* caption / title */
.lightbox-title{
  color: #f0e4d0;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  max-width: 92vw;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;

  width: 36px;
  height: 36px;
  border-radius: 999px;

  border: none;
  background: rgba(0,0,0,0.55);
  color: #fff;

  font-size: 22px;
  line-height: 1;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  background: rgba(0,0,0,0.75);
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 900px) {
  body {
    padding: 1.5rem 0.75rem;
  }

  .content {
    padding: 2rem 1.6rem 1.8rem;
  }

  .hotel-header,
  .insight-card,
  .nearby-grid {
    grid-template-columns: 1fr;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero {
    height: 260px;
  }
}

@media (max-width: 1200px){
  .gallery-main img{
    height: clamp(220px, 30vw, 360px);
  }
}

@media (max-width: 768px){
  .gallery-main img{
    height: auto;
    max-height: 55vh; /* mobile-friendly */
  }
}


/* Smaller table + clickable facility names */
.facility-table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem; /* smaller */
}

.facility-table .col-type {
  width: 32%; /* adjust as needed */
}

.facility-table .col-name {
  width: 68%;
}

.facility-table th,
.facility-table td {
  border:1px solid rgba(0,0,0,0.12);
  padding:8px 10px;   
  vertical-align: top;
}

/* Facility table links/buttons */
.facility-link {
  font: inherit;
  font-size: 0.92rem;
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  cursor: pointer;
  text-decoration: underline;
  color: #7a3f2a !important;
  font-weight: 600;
}

.facility-link:hover {
  color: #5f2f20 !important;
  opacity: 0.9;
}


.facility-table a,
.facility-table a:link,
.facility-table a:visited {
  color: #7a3f2a !important;
  font-weight: 500;
  text-decoration: underline;
}

.facility-table a:hover {
  color: #5f2f20 !important;
}

/* Make the facility name look like a link but stay as a button */
.facility-link {
  font: inherit;
  font-size: 0.92rem; /* smaller */
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  cursor: pointer;
  text-decoration: underline;
}

.facility-link:hover {
  opacity: 0.85;
}

/* Right-side map container */
.map-card {
  border: 1px solid rgba(0,0,0,0.15);
  padding: 10px;
  border-radius: 0;            /* force rectangle */
  background: #fff;
}

/* Map title stays subtle */
.map-title {
  font-size: 0.9rem;
  margin-bottom: 8px;
  font-weight: 500;
}

/* Rectangular map */
.facility-map {
  width: 100%;
  height: 380px;               /* rectangle feel */
  border: 0;
  border-radius: 0;            /* important */
  display: block;
}

/* Caption under map */
.map-caption {
  font-size: 0.85rem;
  margin-top: 8px;
  color: #555;
}

/* ===========================
   AMENITIES (Booking-like list)
=========================== */

.amenities { margin-top: 14px; }

.amenities-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 980px){
  .amenities-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .amenities-grid{ grid-template-columns: 1fr; }
}

.amenity-group{
  background: rgba(255,255,255,0.55);
  border: 1px dashed rgba(0,0,0,0.12);
  border-radius: 14px;
  padding: 14px 14px 10px;
}

.amenity-title{
  display:flex;
  align-items:center;
  gap:10px;
  font-size: 1.02rem;
  margin: 0 0 10px;
  color: #1f4fd8; /* calm professional blue */
}

.amenity-ico{
  width: 22px;
  height: 22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  opacity: 0.9;
}
.amenity-ico svg{ width: 22px; height: 22px; }

/* Keep your existing list reset */
.amenity-list { list-style: none; margin: 0; padding: 0; }
.amenity-list li { margin: 0; padding: 0; }

/* Make amenity items look/behave like nav links */
.amenity-link{
  background: none;
  border: 0;
  padding: 0.35rem 0;

  color: var(--text-main);
  font-size: 0.9rem;
  font-family: inherit;
  text-align: left;

  cursor: pointer;
  text-decoration: none;
}


/* Underline animation like nav */
.amenity-link::after{
  content:"";
  position: absolute;
  left: 0;
  bottom: 0.05rem;
  width: 100%;
  height: 2px;
  background: currentColor;

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  opacity: 0.65;
}

.amenity-link:hover::after,
.amenity-link:focus-visible::after{
  transform: scaleX(1);
}

.amenity-link:hover{
  opacity: 0.9;
}

.amenity-item{
  position:relative;
  padding-left: 18px;
  line-height: 1.25rem;
  font-size: 0.95rem;
  opacity: 0.95;
}

.amenity-item::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  font-weight: 700;
  opacity: 0.65;
}

.amenity-link:focus,
.amenity-link:focus-visible,
.amenity-link:active{
  outline: none !important;
  box-shadow: none !important;
}

.amenity-link[data-keep="1"]{
  cursor: default;
  text-decoration: none;
  pointer-events: none;
}

/* ===========================
   CHECKLIST: MISSING EVIDENCE
   - default: hidden (public)
   - editing mode: show greyed
=========================== */

/* Default (public): hide missing items */
body:not(.show-missing) .amenity-link.is-missing{
  display: none;
}

/* Editing mode: show missing items */
body.show-missing .amenity-link.is-missing{
  display: block;           /* makes list spacing consistent */
  opacity: 0.45;
  cursor: not-allowed;
}

/* Change the left icon from ✓ to • for missing items */
.amenity-link.is-missing::before{
  content:"-";
}

/* The "(no evidence)" label */
.amenity-link.is-missing .missing-tag{
  font-size: 0.85em;
  opacity: 0.85;
  margin-left: 6px;
}

.amenity-link.is-missing::after{
  display:none;
}


/* ===========================
   GALLERY (Booking-style)
=========================== */

#guest-facilities.insight-card {
  display: block;
}


.amenity-gallery{
  margin-top: 18px;
}

/* Photo Evidence title */
.amenity-gallery h3,
.photo-evidence-title{
  font-size: 1rem;        /* smaller than section headers */
  font-weight: 600;
  margin-bottom: 8px;
  opacity: 0.85;
}


.gallery-main{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(0,0,0,0.03);
}

.gallery-main img{
  width: 100%;
  height: clamp(200px, 26vw, 340px);  /* 🔽 smaller on laptops */
  object-fit: contain;               /* keep full image */
  display: block;
  background: rgba(0,0,0,0.04);
}



.gbtn{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.65);
  background: rgba(0,0,0,0.45);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index: 2;
}
.gbtn:hover{ background: rgba(0,0,0,0.60); }
.gprev{ left: 14px; }
.gnext{ right: 14px; }

.gcount{
  position:absolute;
  right: 14px;
  bottom: 12px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  z-index: 2;
}

/* Thumbnails strip */
.gallery-thumbs{
  margin-top: 10px;
  display:flex;
  gap: 10px;
  overflow-x: auto;
  padding: 6px 2px 10px;

  scroll-snap-type: x mandatory;

  /* ✅ add these */
  scroll-behavior: smooth;
  scroll-padding-left: 16px;
  scroll-padding-right: 16px;
  -webkit-overflow-scrolling: touch;
}


.thumb{
  border: 0;
  padding: 0;
  background: transparent;
  cursor:pointer;
  scroll-snap-align: start;
  border-radius: 10px;
  overflow:hidden;
  flex: 0 0 auto;
  outline: none;
  position: relative;
  border: 2px solid transparent;
  opacity: 0.6;
  transition: border 0.2s ease, opacity 0.2s ease;
}

.thumb img{
  width: 108px;   /* ↑ bigger */
  height: 72px;   /* ↑ proportional */
  object-fit: cover;
  display:block;
  opacity: 0.85;
}


.thumb.is-active {
  border-color: var(--blue);
  border-width: 4px;              /* thicker border */
  opacity: 1; 
}

.thumb.is-active img{ opacity: 1; }

.thumb.is-active::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
  pointer-events: none;
}



.gcaption {
  text-align: center;
  margin-top: 8px;
  font-size: 0.85rem;
  color: #0a0a0a;
  opacity: 0.75;
}

.evidence-toolbar{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin: 10px 0 16px;
}

.evidence-title{
  font-weight:800;
}

.evidence-toggle{
  display:flex;
  gap:10px;
  align-items:center;
  font-size: 0.95rem;
}

.is-hidden-noevidence{ display:none !important; }

/* When shown in editing mode but no evidence */
.amenity-item.is-noevidence{
  cursor: default !important;
  opacity: .45;
}
.amenity-item.is-noevidence::after{
  content:" (no evidence)";
  font-size: .9em;
  opacity: .85;
  margin-left: 6px;
}


.facility-image-box {
  margin-top: 14px;
}

.facility-image-box img {
  width: 100%;
  border-radius: 10px;
}

.facility-image-caption {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-top: 6px;
}

.hidden {
  display: none;
}
.facility-image-box img{
  display:block;
  width:100%;
  border-radius: 12px;
}

.map-divider{
  border: 0;
  border-top: 10px solid rgba(0,0,0,0.12);
  margin: 12px 0 14px;
}
/* Evidence zoom lightbox */
.zoom-box{
  display:none;
  position:fixed;
  inset:0;
  z-index:9999;
}

.zoom-box.is-open{ display:block; }

.zoom-backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.80);
}

.zoom-panel{
  position:relative;
  width:min(92vw, 980px);
  height:min(88vh, 720px);
  margin: 5vh auto 0;
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  display:flex;
  flex-direction:column;
}

.zoom-close{
  position:absolute;
  top:10px;
  right:12px;
  width:36px;
  height:36px;
  border-radius:10px;
  border:0;
  background: rgba(0,0,0,0.08);
  cursor:pointer;
  font-size:22px;
  line-height:36px;
}

.zoom-stage{
  flex:1;
  background:#111;
  overflow:hidden; /* we control pan/zoom */
  display:flex;
  align-items:center;
  justify-content:center;
}

.zoom-stage img{
  max-width:none;   /* important for zoom */
  max-height:none;  /* important for zoom */
  transform-origin: center center;
  user-select:none;
  -webkit-user-drag:none;
}

.zoom-caption{
  padding: 10px 14px;
  font-size: 0.9rem;
  opacity:0.85;
}

#facilityImage{
  cursor: zoom-in;
}

.nearby-video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 10px;
  margin-top: 8px;
}

.nearby-media.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  max-width: 420px;
  margin-top: 8px;
}

.nearby-media.grid-3 img {
  width: 100%;
  height: 110px;          /* force same height */
  object-fit: cover;     /* crop nicely */
  display: block;
}

/* ===========================
   MOBILE NAVIGATION
=========================== */

.mobile-nav,
.mobile-menu {
  display: none;
}

@media (max-width: 768px) {

  header {
    display: block;
  }

  header,
  .header,
  .site-header,
  .navbar,
  .header-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }


  .nav,
  .desktop-logo,
  .brand,
  .site-title {
    display: none;
  }

  .mobile-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    padding: 14px 18px;
    background: #efe1d2;
  }

  .mobile-logo {
    font-size: 0.95rem;
    font-weight: 600;
    color: #3b2f2f;
  }

  .menu-toggle {
    background: none;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    color: #3b2f2f;
  }

  .mobile-menu {
    display: none;
    list-style: none;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 16px 22px;
    background: #efe1d2;
  }

  .mobile-menu.show {
    display: block;
  }

  .mobile-menu li {
    margin-bottom: 14px;
  }

  .mobile-menu a {
    color: #3b2f2f;
    text-decoration: none;
    font-size: 0.95rem;
  }

  
  
}

@media (max-width: 768px) {

  .room-detail-page,
  .room-page,
  .room-content,
  .room-main,
  main {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  .room-section,
  .video-section,
  section {
    padding-top: 8px !important;
    margin-top: 0 !important;
  }

  .room-section:first-of-type,
  section:first-of-type {
    padding-top: 8px !important;
    margin-top: 0 !important;
  }

  .room-section h2,
  section h2 {
    margin-top: 0 !important;
  }

  .mobile-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  main,
  .room-page,
  .room-content {
    padding-top: 70px;
  }

  
}


#property-description,
#rooms,
#nearby-experiences {
  scroll-margin-top: 50px;
}

.map-box {
  width: 100%;
  border: 1px solid #d8d0c3;
  background: #f7f1e8;
  overflow: hidden;
}

.map-box iframe {
  display: block;
  width: 100%;
}

.map-note {
  margin-top: 10px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #6b6258;
}

/* Fix surrounding facilities table on mobile */
.facilities-table {
  width: 100%;
  table-layout: fixed;
}

.facilities-table th:first-child,
.facilities-table td:first-child {
  width: 38%;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
}

.facilities-table th:last-child,
.facilities-table td:last-child {
  width: 62%;
  white-space: normal;
  overflow-wrap: break-word;
}

@media (max-width: 600px) {
  .facility-table {
    table-layout: fixed;
    width: 100%;
    font-size: 0.82rem;
  }

  .facility-table .col-type {
    width: 45%;
  }

  .facility-table .col-name {
    width: 55%;
  }

  .facility-table th,
  .facility-table td {
    padding: 8px 6px;
    line-height: 1.3;
    word-break: normal;
    overflow-wrap: anywhere;
  }
}

.map-card {
  width: 100%;
  overflow: hidden;
}

.facility-map {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

@media (max-width: 600px) {
  .facility-map {
    height: 220px;
  }
}