/* ─────────────────────────────────────────────────────────────────────────────
   The Wood Inn - Main Stylesheet
   Theme: Warm, earthy, natural tones inspired by Himalayan mountain aesthetics
   Color Palette:
     --green-dark:   #1a3c34  (primary, deep forest green)
     --green-med:    #2d6a4f  (medium forest green)
     --brown-warm:   #8b6914  (warm wooden brown)
     --gold-accent:  #c9a83c  (mountain gold accent)
     --cream:        #f8f4ef  (warm cream background)
     --cream-dark:   #ede8e0  (darker cream for cards)
     --text-dark:    #2c2c2c  (main text)
     --text-mid:     #5a5a5a  (secondary text)
     --white:        #ffffff
──────────────────────────────────────────────────────────────────────────── */

/* ── CSS Custom Properties (Design Tokens) ─────────────────────────────────── */
:root {
  --green-dark:    #1a3c34;
  --green-med:     #2d6a4f;
  --green-light:   #52b788;
  --brown-warm:    #8b6914;
  --gold-accent:   #c9a83c;
  --gold-light:    #e8c96c;
  --cream:         #f8f4ef;
  --cream-dark:    #ede8e0;
  --cream-deep:    #d8cfc2;
  --text-dark:     #2c2c2c;
  --text-mid:      #5a5a5a;
  --text-light:    #888888;
  --white:         #ffffff;
  --shadow-soft:   0 4px 24px rgba(26,60,52,0.10);
  --shadow-hover:  0 8px 32px rgba(26,60,52,0.18);
  --radius-card:   12px;
  --radius-btn:    6px;
  --transition:    0.3s ease;
  --font-serif:    'Playfair Display', Georgia, serif;
  --font-sans:     'Inter', 'Segoe UI', sans-serif;
}

/* ── Reset & Base ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--green-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-accent); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--green-dark);
  line-height: 1.3;
}

/* ── Google Fonts Import ────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* ── Utility Classes ────────────────────────────────────────────────────────── */
.text-gold     { color: var(--gold-accent); }
.text-green    { color: var(--green-dark); }
.bg-cream      { background-color: var(--cream); }
.bg-green-dark { background-color: var(--green-dark); }
.section-pad   { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }

/* Section heading with decorative underline */
.section-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--green-dark);
  margin-bottom: 12px;
}
.section-subtitle {
  color: var(--text-mid);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 600px;
}
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-accent), var(--gold-light));
  margin: 12px 0 16px;
  border-radius: 2px;
}
.section-divider.center { margin: 12px auto 16px; }

/* ── Buttons ────────────────────────────────────────────────────────────────── */
.btn-wood {
  display: inline-block;
  padding: 12px 32px;
  background-color: var(--green-dark);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border: 2px solid var(--green-dark);
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-wood:hover {
  background-color: transparent;
  color: var(--green-dark);
}

.btn-wood-outline {
  display: inline-block;
  padding: 11px 30px;
  background-color: transparent;
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border: 2px solid var(--white);
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-wood-outline:hover {
  background-color: var(--white);
  color: var(--green-dark);
}

.btn-gold {
  display: inline-block;
  padding: 12px 32px;
  background: linear-gradient(135deg, var(--brown-warm), var(--gold-accent));
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(201,168,60,0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,60,0.45);
  color: var(--white);
}

/* ── Navigation Bar ─────────────────────────────────────────────────────────── */
.navbar-wood {
  background-color: rgba(15, 40, 30, 0.45);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid rgba(201,168,60,0.25);
  box-shadow: 0 1px 24px rgba(0,0,0,0.18);
}
.navbar-wood.scrolled {
  background-color: rgba(26, 60, 52, 0.97);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  border-bottom-color: rgba(201,168,60,0.3);
}

.navbar-brand-wood {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  text-decoration: none;
}
.navbar-brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.navbar-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.navbar-brand-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.3px;
}
.navbar-brand-sub {
  font-size: 0.7rem;
  color: var(--gold-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-link-wood {
  color: rgba(255,255,255,0.85) !important;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 8px 14px !important;
  border-radius: 4px;
  transition: all var(--transition);
  position: relative;
}
.nav-link-wood:hover,
.nav-link-wood.active {
  color: var(--gold-light) !important;
}
.nav-link-wood::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold-accent);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 1px;
}
.nav-link-wood:hover::after,
.nav-link-wood.active::after { transform: scaleX(1); }

.navbar-toggler-wood {
  border: 1px solid rgba(255,255,255,0.4);
  padding: 6px 10px;
}
.navbar-toggler-wood .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2C255%2C255%2C0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── Hero Slideshow ─────────────────────────────────────────────────────────── */
.hero-slideshow {
  position: relative;
  width: 100%;
  /* Full-viewport hero so landscape images aren't cropped into a narrow band.
     100svh keeps mobile browsers' dynamic URL bar from clipping the slide. */
  height: 100vh;
  height: 100svh;
  min-height: 520px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  will-change: opacity;
}
.slide.active { opacity: 1; }

/* Placeholder gradient slides (shown when images aren't loaded) */
.slide-placeholder-1 {
  background: linear-gradient(135deg, #1a3c34 0%, #2d6a4f 40%, #4a7c5c 70%, #8b9c7a 100%);
}
.slide-placeholder-2 {
  background: linear-gradient(135deg, #2c4a6e 0%, #3d6b9a 40%, #5a8ab0 70%, #87b3ca 100%);
}
.slide-placeholder-3 {
  background: linear-gradient(135deg, #3d2c1e 0%, #6b4423 40%, #8b6914 70%, #c9a83c 100%);
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
}

/* Subtle Ken Burns zoom animation for slides (reduced to preserve crispness) */
.slide.active .slide-img,
.slide.active .slide-placeholder-1,
.slide.active .slide-placeholder-2,
.slide.active .slide-placeholder-3 {
  animation: kenBurns 6s ease-out;
}
@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.04); }
}

/* Dark gradient overlay on slides */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.15) 35%,
    rgba(0,0,0,0.25) 55%,
    rgba(0,0,0,0.62) 100%
  );
}

