/* ============================================================
   DOUGLAS LUXURY APARTMENTS — Property Page Shared Styles
   ============================================================ */
:root {
  --gold:       #aa8453;
  --gold-light: #c9a97a;
  --gold-pale:  #f0e6d6;
  --gold-dark:  #8a6a3e;
  --dark:       #1a1814;
  --mid:        #5a5550;
  --soft:       #f7f4f0;
  --white:      #ffffff;
  --border:     #e8e2da;
  --font-serif: 'Playfair Display', serif;
  --font-sans:  'Barlow', sans-serif;
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.37, 0, 0.63, 1);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,h2,h3,h4 { font-family: var(--font-serif); font-weight: 500; letter-spacing: -0.02em; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-subtitle {
  font-size: 10px; font-weight: 700; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px; display: block;
}
.section-header { margin-bottom: 56px; }
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-top: 8px; }


/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--gold);
  z-index: 9999;
  transition: width 0.1s linear;
}


/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 22px 0;
  transition: padding .4s var(--ease-out), background .4s var(--ease-out), box-shadow .4s;
}
.navbar:not(.scrolled) { background: transparent; }
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.07);
  padding: 13px 0;
}

.nav-container {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}

/* Logo swap */
.logo { position: relative; display: inline-block; height: 34px; width: auto; }
.logo-img { height: 34px; width: auto; }
.logo .logo-dark  { opacity: 0; position: absolute; top: 0; left: 0; transition: opacity .4s; }
.logo .logo-light { opacity: 1; transition: opacity .4s; }
.navbar.scrolled .logo .logo-dark  { opacity: 1; }
.navbar.scrolled .logo .logo-light { opacity: 0; }

/* Desktop nav menu */
.nav-menu { display: flex; gap: 28px; align-items: center; }
.nav-menu a {
  color: rgba(255,255,255,.88);
  font-weight: 500; font-size: 13px;
  text-transform: uppercase; letter-spacing: .07em;
  transition: color .25s;
  position: relative;
}
.nav-menu a::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 0%; height: 1px; background: var(--gold);
  transition: width .3s var(--ease-out);
}
.nav-menu a:hover::after { width: 100%; }
.navbar.scrolled .nav-menu a { color: var(--dark); }
.nav-menu a:hover { color: var(--gold); }

/* Nav CTA */
.navbar .btn-primary {
  display: inline-flex; align-items: center;
  background: var(--gold); color: white !important;
  padding: 10px 22px; border-radius: 40px;
  font-weight: 600; font-size: 13px; letter-spacing: .04em;
  transition: background .25s, transform .2s;
  border: none; cursor: pointer; white-space: nowrap;
}
.navbar .btn-primary:hover { background: var(--gold-dark); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: white; transition: background .3s, transform .3s, opacity .3s;
}
.navbar.scrolled .hamburger span { background: var(--dark); }
.hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 999;
  pointer-events: none;
}
.mobile-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.5);
  opacity: 0; transition: opacity .35s;
}
.mobile-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 300px; background: var(--white);
  transform: translateX(100%); transition: transform .4s var(--ease-out);
  display: flex; flex-direction: column; padding: 80px 32px 40px;
  box-shadow: -8px 0 40px rgba(0,0,0,.15);
}
.mobile-drawer.is-open { pointer-events: auto; }
.mobile-drawer.is-open .mobile-overlay { opacity: 1; }
.mobile-drawer.is-open .mobile-panel { transform: translateX(0); }

.mobile-close {
  position: absolute; top: 22px; right: 24px;
  background: none; border: none; cursor: pointer;
  font-size: 22px; color: var(--mid); line-height: 1;
}
.mobile-nav { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.mobile-nav a {
  padding: 14px 0; border-bottom: 1px solid var(--border);
  font-size: 15px; font-weight: 500; color: var(--dark);
  text-transform: uppercase; letter-spacing: .06em;
  transition: color .2s, padding-left .2s;
}
.mobile-nav a:hover { color: var(--gold); padding-left: 6px; }
.mobile-book {
  display: block; text-align: center;
  background: var(--gold); color: white !important;
  padding: 14px 24px; border-radius: 40px;
  font-weight: 600; font-size: 14px; margin-top: 28px;
  transition: background .25s;
}
.mobile-book:hover { background: var(--gold-dark); }

/* ============================================================
   HERO SLIDESHOW
   ============================================================ */
.hero-slideshow {
  height: 100vh; min-height: 680px;
  position: relative; overflow: hidden;
}
.slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease; z-index: 1;
  will-change: opacity;
}
.slide.active { opacity: 1; z-index: 2; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.55) 100%);
  z-index: 3; pointer-events: none;
}
.hero-content {
  position: absolute; bottom: 120px; left: 0; right: 0;
  z-index: 5; color: white; padding: 0 24px;
  max-width: 680px;
}
.hero-eyebrow {
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 32px; height: 1px;
  background: var(--gold-light); flex-shrink: 0;
}
.hero-heading {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.08; margin-bottom: 18px;
}
.hero-sub { opacity: .85; font-size: 17px; margin-bottom: 32px; line-height: 1.5; }
.btn-hero {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border: 1px solid rgba(255,255,255,.5);
  color: white; border-radius: 40px;
  font-weight: 600; font-size: 13px; text-transform: uppercase;
  letter-spacing: .1em; transition: all .3s;
}
.btn-hero:hover { background: var(--gold); border-color: var(--gold); gap: 14px; }

