/* ════════════════════════════════════════════
   RESET & BASE
════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  color: #2A2318;
  background: #FFFFFF;
  line-height: 1.75;
}

/* ════════════════════════════════════════════
   LANGUAGE TOGGLE
════════════════════════════════════════════ */
.en-text { display: none; }
.fr-text { display: inline; }

body.lang-en .fr-text { display: none; }
body.lang-en .en-text { display: inline; }

/* ════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3.5rem;
  background: #F5EDDF;
  border-bottom: 1px solid rgba(42, 35, 24, 0.07);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #2A2318;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-tabs {
  display: flex;
  gap: 2.8rem;
}

.tab-btn {
  background: none;
  border: none;
  border-bottom: 1px solid transparent;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6B6055;
  padding: 0.25rem 0;
  transition: color 0.2s, border-color 0.2s;
}

.tab-btn:hover,
.tab-btn.active {
  color: #2A2318;
  border-bottom-color: #2A2318;
}

.lang-btn {
  background: none;
  border: 1px solid rgba(107, 96, 85, 0.5);
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: #6B6055;
  padding: 0.28rem 0.75rem;
  transition: color 0.2s, border-color 0.2s;
}

.lang-btn:hover {
  color: #2A2318;
  border-color: #2A2318;
}

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 65vh;
  min-height: 420px;
  background: #E8DDD0 url('bauduen-3.jpg') center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30, 22, 12, 0.28);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #FFFFFF;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.hero-pre {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 0.4rem;
}

.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 5.8rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.hero-sub {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 0.2rem;
  margin-bottom: 1.8rem;
}

.cta-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: #FFFFFF;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.95rem 2.6rem;
  transition: background 0.25s;
}

.cta-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* ════════════════════════════════════════════
   SECTION HEADER (shared)
════════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.06em;
  color: #2A2318;
  margin-bottom: 1rem;
}

.section-intro {
  font-size: 0.9rem;
  color: #6B6055;
  letter-spacing: 0.04em;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ════════════════════════════════════════════
   TAB PANELS
════════════════════════════════════════════ */
.tab-content {
  min-height: 60vh;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* ════════════════════════════════════════════
   TAB 1 — PROPERTIES
════════════════════════════════════════════ */
#tab-properties {
  padding: 5rem 3.5rem;
}

#tab-properties .section-header {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.superhote-wrapper {
  width: 100%;
  background: #F5EDDF;
  margin-top: 1rem;
}

.superhote-wrapper iframe {
  width: 100%;
  height: 820px;
  border: none;
  display: block;
}

.iframe-fallback {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.85rem;
  color: #6B6055;
}

.iframe-fallback a {
  color: #2A2318;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ════════════════════════════════════════════
   TAB 2 — BAUDUEN
════════════════════════════════════════════ */
#tab-bauduen {
  padding: 5rem 3.5rem 5rem;
  max-width: 880px;
  margin: 0 auto;
}

#tab-bauduen .section-header h2 {
  margin-bottom: 1.5rem;
}

.bauduen-intro {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #2A2318;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.incontournables {
  margin-top: 4.5rem;
  margin-bottom: 4.5rem;
}

.incontournables h3,
.bauduen-around h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.06em;
  color: #2A2318;
  text-align: center;
  margin-bottom: 2rem;
}

.incontournables ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 4rem;
  max-width: 680px;
  margin: 0 auto;
}

.incontournables ul li {
  font-size: 0.88rem;
  color: #6B6055;
  padding-left: 1rem;
  border-left: 1px solid #E8DDD0;
  line-height: 1.55;
}

.bauduen-history,
.bauduen-around {
  margin-bottom: 3.5rem;
}

.bauduen-history h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.06em;
  color: #2A2318;
  text-align: center;
  margin-bottom: 2rem;
}

.bauduen-history p,
.bauduen-around p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #6B6055;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

/* ════════════════════════════════════════════
   IMAGE SLIDER
════════════════════════════════════════════ */
.slider-section {
  margin-bottom: 4rem;
}

.slider-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.06em;
  color: #2A2318;
  text-align: center;
  margin-bottom: 1.5rem;
}

.slider {
  position: relative;
  width: 100%;
  margin: 3.5rem 0;
  overflow: hidden;
}

.slider-track {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  background: #E8DDD0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem 1.8rem;
  background: linear-gradient(transparent, rgba(20, 14, 6, 0.72));
  color: #FFFFFF;
  font-family: 'Lato', sans-serif;
}