/* Slide caption text */
.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 40px 90px;
  color: var(--white);
  text-align: center;
}
.slide-caption-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.6s ease 0.3s;
}
.slide-caption-sub {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.6s ease 0.45s;
}
.slide-caption-btn {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.6s ease 0.6s;
}
.slide.active .slide-caption-title,
.slide.active .slide-caption-sub,
.slide.active .slide-caption-btn {
  opacity: 1;
  transform: translateY(0);
}

/* Slideshow navigation arrows */
.slideshow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 10;
  backdrop-filter: blur(4px);
}
.slideshow-btn:hover {
  background: rgba(201,168,60,0.7);
  border-color: var(--gold-accent);
}
.slideshow-prev { left: 24px; }
.slideshow-next { right: 24px; }

/* Slideshow dots */
.slideshow-dots {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.slideshow-dot {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.45);
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition);
}
.slideshow-dot.active {
  background: var(--gold-accent);
  border-color: var(--gold-accent);
  transform: scale(1.3);
}

/* Scroll-down indicator */
.scroll-indicator {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeInUp 1.2s ease 1s both;
  z-index: 5;
}
.scroll-indicator-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,0.6);
  border-bottom: 2px solid rgba(255,255,255,0.6);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(5px); }
}

/* ── Availability Checker Section ───────────────────────────────────────────── */
.avail-section {
  background: var(--green-dark);
  padding: 36px 0 40px;
  border-bottom: 3px solid var(--gold-accent);
}

/* Widget card */
.avail-widget {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  overflow: visible;
  backdrop-filter: blur(4px);
}
/* Clip the results panel bottom corners to the widget radius */
.avail-results {
  border-radius: 0 0 16px 16px;
}

/* Widget header */
.avail-widget-header {
  padding: 18px 24px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.avail-widget-title {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 1.25rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 3px;
}
.avail-widget-title i { color: var(--gold-accent); }
.avail-widget-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}

/* Form row */
.avail-form-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 12px 14px;
  padding: 18px 20px 20px;
}
.avail-field { flex: 1; min-width: 150px; }
.avail-field-narrow { flex: 0 0 120px; }
.avail-field-btn { flex: 0 0 auto; }

.avail-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.70rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 7px;
}