/* Slideshow dots */
.slide-nav {
  position: absolute; bottom: 36px; left: 24px;
  z-index: 5; display: flex; gap: 8px; align-items: center;
}
.slide-dot {
  width: 28px; height: 2px; border-radius: 2px;
  background: rgba(255,255,255,.35); cursor: pointer;
  transition: background .3s, width .3s;
  border: none; padding: 0;
}
.slide-dot.active { background: white; width: 44px; }

/* Slideshow arrows */
.slide-arrows {
  position: absolute; top: 50%; right: 20px;
  transform: translateY(-50%); z-index: 5;
  display: flex; flex-direction: column; gap: 10px;
}
.slide-arrow {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.08); color: white;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .25s, border-color .25s;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.slide-arrow:hover { background: var(--gold); border-color: var(--gold); }

/* Scroll indicator */
.scroll-hint {
  position: absolute; bottom: 34px; right: 28px; z-index: 5;
  color: rgba(255,255,255,.5); font-size: 10px; letter-spacing: .2em;
  text-transform: uppercase; writing-mode: vertical-rl;
  display: flex; align-items: center; gap: 10px;
}
.scroll-hint::after {
  content: ''; display: block; width: 1px; height: 40px;
  background: rgba(255,255,255,.3);
}

/* ============================================================
   WELCOME SECTION
   ============================================================ */
.welcome-section { padding: 100px 0; }
.welcome-grid { display: flex; gap: 72px; align-items: center; flex-wrap: wrap; }
.welcome-text { flex: 1; min-width: 280px; }
.welcome-text h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 20px; }
.welcome-text p { color: var(--mid); line-height: 1.8; margin-bottom: 28px; font-size: 15.5px; }

.quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;        /* optional breathing room */
}

.quick-fact {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--soft);
  border-radius: 40px;
  border: none;
  white-space: nowrap;
}

.quick-fact i {
  color: var(--gold);
  font-size: 13px;
  flex-shrink: 0;
}

.quick-fact span {
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
}

.welcome-image-wrap {
  flex: 1; min-width: 280px; position: relative;
}
.welcome-image-main {
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
}
.welcome-image-main img { width: 100%; height: 480px; object-fit: cover; }
.welcome-badge {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--gold); color: white;
  padding: 20px 24px; border-radius: 8px;
  box-shadow: 0 8px 24px rgba(170,132,83,.35);
}
.badge-number { font-family: var(--font-serif); font-size: 2.2rem; line-height: 1; display: block; }
.badge-label { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; opacity: .85; }

/* ============================================================
   AMENITIES SECTION
   ============================================================ */
.amenities-section {
  background: var(--dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.amenities-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(170,132,83,.07) 0%, transparent 70%);
  pointer-events: none;
}
.amenities-section .section-subtitle { color: var(--gold-light); }
.amenities-section h2 { color: white; }
.amenities-intro { margin-bottom: 64px; }
.amenities-intro p {
  color: rgba(255,255,255,.5); font-size: 15px;
  margin-top: 14px; max-width: 480px; line-height: 1.7;
}

.amenities-categories {
  display: flex;
  flex-direction: column;
  gap: 48px;                    /* more breathing room between groups */
}

/* Group labels become simple, subtle headings without the heavy line */
.amenities-group-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.amenities-group-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.08);   /* keep a faint rule if you want */
}

/* Simple grid: icon + text, left‑aligned, no boxes */
.amenities-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);   /* 3 columns on desktop */
  gap: 14px 28px;
}

