/* ============================================================
   PARFUM D'EMBRUNS — Main Stylesheet
   Coastal marine theme | FR/EN bilingual support
   ============================================================ */

/* --- CSS Variables --- */
:root {
  --navy:        #1B3A5C;
  --navy-light:  #2E5484;
  --blue:        #3A7CA5;
  --sky:         #BDD5EA;
  --sand:        #F2E3C6;
  --cream:       #FDFAF6;
  --white:       #FFFFFF;
  --gold:        #C9A84C;
  --text-dark:   #1A2540;
  --text-mid:    #4A5568;
  --text-light:  #718096;
  --border:      rgba(27, 58, 92, 0.15);
  --shadow:      0 4px 24px rgba(27, 58, 92, 0.10);
  --shadow-lg:   0 8px 40px rgba(27, 58, 92, 0.18);
  --radius:      8px;
  --radius-lg:   16px;
  --transition:  0.3s ease;
  --max-w:       1200px;
  --header-h:    74px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.75;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Bilingual system: CSS-driven show/hide --- */
body.lang-en .t-fr { display: none !important; }
body.lang-fr .t-en { display: none !important; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
p  { line-height: 1.8; }

/* --- Container --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Utility --- */
.center { text-align: center; }

/* --- Fade-in animation --- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.7);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover {
  background: var(--sand);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section { padding: 5rem 0; }
.section-header { margin-bottom: 3rem; }
.section-header.center { text-align: center; }

.section-label {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.6rem;
}
.section-title { margin-bottom: 1rem; }
.section-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 580px;
  margin: 0 auto;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: transparent;
  transition: box-shadow var(--transition);
}
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(253, 250, 246, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity var(--transition);
  z-index: -1;
  pointer-events: none;
}
.site-header.scrolled::before {
  opacity: 1;
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(27, 58, 92, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  z-index: 1001;
  flex-shrink: 0;
}
.logo-wave {
  font-size: 1.5rem;
  color: var(--sky);
  line-height: 1;
  transition: color var(--transition);
}
.site-header.scrolled .logo-wave { color: var(--blue); }
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  font-style: italic;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.site-header.scrolled .logo-text { color: var(--navy); }

/* Main nav */
.main-nav ul {
  display: flex;
  gap: 0.2rem;
  align-items: center;
}
.nav-link {
  display: block;
  padding: 0.4rem 0.8rem;
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.9);
  border-radius: 50px;
  transition: var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
}
.site-header.scrolled .nav-link { color: var(--text-dark); }
.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active {
  color: var(--navy);
  background: var(--sky);
}

/* Header right-side actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Language toggle */
.lang-toggle {
  background: none;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  padding: 0.28rem 0.85rem;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.9);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.lang-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  color: var(--white);
}
.site-header.scrolled .lang-toggle {
  color: var(--navy);
  border-color: var(--border);
}
.site-header.scrolled .lang-toggle:hover {
  background: var(--sky);
  border-color: var(--blue);
}
.lang-sep { opacity: 0.4; }

/* Highlight active language in toggle */
.lang-toggle .lang-code { opacity: 0.45; transition: opacity var(--transition); }
.lang-toggle .lang-code.active { opacity: 1; }

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.site-header.scrolled .hamburger span { background: var(--navy); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO (homepage)
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(27, 58, 92, 0.30) 0%,
    rgba(27, 58, 92, 0.52) 50%,
    rgba(27, 58, 92, 0.70) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 1.5rem;
  max-width: 800px;
}
.hero-tagline {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 1rem;
}
.hero-title {
  color: var(--white);
  font-style: italic;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
  margin-bottom: 0.75rem;
}
.hero-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 2.5rem;
  letter-spacing: 0.1em;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 13px;
}
.scroll-hint::after {
  content: '';
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 2px;
  animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { top: 7px; opacity: 1; }
  60% { top: 18px; opacity: 0.2; }
}