.caption-name {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.caption-desc {
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.5;
  opacity: 0.88;
  margin-bottom: 0.4rem;
}

.caption-dist {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.7;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #FFFFFF;
  cursor: pointer;
  font-size: 1.1rem;
  width: 2.6rem;
  height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.35);
}

.slider-btn.prev { left: 1rem; }
.slider-btn.next { right: 1rem; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 0 0.5rem;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #C5B9AD;
  cursor: pointer;
  transition: background 0.2s;
}

.dot.active {
  background: #2A2318;
}

.guide-note {
  text-align: center;
  padding: 2rem 2.5rem;
  background: #F5EDDF;
}

.guide-note p {
  font-size: 0.85rem;
  color: #6B6055;
  letter-spacing: 0.03em;
}

/* ════════════════════════════════════════════
   TAB 3 — ABOUT
════════════════════════════════════════════ */
#tab-about {
  padding: 5rem 3.5rem 5rem;
  max-width: 760px;
  margin: 0 auto;
}

.about-photo {
  text-align: center;
  margin-bottom: 3rem;
}

.about-photo img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  object-position: 50% 25%;
  border-radius: 50%;
  display: inline-block;
}

.about-content {
  max-width: 580px;
  margin: 0 auto;
}

.about-content p {
  font-size: 0.95rem;
  line-height: 1.95;
  color: #6B6055;
  margin-bottom: 1.5rem;
}

.about-lead {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.35rem !important;
  font-style: italic;
  font-weight: 300;
  color: #2A2318 !important;
  line-height: 1.6 !important;
  margin-bottom: 2rem !important;
}

.signature {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: #2A2318 !important;
  margin-top: 2.5rem !important;
  letter-spacing: 0.04em;
}

/* ════════════════════════════════════════════
   TAB 4 — LIVRE D'OR
════════════════════════════════════════════ */
#tab-livredor {
  padding: 5rem 3.5rem 5rem;
  max-width: 960px;
  margin: 0 auto;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1rem;
}

.review-card {
  background: #F5EDDF;
  padding: 2.5rem 2.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.8rem;
  position: relative;
}

.review-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: 0.6;
  color: #C5B9AD;
  display: block;
  margin-bottom: 0.5rem;
}

.review-card--short {
  justify-content: center;
  gap: 0;
}

.review-card--short::before {
  display: none;
}

.review-card--word {
  justify-content: center;
}

.review-card--word::before {
  display: none;
}

.review-word {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  font-style: italic;
  color: #2A2318;
  text-align: center;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-quote {
  font-size: 0.92rem;
  font-style: italic;
  line-height: 1.9;
  color: #6B6055;
  flex-grow: 1;
}

.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(42, 35, 24, 0.08);
}

.review-author {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2A2318;
}

.review-score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: #2A2318;
  letter-spacing: 0.02em;
}

.review-score::after {
  content: ' / 10';
  font-size: 0.75rem;
  font-family: 'Lato', sans-serif;
  color: #6B6055;
  letter-spacing: 0.08em;
}

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer {
  background: #E8DDD0;
  padding: 3.5rem 3.5rem;
  text-align: center;
  border-top: 1px solid rgba(42, 35, 24, 0.06);
}

.footer-tagline {
  font-size: 0.9rem;
  color: #2A2318;
  letter-spacing: 0.04em;
  margin-bottom: 0.8rem;
}

.footer-contact {
  font-size: 0.85rem;
  color: #6B6055;
  margin-bottom: 1.8rem;
  letter-spacing: 0.04em;
}

.footer-contact a {
  color: #6B6055;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.footer-contact a:hover {
  color: #2A2318;
  border-bottom-color: #2A2318;
}

.footer-copy {
  font-size: 0.72rem;
  color: #6B6055;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.55;
}

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 768px) {
  .navbar {
    padding: 1rem 1.25rem;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .nav-logo {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
  }

  .nav-tabs {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 1.5rem;
  }

  .tab-btn {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
  }

  #tab-properties,
  #tab-bauduen,
  #tab-about,
  #tab-livredor {
    padding: 3rem 1.25rem;
  }

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

  .incontournables ul {
    grid-template-columns: 1fr;
  }

  .superhote-wrapper iframe {
    height: 950px;
  }

  .footer {
    padding: 2.5rem 1.25rem;
  }
}