/* Input wrapper */
.avail-input-wrap {
  position: relative;
}
.avail-input {
  width: 100%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  color: #fff;
  padding: 10px 38px 10px 13px;
  font-size: 0.88rem;
  font-family: inherit;
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
  -webkit-appearance: none;
  appearance: none;
}
.avail-input::placeholder { color: rgba(255,255,255,0.4); }
.avail-input:focus {
  outline: none;
  border-color: var(--gold-accent);
  background: rgba(255,255,255,0.15);
  box-shadow: 0 0 0 3px rgba(201,168,60,0.22);
}
/* Safari/Chrome date overrides */
.avail-input::-webkit-calendar-picker-indicator { filter: invert(1); opacity: 0.6; cursor: pointer; }
.avail-input-icon {
  position: absolute;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  pointer-events: none;
}
.avail-select { cursor: pointer; }
.avail-select option { color: var(--text-dark); background: #fff; }

/* Stepper */
.avail-stepper {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  overflow: hidden;
  height: 40px;
}
.avail-step-btn {
  width: 34px;
  height: 100%;
  background: none;
  border: none;
  color: rgba(255,255,255,0.9);
  font-size: 1.2rem;
  font-weight: 300;
  cursor: pointer;
  transition: background 0.15s;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.avail-step-btn:hover { background: rgba(255,255,255,0.15); }
.avail-step-btn:disabled { opacity: 0.35; cursor: default; }
.avail-step-val {
  flex: 1;
  text-align: center;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  user-select: none;
}

/* Check button */
.avail-check-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 22px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
  box-shadow: 0 4px 14px rgba(201,168,60,0.35);
  font-family: inherit;
  height: 40px;
}
.avail-check-btn:hover {
  background: #b8913a;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,60,0.5);
}
.avail-check-btn:active { transform: translateY(0); }

/* Results panel */
.avail-results {
  border-top: 1px solid rgba(255,255,255,0.1);
  background: #f8faf9;
  padding: 20px 20px 24px;
}

/* Loading */
.avail-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--green-dark);
  font-size: 0.92rem;
  padding: 20px 0;
}
.avail-spinner {
  width: 22px; height: 22px;
  border: 3px solid rgba(26,60,52,0.2);
  border-top-color: var(--green-dark);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Message states */
.avail-msg {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 0.88rem;
  flex-wrap: wrap;
}
.avail-msg i { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.avail-msg strong { display: block; margin-bottom: 3px; }
.avail-msg span { display: block; }
.avail-msg-info  { background: #e8f4fd; color: #0c5460; border: 1px solid #b8d9ee; }
.avail-msg-none  { background: #fce8e8; color: #7a1a1a; border: 1px solid #f0b8b8; flex-direction: column; align-items: center; text-align: center; padding: 28px 20px; }
.avail-msg-none i { font-size: 2rem; margin: 0 0 8px; color: #c0392b; }
.avail-msg-error { background: #fff3cd; color: #7c5700; border: 1px solid #ffe082; }

/* Summary bar */
.avail-summary-bar {
  background: var(--green-dark);
  color: rgba(255,255,255,0.9);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 0.84rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}
.avail-count-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.78rem;
}
.avail-count-ok { background: rgba(40,167,69,0.25); color: #b8f5c8; }
.avail-count-no { background: rgba(220,53,69,0.25); color: #f5b8c0; }

/* Room cards grid */
.avail-rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

/* Individual room card */
.avail-room-card {
  background: #fff;
  border-radius: 12px;
  border: 1.5px solid #e2e8f0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.avail-room-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(26,60,52,0.13);
}
.avail-room-unavail {
  opacity: 0.6;
  filter: grayscale(0.3);
}
.avail-room-unavail:hover { transform: none; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }

.avail-room-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.avail-room-img-ph {
  background: linear-gradient(135deg, #e8f0ed 0%, #d0e0da 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 2.5rem;
}

.avail-room-body {
  padding: 14px 16px 8px;
  flex: 1;
}
.avail-room-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.70rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.avail-room-badge-ok { background: #d4edda; color: #155724; }
.avail-room-badge-no { background: #f8d7da; color: #721c24; }

.avail-room-name {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 5px;
}
.avail-room-desc {
  font-size: 0.80rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 8px;
}
.avail-room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.76rem;
  color: #64748b;
  margin-bottom: 5px;
}
.avail-room-meta i { color: var(--green-dark); margin-right: 3px; }
.avail-room-note {
  font-size: 0.75rem;
  color: #7c5700;
  background: #fff9e1;
  border: 1px solid #ffe082;
  border-radius: 6px;
  padding: 4px 9px;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.avail-room-footer {
  padding: 12px 16px 14px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.avail-room-price {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.1;
}
.avail-room-price span { font-size: 0.75rem; font-weight: 400; color: #64748b; }
.avail-room-total { font-size: 0.74rem; color: #64748b; margin-top: 2px; }
.avail-room-book-btn {
  display: inline-flex;
  align-items: center;
  background: var(--gold-accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 15px;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s, transform 0.15s;
  font-family: inherit;
}
.avail-room-book-btn:hover { background: #b8913a; color: #fff; transform: translateY(-1px); }
.avail-room-book-btn-disabled {
  background: #e2e8f0;
  color: #94a3b8;
  cursor: not-allowed;
  transform: none !important;
}

/* ── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .avail-form-row { gap: 10px; }
  .avail-field, .avail-field-narrow { flex: 0 0 calc(50% - 7px); }
  .avail-field-btn { flex: 1 1 100%; }
  .avail-check-btn { width: 100%; justify-content: center; }
  .avail-rooms-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .avail-field, .avail-field-narrow { flex: 1 1 100%; }
}

/* ── Welcome / About Strip ──────────────────────────────────────────────────── */
.welcome-section {
  padding: 60px 0;
  background: var(--white);
}
.welcome-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-med));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  box-shadow: var(--shadow-soft);
}
.welcome-feature {
  text-align: center;
  padding: 28px 20px;
}
.welcome-feature h5 {
  font-family: var(--font-serif);
  margin-bottom: 8px;
  font-size: 1.05rem;
}
.welcome-feature p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── Room Cards ─────────────────────────────────────────────────────────────── */
.rooms-section { padding: 60px 0; background: var(--cream); }

.room-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.room-card-image {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.room-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.room-card:hover .room-card-image img { transform: scale(1.07); }

/* Rooms listing grid cards */
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26,60,52,0.18) !important;
}
.room-card:hover .room-card-img-wrap img {
  transform: scale(1.06);
}

/* Placeholder gradient for missing images */
.room-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,0.8);
}
.placeholder-green {
  background: linear-gradient(135deg, var(--green-dark), var(--green-med));
}
.placeholder-blue {
  background: linear-gradient(135deg, #2c4a6e, #4a7c99);
}
.placeholder-gold {
  background: linear-gradient(135deg, var(--brown-warm), var(--gold-accent));
}

.room-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, var(--brown-warm), var(--gold-accent));
  color: var(--white);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.room-card-body {
  padding: 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.room-card-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.room-card-desc {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.room-card-bed {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-bottom: 14px;
}
.room-amenities-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.amenity-tag {
  background: var(--cream);
  color: var(--text-mid);
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid var(--cream-deep);
}
.room-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 26px;
  background: var(--cream);
  border-top: 1px solid var(--cream-deep);
}
.room-price {
  display: flex;
  flex-direction: column;
}
.room-price-amount {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
}
.room-price-amount span { font-size: 0.8rem; color: var(--text-mid); font-family: var(--font-sans); font-weight: 400; }
.room-price-note {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ── Room Detail Page ───────────────────────────────────────────────────────── */
.room-detail-hero {
  margin-top: 70px;
  position: relative;
  height: 500px;
  overflow: hidden;
}
.room-detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.room-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.6) 100%);
}
.room-detail-hero-title {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  text-align: center;
  color: var(--white);
}
.room-detail-hero-title h1 { color: var(--white); text-shadow: 0 2px 20px rgba(0,0,0,0.6); }

.room-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 4px;
  border-radius: var(--radius-card);
  overflow: hidden;
}
.room-gallery-main { grid-row: 1 / 3; }
.room-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  cursor: pointer;
}
.room-gallery img:hover { transform: scale(1.03); }

.amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-dark);
}
.amenity-item-icon {
  width: 32px;
  height: 32px;
  background: var(--cream);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── Booking Form ───────────────────────────────────────────────────────────── */
.booking-section { padding: 90px 0; background: var(--cream); }

.booking-card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.booking-card-header {
  background: var(--green-dark);
  padding: 28px 32px;
  color: var(--white);
}
.booking-card-header h3 { color: var(--white); font-size: 1.5rem; }
.booking-card-header p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin: 0; }
.booking-card-body { padding: 32px; }

.form-label-wood {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.form-control-wood,
.form-select-wood {
  border: 1.5px solid var(--cream-deep);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  font-family: var(--font-sans);
  transition: border-color 0.22s, box-shadow 0.22s, background 0.22s;
}
/* Modern custom chevron — replaces browser default arrow */
.form-select-wood {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%231a3c34' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  background-size: 14px 14px;
  cursor: pointer;
}
.form-select-wood:hover {
  border-color: var(--green-med);
  background-color: var(--cream);
}
.form-control-wood:focus,
.form-select-wood:focus {
  border-color: var(--green-dark);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(26,60,52,0.12);
  outline: none;
}

/* Booking summary sidebar */
.booking-summary {
  background: var(--green-dark);
  border-radius: var(--radius-card);
  padding: 28px;
  color: var(--white);
  position: sticky;
  top: 90px;
  z-index: 999; /* stay below navbar (z-index: 1000) */
}
.booking-summary h4 { color: var(--white); margin-bottom: 20px; }
.booking-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}
.booking-summary-row:last-child { border-bottom: none; }
.booking-summary-label { color: rgba(255,255,255,0.7); }
.booking-summary-value { color: var(--white); font-weight: 500; }
.booking-summary-total {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  margin-top: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  border-top: 2px solid var(--gold-accent);
}
.booking-summary-total-label { color: var(--gold-light); }
.booking-summary-total-value { color: var(--gold-accent); font-size: 1.4rem; }

/* ── Confirmation Page ──────────────────────────────────────────────────────── */
.confirmation-card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  padding: 48px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.confirmation-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #28a745, #4CAF50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
  color: var(--white);
}
.booking-ref-display {
  background: var(--cream);
  border: 2px dashed var(--cream-deep);
  border-radius: 8px;
  padding: 16px 24px;
  font-family: monospace;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 2px;
  margin: 20px 0;
}

/* ── About Section (Homepage) ───────────────────────────────────────────────── */
.about-section {
  padding: 60px 0;
  background: var(--white);
}
.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
}
.about-img-wrapper img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.about-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--green-dark);
  color: var(--white);
  padding: 16px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow-hover);
}
.about-img-badge .num { font-size: 2rem; font-weight: 700; color: var(--gold-accent); line-height: 1; }
.about-img-badge .lbl { font-size: 0.75rem; color: rgba(255,255,255,0.8); letter-spacing: 1px; }