/* Wave divider (hero → first section) */
.wave-divider {
  line-height: 0;
  overflow: hidden;
  margin-top: -2px;
}
.wave-divider svg { width: 100%; display: block; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  height: 42vh;
  min-height: 280px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--header-h);
}
.page-hero .hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero .hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.page-hero .hero-overlay {
  position: absolute; inset: 0;
  background: rgba(27, 58, 92, 0.52);
}
.page-hero-content {
  position: relative; z-index: 2;
  text-align: center; color: var(--white);
  padding: 0 1.5rem;
}
.page-hero-content h1 {
  color: var(--white);
  font-style: italic;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.page-hero-content p {
  color: rgba(255, 255, 255, 0.82);
  margin-top: 0.5rem;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.section-about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-text .section-label { display: block; }
.about-text .section-title { margin-bottom: 1.25rem; }
.about-text p { color: var(--text-mid); margin-bottom: 1rem; }
.about-text .btn { margin-top: 1.25rem; }

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.65s ease;
}
.about-image:hover img { transform: scale(1.04); }

.label-badge {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.6rem 1.1rem;
  box-shadow: var(--shadow);
  text-align: center;
  line-height: 1.3;
}
.label-badge small {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
}
.label-badge strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 600;
}

/* ============================================================
   ROOMS PREVIEW (homepage)
   ============================================================ */
.section-rooms-preview {
  background: var(--sand);
}
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.room-card-img {
  overflow: hidden;
  height: 230px;
}
.room-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.room-card:hover .room-card-img img { transform: scale(1.06); }
.room-card-body {
  padding: 1.25rem 1.4rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.room-card-title {
  font-size: 1.25rem;
  color: var(--navy);
  font-weight: 400;
}
.room-card-cta {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}
.room-card-cta::after { content: ' →'; }

/* ============================================================
   ACTIVITIES PREVIEW (homepage)
   ============================================================ */
.section-activities { background: var(--cream); }
.activities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.activity-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
  box-shadow: var(--shadow);
}
.activity-card-img {
  position: absolute; inset: 0;
}
.activity-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}
.activity-card:hover .activity-card-img img { transform: scale(1.08); }
.activity-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(27, 58, 92, 0.88) 0%, transparent 100%);
  color: var(--white);
}
.activity-card-body h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.activity-card-body p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.4;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.section-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 5rem 1.5rem;
  text-align: center;
}
.section-cta h2 { color: var(--white); margin-bottom: 1rem; }
.section-cta p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   ROOMS PAGE — full room entries
   ============================================================ */
.rooms-list { background: var(--cream); padding: 5rem 0; }

.room-entry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}
.room-entry:last-child { border-bottom: none; }
.room-entry.reverse .room-gallery { order: 2; }
.room-entry.reverse .room-info   { order: 1; }

.room-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.room-gallery-main {
  grid-column: 1 / -1;
  height: 270px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}
.room-gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}
.room-gallery-main:hover img { transform: scale(1.04); }
.room-gallery-thumb {
  height: 135px;
  overflow: hidden;
  border-radius: 0 0 var(--radius) var(--radius);
}
.room-gallery-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.room-gallery-thumb:hover img { transform: scale(1.07); }

.room-info .section-label { display: block; margin-bottom: 0.4rem; }
.room-info h2 { margin-bottom: 1rem; }
.room-info p { color: var(--text-mid); margin-bottom: 0.85rem; }

.room-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0 1.5rem;
}
.room-tag {
  background: var(--sky);
  color: var(--navy);
  border-radius: 50px;
  padding: 0.28rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ============================================================
   ALENTOURS PAGE
   ============================================================ */
.alentours-block { padding: 5rem 0; background: var(--cream); }
.alentours-block:nth-child(even) { background: var(--sand); }

.alentours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.alentours-grid.flip .alentours-images { order: 2; }
.alentours-grid.flip .alentours-text   { order: 1; }

.alentours-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
.alentours-images img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.55s ease;
}
.alentours-images img:first-child {
  grid-column: 1 / -1;
  height: 250px;
}
.alentours-images img:hover { transform: scale(1.03); }

.alentours-text h2 { margin-bottom: 1rem; }
.alentours-text p { color: var(--text-mid); margin-bottom: 0.85rem; }