/* Reset the amenity item to minimal text row */
.amenity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  transition: none;
  text-align: left;
  cursor: default;
}

.amenity-item:hover {
  background: none;
  border-color: transparent;
}

/* Remove the circle around the icon – just a gold icon */
.amenity-icon {
  width: auto;
  height: auto;
  border-radius: 0;
  background: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  transition: none;
}

.amenity-item:hover .amenity-icon {
  background: none;
  transform: none;
}

/* Text stays white, slightly larger */
.amenity-item span {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* Responsive: stack into 2 columns on tablets, 1 on phones */
@media (max-width: 768px) {
  .amenities-icons {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .amenities-icons {
    grid-template-columns: 1fr;
  }
}

/* Nearby highlight (Douglas) */
.nearby-section {
  margin-top: 56px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.nearby-title {
  font-size: 10px; font-weight: 700; letter-spacing: .25em;
  text-transform: uppercase; color: rgba(255,255,255,.3);
  margin-bottom: 20px;
}
.nearby-grid {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.nearby-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 40px;
  border: 1px solid rgba(170,132,83,.25);
  font-size: 12.5px; color: rgba(255,255,255,.6);
}
.nearby-tag i { color: var(--gold); font-size: 11px; }

/* ============================================================
   ROOMS SECTION — horizontal cards (image left, content right)
   ============================================================ */
.rooms-section {
  padding: 100px 0;
  background: var(--soft);
}

.rooms-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 52px;
  max-width: 960px;          /* keep cards comfortably narrow */
  margin-left: auto;
  margin-right: auto;
}

/* ---- Individual horizontal card ---- */
.room-card {
  display: flex;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,.05);
  border: 1px solid var(--border);
  transition: transform .4s var(--ease-out), box-shadow .4s;
  /* No longer column, it's a row */
  flex-direction: row;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,.08);
}

/* ---- Left side: image ---- */
.room-card-image {
  flex: 0 0 40%;             /* 40% width */
  max-height: 300px;
  overflow: hidden;
  position: relative;
}

.room-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}

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

.room-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 40px;
  z-index: 2;
}

/* ---- Right side: content ---- */
.room-card-body {
  flex: 1;
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.room-card-category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}

.room-card-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.2;
  margin: 0;
}

/* Optional short description – add if you want */
.room-card-desc {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.5;
  margin: 0;
  /* Limit to 2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Feature pills grid (inline) */
.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 4px;
  padding: 0;
  list-style: none;
}

.room-features li {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--soft);
  border-radius: 40px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--dark);
  white-space: nowrap;
  line-height: 1;
}

.room-features li i {
  color: var(--gold);
  font-size: 11px;
  margin: 0;
  flex-shrink: 0;
}

/* Price row */
.room-card-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 4px 0 10px;
}

.price-from { font-size: 12px; color: var(--mid); }
.price-currency { font-size: 1rem; font-weight: 600; color: var(--dark); align-self: flex-start; margin-top: 4px; }
.price-amount {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1;
}
.price-unit { font-size: 13px; color: var(--mid); }

/* Actions row: Reserve + Gallery */
.room-card-actions {
  display: flex;
  gap: 10px;
}

.btn-book {
  flex: 0 0 auto;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 40px;
  background: var(--gold);
  color: white;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: background .25s, transform .2s;
  text-decoration: none;
}

.btn-book:hover { background: var(--gold-dark); transform: translateY(-1px); }

.btn-details {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding: 12px 18px;
  border-radius: 40px;
  border: 1px solid var(--border);
  color: var(--mid);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color .25s, color .25s;
}

.btn-details:hover { border-color: var(--gold); color: var(--gold); }

/* ---- Center single cards (Arlington) ---- */
.rooms-grid--single {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Responsive: stack vertically on small screens ---- */
@media (max-width: 767px) {
  .room-card {
    flex-direction: column;
  }

  .room-card-image {
    flex: 0 0 auto;
    height: 240px;
  }

  .room-card-body {
    padding: 24px 20px;
  }
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-section {
  padding: 100px 0;
}

.gallery-header {
  max-width: 1200px;
  margin: 0 auto 48px;
  padding: 0 24px;
}

.gallery-header .section-subtitle {
  color: var(--gold);
}

.gallery-header .section-title {
  color: var(--dark);
}

/* ---- Category Tabs ---- */
.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  padding: 0 24px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-tab {
  padding: 8px 20px;
  border-radius: 40px;
  border: 1px solid var(--border);
  background: white;
  color: var(--mid);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.25s;
  text-transform: uppercase;
}

.gallery-tab:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.gallery-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
}

/* ---- Category Panel ---- */
.gallery-category {
  display: none;
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 24px;
}

.gallery-category.active {
  display: block;
}

/* Horizontal row of thumbnails (visible by default) */
.gallery-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}