/* ── Testimonials ───────────────────────────────────────────────────────────── */
.testimonials-section {
  padding: 60px 0;
  background: var(--green-dark);
}
.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-subtitle { color: rgba(255,255,255,0.65); }

.testimonial-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-card);
  padding: 32px;
  height: 100%;
  transition: all var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}
.testimonial-stars { color: var(--gold-accent); font-size: 1rem; margin-bottom: 16px; }
.testimonial-text {
  color: rgba(255,255,255,0.85);
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1.0rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-accent), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--green-dark);
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-name { color: var(--white); font-weight: 600; font-size: 0.95rem; }
.testimonial-location { color: rgba(255,255,255,0.5); font-size: 0.8rem; }

/* ── Nearby Attractions ─────────────────────────────────────────────────────── */
.attractions-section { padding: 60px 0; background: var(--cream); }
.attraction-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
  height: 100%;
}
.attraction-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.attraction-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-med));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.attraction-name { font-weight: 600; color: var(--green-dark); font-size: 0.95rem; }
.attraction-dist { font-size: 0.8rem; color: var(--text-light); }

/* ── Contact Section ────────────────────────────────────────────────────────── */
.contact-section { padding: 90px 0; background: var(--white); }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--green-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  flex-shrink: 0;
}
.contact-info-text { }
.contact-info-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 2px;
}
.contact-info-value {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
}

/* ── Footer ─────────────────────────────────────────────────────────────────── */
.footer {
  background: #111c18;
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.footer-brand { margin-bottom: 20px; }
.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 6px;
}
.footer-brand-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.footer h6 {
  color: var(--gold-accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.78rem;
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 18px;
}
.footer-link {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color var(--transition);
}
.footer-link:hover { color: var(--gold-light); }

.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  transition: all var(--transition);
}
.footer-social-link:hover {
  background: var(--gold-accent);
  color: var(--white);
}