/* ============================================================
   RESERVATIONS PAGE
   ============================================================ */
.reservations-content { background: var(--cream); padding: 5rem 0; }
.reservation-intro {
  max-width: 680px;
  margin: 0 auto 3rem;
  text-align: center;
}
.reservation-intro h2 { margin-bottom: 1rem; }
.reservation-intro p { color: var(--text-mid); font-size: 1.05rem; }

.calendar-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  box-shadow: var(--shadow);
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px dashed var(--border);
  margin-bottom: 3rem;
}
.calendar-placeholder-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.calendar-placeholder h3 { color: var(--navy); margin-bottom: 0.75rem; }
.calendar-placeholder p { color: var(--text-mid); max-width: 460px; }

.booking-cta-band {
  background: var(--sand);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
}
.booking-cta-band h3 { margin-bottom: 0.75rem; }
.booking-cta-band p { color: var(--text-mid); margin-bottom: 1.5rem; }
.booking-options {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-content { background: var(--cream); padding: 5rem 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-info > p { color: var(--text-mid); margin-bottom: 2rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.detail-icon {
  width: 42px; height: 42px;
  background: var(--sky);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.detail-text h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.2rem;
}
.detail-text p, .detail-text a {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.5;
}
.detail-text a:hover { color: var(--navy); }

/* Contact form */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form-card h3 { margin-bottom: 1.5rem; }

.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color var(--transition), background var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
}
.form-group textarea { height: 130px; resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.75rem;
  text-align: center;
}
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--navy);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.footer-brand-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--sky);
  margin-bottom: 0.75rem;
}
.footer-brand p { font-size: 0.86rem; line-height: 1.8; }

.footer-col h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 0.45rem; }
.footer-col a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-col p { font-size: 0.88rem; margin-bottom: 0.45rem; }

.footer-bottom {
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}

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

/* Zoom cursor on all gallery images */
[data-gallery] img {
  cursor: zoom-in;
}

/* Full-screen overlay */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(10, 18, 36, 0.95);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox.open {
  display: flex;
}

/* Image container */
.lightbox-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 92vw;
  max-height: 90vh;
}
.lightbox-img {
  max-width: 92vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.6);
  user-select: none;
  transition: opacity 0.18s ease;
}

/* Close button */
.lightbox-close {
  position: fixed;
  top: 1.1rem;
  right: 1.1rem;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  z-index: 9002;
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.26);
}

/* Prev / Next navigation arrows */
.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  z-index: 9001;
}
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.26);
}
.lightbox-nav.hidden {
  display: none;
}
.lightbox-prev { left: 1.1rem; }
.lightbox-next { right: 1.1rem; }

/* Image counter (e.g. "2 / 3") */
.lightbox-counter {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 0.32rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
  .lightbox-nav  { width: 40px; height: 40px; font-size: 1.2rem; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hamburger { display: flex; }

  .main-nav {
    position: fixed;
    inset: 0;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
    z-index: 999;
  }
  .main-nav.open {
    opacity: 1;
    pointer-events: all;
  }
  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .nav-link {
    font-size: 1.6rem !important;
    color: var(--white) !important;
    padding: 0.5rem 2rem !important;
    background: none !important;
  }
  .nav-link:hover, .nav-link.active {
    background: rgba(255, 255, 255, 0.12) !important;
    color: var(--white) !important;
  }

  .about-grid,
  .contact-grid,
  .alentours-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .alentours-grid.flip .alentours-images,
  .alentours-grid.flip .alentours-text { order: unset; }

  .room-entry { grid-template-columns: 1fr; gap: 2rem; }
  .room-entry.reverse .room-gallery,
  .room-entry.reverse .room-info { order: unset; }

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

  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
  :root { --header-h: 64px; }

  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 280px; }

  .rooms-grid { grid-template-columns: 1fr; }
  .activities-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .booking-options { flex-direction: column; align-items: center; }

  .section { padding: 3.5rem 0; }
  .room-entry { padding: 3rem 0; }
}