.gallery-row::-webkit-scrollbar {
  height: 4px;
}

.gallery-row::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

.gallery-row .gallery-item {
  flex: 0 0 220px;            /* fixed thumbnail width */
  height: 160px;
  scroll-snap-align: start;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-row .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.gallery-row .gallery-item:hover img {
  transform: scale(1.06);
}

/* Expanded masonry grid (hidden by default) */
.gallery-expanded {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px;
  margin-top: 20px;
  animation: fadeIn 0.3s ease;
}

.gallery-expanded .gallery-item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-expanded .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.gallery-expanded .gallery-item:hover img {
  transform: scale(1.04);
}

/* Label overlay on hover */
.gallery-item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 12px 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  color: rgba(255,255,255,0.9);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s, transform 0.3s;
}

.gallery-item:hover .gallery-item-label {
  opacity: 1;
  transform: translateY(0);
}

/* "View all" button */
.gallery-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 10px 24px;
  border: 1px solid var(--border);
  border-radius: 40px;
  background: white;
  color: var(--dark);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
}

.gallery-view-all:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.gallery-view-all i {
  font-size: 11px;
  transition: transform 0.25s;
}

/* When expanded, the button switches to "Show less" */
.gallery-view-all.expanded i {
  transform: rotate(45deg);
}

/* ---- Lightbox (category-aware) ---- */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,8,6,0.96);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

.gallery-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  z-index: 10;
  transition: color 0.2s;
}

.lightbox-close:hover {
  color: white;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(0,0,0,0.4);
  color: white;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.25s, border-color 0.25s;
}

.lightbox-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  letter-spacing: 0.05em;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .gallery-row .gallery-item {
    flex: 0 0 160px;
    height: 120px;
  }

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

@media (max-width: 480px) {
  .gallery-row .gallery-item {
    flex: 0 0 140px;
    height: 100px;
  }

  .gallery-expanded {
    grid-template-columns: 1fr;
  }

  .lightbox-arrow {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============================================================
   CONTACT / FIND US
   ============================================================ */
.contact-section { padding: 100px 0; background: var(--soft); }
.contact-grid { display: flex; gap: 56px; flex-wrap: wrap; align-items: flex-start; }

.contact-info { flex: 1; min-width: 260px; }
.contact-details { display: flex; flex-direction: column; gap: 0; margin-bottom: 32px; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 20px 0; border-bottom: 1px solid var(--border);
}
.contact-detail:first-child { border-top: 1px solid var(--border); }
.contact-detail-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold-pale); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon i { color: var(--gold); font-size: 14px; }
.contact-detail-text strong { display: block; font-size: 12px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; color: var(--dark); margin-bottom: 4px; }
.contact-detail-text span, .contact-detail-text a {
  font-size: 14.5px; color: var(--mid);
  transition: color .2s;
}
.contact-detail-text a:hover { color: var(--gold); }

.btn-directions {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--dark); color: white;
  padding: 13px 28px; border-radius: 40px;
  font-size: 13px; font-weight: 600; letter-spacing: .05em;
  transition: background .25s, transform .2s;
}
.btn-directions:hover { background: var(--gold); transform: translateY(-1px); }