.footer-bottom {
  margin-top: 40px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ── Page Header (inner pages) ──────────────────────────────────────────────── */
.page-header {
  margin-top: 70px;
  padding: 70px 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-med) 60%, #3a7a5c 100%);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-header-content { position: relative; z-index: 1; }
.page-header h1 { color: var(--white); font-size: 2.5rem; }
.page-header p { color: rgba(255,255,255,0.75); font-size: 1rem; margin-top: 8px; }
.breadcrumb-wood .breadcrumb-item { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.breadcrumb-wood .breadcrumb-item a { color: rgba(255,255,255,0.6); }
.breadcrumb-wood .breadcrumb-item a:hover { color: var(--gold-light); }
.breadcrumb-wood .breadcrumb-item.active { color: var(--gold-light); }
.breadcrumb-wood .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ── Animations ─────────────────────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}
.fade-in-up.delay-1 { animation-delay: 0.1s; }
.fade-in-up.delay-2 { animation-delay: 0.2s; }
.fade-in-up.delay-3 { animation-delay: 0.3s; }

/* Intersection Observer animation classes */
.reveal { opacity: 0; transform: translateY(18px); transition: all 0.4s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .section-title { font-size: 1.8rem; }
  .slide-caption { padding: 30px 20px 80px; }
  .hero-slideshow { height: 100vh; height: 100svh; min-height: 460px; }
}

@media (max-width: 767.98px) {
  .section-pad { padding: 60px 0; }
  .room-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .room-gallery-main { grid-column: 1 / 3; grid-row: 1; }
  .slideshow-btn { display: none; }
  .booking-card-body { padding: 20px; }
  .confirmation-card { padding: 30px 20px; }
  .room-card-footer { flex-direction: column; align-items: stretch; gap: 14px; }
  .room-card-footer .btn-gold,
  .room-card-footer .btn-wood-outline { width: 100%; text-align: center; }
  .room-detail-hero { height: 300px; }
  .slideshow-dots { bottom: 30px; }
  .slide-caption { padding: 20px 16px 60px; }
  .slide-caption-btn { flex-direction: column; gap: 10px; }
  .slide-caption-btn .btn-wood-outline,
  .slide-caption-btn .btn-gold { width: 100%; text-align: center; margin: 0; }
  .page-header { padding: 50px 0; }
  .room-img-responsive { min-height: 260px !important; }
  .about-hero-placeholder { height: 300px !important; }
}

@media (max-width: 575.98px) {
  .navbar-brand-sub { display: none; }
  .page-header h1 { font-size: 1.8rem; }
  .section-title { font-size: 1.5rem; }
  .section-pad { padding: 40px 0; }
  .hero-slideshow { height: 100vh; height: 100svh; min-height: 420px; }
  .room-gallery { grid-template-columns: 1fr; }
  .room-gallery-main { grid-column: auto; }
  .page-header { padding: 40px 0; }
  .booking-card-header { padding: 20px; }
  .btn-gold, .btn-wood, .btn-wood-outline { padding: 12px 24px; font-size: 0.9rem; }
  .room-detail-hero { height: 250px; }
  .room-detail-hero-title h1 { font-size: 1.5rem; }
  .room-img-responsive { min-height: 220px !important; }
  .about-hero-placeholder { height: 250px !important; }
}

/* ── Portrait phones / small portrait tablets ────────────────────────────────
   On phones held in portrait we lock the hero to a fixed phone-friendly
   aspect ratio (3:4) and use `object-fit: cover` throughout. This keeps
   the framing consistent across every slide — landscape photos get a
   little side-cropping, portrait photos fit almost perfectly, and the
   hero always has a predictable height that leaves room for the caption
   + CTAs without empty dark zones.

   Desktops and landscape phones/tablets keep the full-viewport `cover`
   treatment defined above.                                                   */
@media (orientation: portrait) and (max-width: 900px) {
  .hero-slideshow {
    height: auto;
    aspect-ratio: 3 / 4;       /* phone-portrait banner */
    min-height: 460px;
    max-height: 92svh;         /* never exceed the visible viewport */
  }

  /* `cover` across the board — same behaviour the site had originally, now
     applied against a consistent aspect-ratio container. */
  .slide-img {
    object-fit: cover;
    object-position: center center;
  }

  /* Slightly tighter caption so two stacked buttons don't push against the
     dots at the bottom on shorter phones. */
  .slide-caption       { padding: 22px 18px 52px; }
  .slide-caption-title { font-size: clamp(1.35rem, 5.2vw, 1.95rem); margin-bottom: 6px; }
  .slide-caption-sub   { font-size: clamp(0.82rem, 2.6vw, 0.98rem); margin-bottom: 14px; }
}

/* ═══════════════════════════════════════════════════════════════
   SIGHTSEEING PAGE
   Attraction card grid with category filter, image, distance, and 'read more'
═══════════════════════════════════════════════════════════════ */
.sight-section {
  padding: 68px 0 80px;
  background: var(--cream);
}

/* Category filter pills */
.sight-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.sight-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 18px;
  border-radius: 24px;
  border: 1.5px solid var(--cream-deep);
  background: var(--white);
  color: var(--text-mid);
  font-size: 0.83rem;
  font-weight: 500;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s, color 0.18s, box-shadow 0.18s;
}
.sight-filter-btn:hover {
  border-color: var(--green-dark);
  color: var(--green-dark);
  background: rgba(26,60,52,0.04);
}
.sight-filter-btn.active {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff;
  box-shadow: 0 3px 12px rgba(26,60,52,0.22);
}

/* Count row */
.sight-count-row {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 30px;
}
.sight-count-row span {
  font-weight: 700;
  color: var(--green-dark);
}

/* Grid */
.sight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(295px, 1fr));
  gap: 28px;
  align-items: start;
}

/* Card */
.sight-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
}
.sight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

/* Card image area */
.sight-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}
.sight-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.sight-card:hover .sight-card-img img {
  transform: scale(1.05);
}
.sight-img-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.8rem;
}

