/* ===== ESATITUDE HOTEL — SHARED STYLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --gold: #C9A96E;
  --gold-light: #E8D5B0;
  --gold-dark: #8B6914;
  --navy: #1A2332;
  --navy-light: #2C3E55;
  --cream: #FAF8F4;
  --cream-dark: #F2EEE6;
  --text: #2C2C2A;
  --text-muted: #6B6560;
  --white: #FFFFFF;
}
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; font-weight: 300; color: var(--text); background: var(--cream); font-size: 16px; line-height: 1.7; }

/* LANG */
#lang-switcher { position: fixed; top: 18px; right: 24px; z-index: 1000; display: flex; gap: 6px; }
.lang-btn { background: rgba(26,35,50,0.85); color: var(--gold-light); border: 1px solid rgba(201,169,110,0.4); padding: 5px 14px; font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: all 0.2s; border-radius: 2px; }
.lang-btn:hover, .lang-btn.active { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* HEADER */
header { position: sticky; top: 0; z-index: 900; background: rgba(26,35,50,0.97); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: space-between; padding: 0 40px; height: 64px; border-bottom: 1px solid rgba(201,169,110,0.25); }
.logo-wrap { display: flex; flex-direction: column; gap: 0; text-decoration: none; }
.logo-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--gold-light); letter-spacing: 0.04em; line-height: 1.1; }
.logo-stars { color: var(--gold); font-size: 10px; letter-spacing: 0.25em; }
nav { display: flex; gap: 28px; align-items: center; }
nav a { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(232,213,176,0.75); text-decoration: none; transition: color 0.2s; }
nav a:hover, nav a.active { color: var(--gold); }
.btn-nav { background: var(--gold) !important; color: var(--navy) !important; padding: 10px 24px; font-weight: 500; border-radius: 2px; }
.btn-nav:hover { background: var(--gold-light) !important; }

/* PAGE HERO (inner pages) */
.page-hero { position: relative; height: 52vh; min-height: 360px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(26,35,50,0.4), rgba(26,35,50,0.7)); }
.page-hero-content { position: relative; z-index: 2; text-align: center; color: var(--white); padding: 0 24px; animation: fadeUp 0.9s ease 0.2s both; }
.page-hero-eyebrow { font-size: 11px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.page-hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 6vw, 68px); font-weight: 300; line-height: 1.1; }
.page-hero-sub { font-family: 'Cormorant Garamond', serif; font-size: clamp(16px, 2.5vw, 22px); font-style: italic; color: var(--gold-light); margin-top: 10px; }
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }

/* BREADCRUMB */
.breadcrumb { background: var(--navy); padding: 12px 40px; }
.breadcrumb-inner { max-width: 1100px; margin: 0 auto; display: flex; gap: 8px; align-items: center; font-size: 12px; letter-spacing: 0.1em; }
.breadcrumb a { color: rgba(232,213,176,0.55); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }
.breadcrumb-sep { color: rgba(232,213,176,0.3); }

/* SECTIONS */
section { padding: 88px 40px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 11px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: block; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 4vw, 48px); font-weight: 300; line-height: 1.15; margin-bottom: 20px; color: var(--navy); }
.section-divider { width: 56px; height: 1px; background: var(--gold); margin-bottom: 28px; }
.section-text { color: var(--text-muted); font-size: 16px; line-height: 1.85; max-width: 640px; }
.section-text + .section-text { margin-top: 16px; }
.section-text.wide { max-width: none; }

/* BUTTONS */
.btn-gold { display: inline-block; background: var(--gold); color: var(--navy); border: none; padding: 14px 44px; font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer; text-decoration: none; transition: all 0.25s; border-radius: 2px; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-navy { display: inline-block; background: var(--navy); color: var(--gold-light); border: none; padding: 14px 44px; font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer; text-decoration: none; transition: all 0.25s; border-radius: 2px; }
.btn-navy:hover { background: var(--gold-dark); transform: translateY(-1px); }
.btn-outline { display: inline-block; background: transparent; color: var(--navy); border: 1.5px solid var(--gold); padding: 13px 44px; font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer; text-decoration: none; transition: all 0.25s; border-radius: 2px; }
.btn-outline:hover { background: var(--gold); color: var(--navy); }

/* CTA STRIP */
.cta-strip { background: var(--gold); padding: 72px 40px; text-align: center; }
.cta-strip .section-label { color: var(--navy); opacity: 0.65; }
.cta-strip .section-title { color: var(--navy); }
.cta-strip .section-text { color: rgba(26,35,50,0.65); margin: 0 auto 36px; }

/* FOOTER */
footer { background: #0F1923; color: rgba(232,213,176,0.5); padding: 52px 40px 32px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 36px; border-bottom: 1px solid rgba(201,169,110,0.15); }
.footer-brand .logo-name { font-size: 26px; color: var(--gold-light); }
.footer-brand p { font-size: 13px; line-height: 1.8; margin-top: 10px; }
.footer-col h4 { font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; font-size: 14px; color: rgba(232,213,176,0.55); text-decoration: none; margin-bottom: 7px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { max-width: 1100px; margin: 24px auto 0; display: flex; justify-content: space-between; font-size: 12px; }

/* LIGHTBOX */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 2px; }
.lightbox-close { position: fixed; top: 24px; right: 32px; color: var(--gold-light); font-size: 32px; cursor: pointer; background: none; border: none; z-index: 2001; }
.lightbox-nav { position: fixed; top: 50%; transform: translateY(-50%); color: var(--gold-light); font-size: 36px; cursor: pointer; background: rgba(26,35,50,0.5); border: none; padding: 8px 16px; z-index: 2001; }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* RESPONSIVE */
@media (max-width: 768px) {
  header { padding: 0 20px; }
  nav { display: none; }
  section { padding: 56px 20px; }
  .breadcrumb { padding: 10px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}