.contact-form-wrap { flex: 1; min-width: 280px; }
.contact-form-wrap h3 {
  font-family: var(--font-serif); font-size: 1.4rem;
  margin-bottom: 24px; color: var(--dark);
}
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form input, .contact-form textarea {
  padding: 14px 16px; border: 1px solid var(--border);
  border-radius: 8px; font-family: var(--font-sans); font-size: 14.5px;
  background: white; color: var(--dark);
  transition: border-color .25s, box-shadow .25s;
  outline: none;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(170,132,83,.08);
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form .btn-send {
  align-self: flex-start;
  background: var(--gold); color: white;
  padding: 13px 32px; border-radius: 40px;
  font-weight: 600; font-size: 13px; letter-spacing: .06em;
  border: none; cursor: pointer;
  transition: background .25s, transform .2s;
}
.contact-form .btn-send:hover { background: var(--gold-dark); transform: translateY(-1px); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #111; color: rgba(255,255,255,.55); padding: 64px 0 28px; }
.footer-grid {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 32px; margin-bottom: 48px;
}
.footer-logo { height: 30px; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; max-width: 300px; line-height: 1.7; }
.social-icons { display: flex; gap: 10px; margin-top: 16px; }
.social-icons a {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45); font-size: 13px;
  transition: border-color .2s, color .2s, background .2s;
}
.social-icons a:hover { border-color: var(--gold); color: var(--gold); background: rgba(170,132,83,.08); }

.footer-cols { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col h4 {
  font-family: var(--font-sans); font-size: 11px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px; color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; flex-wrap: wrap; gap: 8px;
}
.footer-powered a { color: var(--gold); font-weight: 500; }
.footer-powered a:hover { text-decoration: underline; }

/* ============================================================
   RESERVATION PAGE
   ============================================================ */
.reservation-hero {
  background: var(--dark);
  padding: 140px 0 60px;
  position: relative; overflow: hidden;
}
.reservation-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 10% 50%, rgba(170,132,83,.08), transparent 70%);
}
.reservation-hero .section-subtitle { color: var(--gold-light); }
.reservation-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem); color: white;
  margin: 8px 0 14px;
}
.reservation-hero p { color: rgba(255,255,255,.5); font-size: 15px; }
.reservation-meta {
  display: flex; flex-wrap: wrap; gap: 24px; margin-top: 28px;
}
.reservation-meta-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,.5);
}
.reservation-meta-item i { color: var(--gold); font-size: 13px; }

.reservation-main { padding: 80px 0; }
.reservation-layout { display: flex; gap: 56px; align-items: flex-start; flex-wrap: wrap; }
.reservation-widget-area { flex: 1; min-width: 300px; }
.widget-frame {
  background: white; border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 32px rgba(0,0,0,.06);
  overflow: hidden; min-height: 480px;
  display: flex; align-items: center; justify-content: center;
}
.widget-placeholder {
  text-align: center; padding: 60px 40px;
}
.widget-placeholder .wp-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 16px; }
.widget-placeholder h4 { font-family: var(--font-serif); margin-bottom: 8px; font-size: 1.2rem; }
.widget-placeholder p { color: var(--mid); font-size: 14px; }

.reservation-sidebar { width: 300px; flex-shrink: 0; }
.sidebar-card {
  background: white; border-radius: 12px; border: 1px solid var(--border);
  padding: 28px; margin-bottom: 20px;
}
.sidebar-card h4 {
  font-family: var(--font-serif); font-size: 1.1rem;
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.sidebar-policy { display: flex; flex-direction: column; gap: 12px; }
.sidebar-policy-item {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 13.5px; color: var(--mid);
}
.sidebar-policy-item i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.sidebar-contact { display: flex; flex-direction: column; gap: 12px; }
.sidebar-contact a {
  display: flex; align-items: center; gap: 12px; padding: 12px 16px;
  background: var(--soft); border-radius: 8px; font-size: 13.5px; color: var(--dark);
  transition: background .2s, color .2s;
}
.sidebar-contact a:hover { background: var(--gold-pale); color: var(--gold-dark); }
.sidebar-contact i { color: var(--gold); width: 16px; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
[data-animate] {
  opacity: 0;
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
[data-animate="fade-up"]   { transform: translateY(32px); }
[data-animate="fade-in"]   { transform: none; }
[data-animate="fade-left"] { transform: translateX(-28px); }
[data-animate="fade-right"]{ transform: translateX(28px); }
[data-animate].in-view     { opacity: 1; transform: none; }

/* ============================================================
   MEDIA QUERIES
   ============================================================ */
@media (max-width: 900px) {
  .welcome-image-main img { height: 360px; }
  .welcome-badge { bottom: -16px; left: -10px; }
  .reservation-sidebar { width: 100%; }
}

@media (max-width: 768px) {
  .nav-menu, .navbar .btn-primary { display: none; }
  .hamburger { display: flex; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .gallery-grid .gallery-item:nth-child(1) { grid-row: span 1; }
  .gallery-grid .gallery-item:nth-child(5) { grid-column: span 1; }
  .hero-content { bottom: 100px; }
  .slide-arrows { display: none; }
  .welcome-grid { flex-direction: column; }
  .welcome-image-wrap { order: -1; width: 100%; }
  .welcome-image-main img { height: 260px; }
  .welcome-badge { display: none; }
  .contact-grid { flex-direction: column; }
  .footer-cols { gap: 32px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .rooms-grid { grid-template-columns: 1fr; }
  .rooms-cta { flex-direction: column; }
}