/* Category badge on image */
.sight-cat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.70rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.55px;
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
}
/* Per-category badge colours */
.sight-cat-nature      { background: rgba(26,60,52,0.82);  color: #b8ffd8; }
.sight-cat-temple      { background: rgba(158,75,0,0.82);  color: #ffe4c0; }
.sight-cat-heritage    { background: rgba(75,35,115,0.82); color: #e8d8ff; }
.sight-cat-adventure   { background: rgba(15,65,130,0.82); color: #cce4ff; }
.sight-cat-viewpoint   { background: rgba(10,80,120,0.82); color: #c8edff; }
.sight-cat-market      { background: rgba(135,95,0,0.82);  color: #fff0b8; }
.sight-cat-restaurant  { background: rgba(155,28,28,0.82); color: #ffd8d8; }
.sight-cat-other       { background: rgba(55,55,55,0.82);  color: #f0f0f0; }

/* Card body */
.sight-card-body {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.sight-distance {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--gold-accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.sight-distance i { font-size: 0.78rem; }
.sight-card-name {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  color: var(--green-dark);
  margin: 0 0 10px;
  line-height: 1.3;
}
.sight-card-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 10px;
  flex: 1;
}
.sight-long-desc {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.65;
  border-top: 1px solid var(--cream-deep);
  padding-top: 12px;
  margin-top: 4px;
  margin-bottom: 10px;
}
.sight-more-btn {
  background: none;
  border: none;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  transition: color 0.15s;
  align-self: flex-start;
}
.sight-more-btn:hover { color: var(--gold-accent); }

/* Responsive */
@media (max-width: 767px) {
  .sight-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
  .sight-card-img { height: 190px; }
}
@media (max-width: 480px) {
  .sight-grid { grid-template-columns: 1fr; }
  .sight-section { padding: 40px 0 50px; }
}

/* ═══════════════════════════════════════════════════════════════════
   WOOD SELECT — Custom Dropdown Component
   Two variants: dark (hero glass) · light (booking form)
═══════════════════════════════════════════════════════════════════ */
.wood-select-wrap {
  position: relative;
  width: 100%;
}
.wood-select-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
  user-select: none;
  text-align: left;
  border: none;
  background: none;
  outline: none;
  font-family: inherit;
  transition: border-color 0.20s, background 0.18s, box-shadow 0.20s;
}
.wood-select-val {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wood-select-arrow {
  flex-shrink: 0;
  font-size: 0.80rem;
  transition: transform 0.22s cubic-bezier(0.34, 1.3, 0.64, 1);
}
.wood-select-wrap.ws-open .wood-select-arrow {
  transform: rotate(180deg);
}

/* Dropdown panel */
.wood-select-panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 1050;
  list-style: none;
  margin: 0;
  padding: 5px 0;
  border-radius: 12px;
  opacity: 0;
  transform: translateY(-8px) scaleY(0.95);
  transform-origin: top center;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.22s cubic-bezier(0.34, 1.3, 0.64, 1);
  max-height: 270px;
  overflow-y: auto;
  scrollbar-width: thin;
}
.wood-select-wrap.ws-open .wood-select-panel {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.wood-select-option {
  padding: 10px 15px;
  cursor: pointer;
  font-size: 0.88rem;
  line-height: 1.4;
  transition: background 0.12s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

/* ── Dark variant — hero availability checker ───────────────────── */
.wood-select-dark .wood-select-trigger {
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  color: #fff;
  padding: 10px 13px;
  font-size: 0.88rem;
}
.wood-select-dark .wood-select-trigger:hover,
.wood-select-dark.ws-open .wood-select-trigger {
  border-color: var(--gold-accent);
  background: rgba(255,255,255,0.16);
  box-shadow: 0 0 0 3px rgba(201,168,60,0.22);
}
.wood-select-dark .wood-select-arrow { color: rgba(255,255,255,0.6); }
.wood-select-dark.ws-open .wood-select-arrow { color: var(--gold-accent); }
.wood-select-dark .wood-select-panel {
  background: rgba(10,28,22,0.97);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 20px 50px rgba(0,0,0,0.55), 0 4px 14px rgba(0,0,0,0.3);
}
.wood-select-dark .wood-select-option { color: rgba(255,255,255,0.85); }
.wood-select-dark .wood-select-option:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.wood-select-dark .wood-select-option.ws-selected {
  background: rgba(201,168,60,0.20);
  color: var(--gold-accent);
  font-weight: 600;
}
.wood-select-dark .wood-select-option.ws-selected::after {
  content: '✓';
  font-size: 0.80rem;
  color: var(--gold-accent);
  flex-shrink: 0;
  margin-left: auto;
}
.wood-select-dark .wood-select-panel::-webkit-scrollbar { width: 4px; }
.wood-select-dark .wood-select-panel::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.18);
  border-radius: 4px;
}

/* ── Light variant — booking form ──────────────────────────────── */
.wood-select-light .wood-select-trigger {
  background: var(--white);
  border: 1.5px solid var(--cream-deep);
  border-radius: 10px;
  color: var(--text-dark);
  padding: 11px 14px;
  font-size: 0.95rem;
}
.wood-select-light .wood-select-trigger:hover {
  border-color: var(--green-med);
  background: var(--cream);
}
.wood-select-light.ws-open .wood-select-trigger {
  border-color: var(--green-dark);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,60,52,0.12);
}
.wood-select-light .wood-select-arrow { color: var(--green-dark); }
.wood-select-light .wood-select-panel {
  background: var(--white);
  border: 1.5px solid rgba(26,60,52,0.14);
  box-shadow: 0 18px 50px rgba(26,60,52,0.16), 0 4px 16px rgba(26,60,52,0.08);
}
.wood-select-light .wood-select-option {
  color: var(--text-dark);
  border-bottom: 1px solid rgba(26,60,52,0.05);
}
.wood-select-light .wood-select-option:last-child { border-bottom: none; }
.wood-select-light .wood-select-option:hover {
  background: rgba(26,60,52,0.05);
  color: var(--green-dark);
}
.wood-select-light .wood-select-option.ws-selected {
  background: rgba(26,60,52,0.07);
  color: var(--green-dark);
  font-weight: 600;
}
.wood-select-light .wood-select-option.ws-selected::before {
  content: '✓';
  font-size: 0.82rem;
  color: var(--green-dark);
  flex-shrink: 0;
  order: -1;
}
/* Price badge inside booking option */
.ws-opt-price {
  font-size: 0.77rem;
  font-weight: 600;
  color: var(--green-med);
  background: rgba(45,106,79,0.10);
  padding: 2px 9px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.1px;
}
.wood-select-option.ws-selected .ws-opt-price {
  background: rgba(26,60,52,0.13);
  color: var(--green-dark);
}
.wood-select-light .wood-select-panel::-webkit-scrollbar { width: 4px; }
.wood-select-light .wood-select-panel::-webkit-scrollbar-thumb {
  background: rgba(26,60,52,0.18);
  border-radius: 4px;
}

/* ═══════════════════════════════════════════════════════════════
   GALLERY PAGE — Animated Mosaic
════════════════════════════════════════════════════════════════ */

/* Page header variant */
.gallery-page-header {
  background: linear-gradient(135deg, #060f0b 0%, #0d1f18 35%, var(--green-dark) 75%, var(--green-med) 100%);
  border-bottom: 1px solid rgba(201,168,60,0.18);
}

/* Photo count pill inside the header */
.gallery-count-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 6px 18px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 30px;
  color: rgba(255,255,255,0.80);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  backdrop-filter: blur(6px);
}
.gallery-count-pill i { color: var(--gold-light); }

/* ── Section ── */
.gallery-section {
  background: #0d1f18;
  padding: 0;
  min-height: 50vh;
}

/* ── Outer container ── */
.gallery-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 32px 10px 88px;
}

/* ── Mosaic grid — 4 equal columns, auto row height ── */
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 8px;
  grid-auto-flow: dense;
}

/* Tile size variants (assigned in PHP) */
.gallery-tile.tile-featured { grid-column: span 2; grid-row: span 2; }
.gallery-tile.tile-tall     { grid-column: span 1; grid-row: span 2; }
.gallery-tile.tile-wide     { grid-column: span 2; grid-row: span 1; }
.gallery-tile.tile-regular  { /* 1 × 1 — default */ }

/* ── Base tile — starts hidden for scroll-reveal ── */
.gallery-tile {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: #1a2e26;
  opacity: 0;
  transform: scale(0.92) translateY(28px);
  transition:
    opacity   0.68s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.68s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.30s ease;
  transition-delay: var(--td, 0ms);
}

/* Revealed state — toggled by IntersectionObserver */
.gallery-tile.tile-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Hover lift + gold rim */
.gallery-tile:hover {
  box-shadow: 0 18px 60px rgba(0,0,0,0.55), 0 0 0 1.5px rgba(201,168,60,0.45);
  z-index: 2;
  transition:
    opacity   0.68s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.68s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.22s ease;
}

/* Inner wrapper keeps overflow clipped */
.gallery-tile-inner {
  width: 100%;
  height: 100%;
  position: relative;
}

/* ── Featured tile: shimmer sweep + shadow pulse ── */
.gallery-tile.tile-featured.tile-visible::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 55%;
  left: -75%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255,255,255,0.055) 50%,
    transparent 80%
  );
  animation: galleryShimmer 7s ease-in-out infinite 1s;
  pointer-events: none;
  z-index: 3;
}
@keyframes galleryShimmer {
  0%   { left: -75%; }
  45%  { left: 120%; }
  100% { left: 120%; }
}

.gallery-tile.tile-featured.tile-visible {
  animation: featuredGlow 6s ease-in-out infinite;
}
.gallery-tile.tile-featured.tile-visible:hover {
  animation: none;
}
@keyframes featuredGlow {
  0%,100% { box-shadow: 0 4px 28px rgba(0,0,0,0.35); }
  50%     { box-shadow: 0 6px 44px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,60,0.15); }
}

/* ── Image ── */
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.45s ease;
  will-change: transform;
}
/* CSS hover scale — JS mouse-parallax overrides this while mouse moves */
.gallery-tile:hover img {
  transform: scale(1.08);
  filter: brightness(0.80);
}

/* ── Overlay gradient ── */
.gallery-tile-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px 14px;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0)      0%,
    rgba(6,18,12,0)   45%,
    rgba(6,18,12,0.82) 100%
  );
  opacity: 0;
  transition: opacity 0.32s ease;
  z-index: 2;
}
.gallery-tile:hover .gallery-tile-overlay { opacity: 1; }

/* ── Expand icon (top) — pops in with spring ── */
.gallery-tile-actions {
  align-self: flex-end;
  opacity: 0;
  transform: scale(0.6) rotate(10deg);
  transition:
    opacity   0.35s ease 0.04s,
    transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1) 0.04s;
}
.gallery-tile:hover .gallery-tile-actions {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}
.gallery-tile-btn {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.14);
  border: 1.5px solid rgba(255,255,255,0.38);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.82rem;
  backdrop-filter: blur(6px);
  transition: background 0.2s, border-color 0.2s;
}
.gallery-tile-btn:hover {
  background: rgba(201,168,60,0.55);
  border-color: var(--gold-accent);
}

/* ── Caption (bottom) — slides up ── */
.gallery-tile-caption {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.92);
  font-size: 0.85rem;
  font-weight: 500;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity   0.34s ease 0.08s,
    transform 0.34s cubic-bezier(0.23, 1, 0.32, 1) 0.08s;
  line-height: 1.3;
}
.gallery-tile:hover .gallery-tile-caption {
  opacity: 1;
  transform: translateY(0);
}
.gallery-tile-caption i {
  color: var(--gold-light);
  font-size: 0.78rem;
  flex-shrink: 0;
}

/* ══ LIGHTBOX ═══════════════════════════════════════════════════ */
.gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(3, 9, 7, 0.96);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 58px 90px 84px;
}
.gallery-lightbox.active {
  display: flex;
  animation: lbFadeIn 0.28s ease;
}
@keyframes lbFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Main image */
.gallery-lightbox-img {
  max-width: 88vw;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.75);
  transition: opacity 0.20s ease, transform 0.20s ease;
}
/* Fade-out state during image swap */
.gallery-lightbox-img.lb-changing {
  opacity: 0;
  transform: scale(0.97);
}

/* Counter "3 / 12" */
.gallery-lightbox-counter {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.45);
  font-size: 0.77rem;
  letter-spacing: 2.5px;
  user-select: none;
  pointer-events: none;
  font-family: var(--font-sans);
}

/* Close button */
.gallery-lightbox-close {
  position: absolute;
  top: 14px;
  right: 16px;
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  cursor: pointer;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.gallery-lightbox-close:hover {
  background: rgba(255,255,255,0.16);
  color: #fff;
}

/* Caption pill */
.gallery-lightbox-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  text-align: center;
  max-width: 540px;
  padding: 7px 22px;
  background: rgba(0,0,0,0.42);
  border-radius: 24px;
  backdrop-filter: blur(8px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
}
.gallery-lightbox-caption:empty { display: none; }

/* Prev / Next arrows */
.gallery-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.09);
  border: 1.5px solid rgba(255,255,255,0.20);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.20s, border-color 0.20s;
  backdrop-filter: blur(6px);
}
.gallery-lightbox-nav:hover {
  background: rgba(201,168,60,0.5);
  border-color: var(--gold-accent);
}
.gallery-lightbox-nav:active { transform: translateY(-50%) scale(0.91); }
.gallery-lightbox-prev { left: 20px; }
.gallery-lightbox-next { right: 20px; }

/* ── Empty state (dark-themed) ── */
.gallery-empty {
  text-align: center;
  padding: 100px 20px;
}
.gallery-empty-icon { font-size: 5rem; margin-bottom: 24px; }
.gallery-empty h3 {
  font-family: var(--font-serif);
  color: rgba(255,255,255,0.75);
  margin-bottom: 12px;
}
.gallery-empty p { color: rgba(255,255,255,0.45); max-width: 400px; margin: 0 auto 28px; }

/* ── Responsive breakpoints ── */
@media (max-width: 1199px) {
  .gallery-mosaic { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
}
@media (max-width: 767px) {
  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 170px;
    gap: 6px;
  }
  .gallery-tile.tile-featured { grid-column: span 2; grid-row: span 2; }
  .gallery-tile.tile-wide     { grid-column: span 2; }
  .gallery-lightbox { padding: 50px 10px 72px; }
  .gallery-lightbox-nav { display: none; }
  .gallery-lightbox-img { max-width: 96vw; max-height: 76vh; }
}
@media (max-width: 480px) {
  .gallery-mosaic { grid-auto-rows: 148px; gap: 5px; }
  .gallery-container { padding: 18px 6px 60px; }
  .gallery-lightbox-caption { font-size: 0.8rem; padding: 6px 14px; }
}

/* ═══════════════════════════════════════════════════════════════
   GALLERY — Section Headers & Filter Tabs
════════════════════════════════════════════════════════════════ */

/* ── Sticky filter bar ── */
.gallery-filters-wrap {
  position: sticky;
  top: 68px;
  z-index: 200;
  background: rgba(9, 22, 17, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 12px 0;
}
.gallery-filters {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  overflow-x: auto;
  scrollbar-width: none;
}
.gallery-filters::-webkit-scrollbar { display: none; }

.gallery-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 18px;
  border: 1.5px solid rgba(255,255,255,0.13);
  border-radius: 30px;
  background: transparent;
  color: rgba(255,255,255,0.58);
  font-size: 0.82rem;
  font-weight: 500;
  font-family: var(--font-sans);
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.22s, border-color 0.22s, background 0.22s, box-shadow 0.22s;
}
.gallery-filter-btn i { font-size: 0.78rem; }
.gallery-filter-btn:hover {
  border-color: rgba(255,255,255,0.30);
  color: rgba(255,255,255,0.88);
}
.gallery-filter-btn.active {
  background: rgba(201,168,60,0.18);
  border-color: rgba(201,168,60,0.60);
  color: var(--gold-light);
  box-shadow: 0 0 0 1px rgba(201,168,60,0.18) inset;
}
.gallery-filter-count {
  font-size: 0.70rem;
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.55);
  padding: 1px 8px;
  border-radius: 20px;
  font-weight: 600;
  transition: background 0.22s, color 0.22s;
}
.gallery-filter-btn.active .gallery-filter-count {
  background: rgba(201,168,60,0.25);
  color: var(--gold-light);
}

/* ── Section block ── */
.gallery-section-block {
  margin-bottom: 56px;
}
.gallery-section-block.section-hidden {
  display: none;
}

/* ── Section header ── */
.gallery-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  gap: 16px;
  flex-wrap: wrap;
}
.gallery-section-header-left {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}
.gallery-section-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(201,168,60,0.12);
  border: 1px solid rgba(201,168,60,0.28);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-accent);
  font-size: 1.05rem;
  margin-top: 3px;
}
.gallery-section-title {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  color: #fff;
  margin: 0 0 4px;
  line-height: 1.2;
  font-weight: 400;
}
.gallery-section-desc {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
  max-width: 420px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gallery-section-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 4px;
  flex-shrink: 0;
}
.gallery-section-count {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.38);
  background: rgba(255,255,255,0.05);
  padding: 4px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.07);
  white-space: nowrap;
}
.gallery-section-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.80rem;
  font-family: var(--font-sans);
  color: rgba(201,168,60,0.80);
  border: 1.5px solid rgba(201,168,60,0.28);
  border-radius: 20px;
  padding: 5px 16px;
  text-decoration: none;
  transition: background 0.22s, border-color 0.22s, color 0.22s;
  white-space: nowrap;
}
.gallery-section-link:hover {
  background: rgba(201,168,60,0.12);
  border-color: rgba(201,168,60,0.55);
  color: var(--gold-light);
}
.gallery-section-link i { font-size: 0.78rem; }

/* Thin decorative rule below section header */
.gallery-section-rule {
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(201,168,60,0.45) 0%,
    rgba(201,168,60,0.10) 40%,
    transparent 80%
  );
  margin-bottom: 14px;
}

/* Separator between sections */
.gallery-section-sep {
  height: 1px;
  background: rgba(255,255,255,0.05);
  margin: 8px 0 56px;
}

/* ── Small-section mosaic layouts ── */

/* 1 image — full-width strip */
.gallery-mosaic-solo {
  display: grid;
  grid-template-columns: 1fr;
  height: 300px;
}
/* 2 images — side by side */
.gallery-mosaic-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 290px;
  gap: 8px;
}
/* 3 images — tall left, two stacked right */
.gallery-mosaic-trio {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 1fr 1fr;
  height: 380px;
  gap: 8px;
}
.gallery-mosaic-trio .gallery-tile:first-child {
  grid-row: span 2;
}

/* All small-layout tiles fill their cell */
.gallery-mosaic-solo .gallery-tile,
.gallery-mosaic-duo .gallery-tile,
.gallery-mosaic-trio .gallery-tile {
  grid-column: auto;
  grid-row: auto;
  height: 100%;
}

/* ── Responsive: filters + section headers ── */
@media (max-width: 991px) {
  .gallery-section-title { font-size: 1.35rem; }
}
@media (max-width: 767px) {
  .gallery-filters-wrap { top: 58px; padding: 10px 0; }
  .gallery-filter-btn { padding: 6px 14px; font-size: 0.79rem; }
  .gallery-section-header { gap: 10px; }
  .gallery-section-title { font-size: 1.2rem; }
  .gallery-section-link { font-size: 0.76rem; padding: 4px 12px; }
  .gallery-mosaic-trio { height: 280px; }
  .gallery-mosaic-duo { height: 210px; }
  .gallery-mosaic-solo { height: 230px; }
}
@media (max-width: 480px) {
  .gallery-mosaic-trio {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    height: auto;
  }
  .gallery-mosaic-trio .gallery-tile:first-child { grid-row: auto; }
  .gallery-mosaic-trio .gallery-tile { height: 160px; }
  .gallery-mosaic-duo .gallery-tile { height: 150px; }
  .gallery-mosaic-duo { height: auto; }
  .gallery-mosaic-solo { height: 200px; }
  .gallery-section-header-right { width: 100%; }
  .gallery-section-desc { display: none; }
}
