.page { display: none; }
.page.active { display: block; }/* ============================================================
   LODGE CONCEPT — CHARTE ANTHRACITE
   Pour modifier les couleurs globales, changez les variables ci-dessous
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
  --noir:       #0e0e0e;
  --noir-carte: #161616;
  --noir-hover: #1e1e1e;
  --or:         #c9a96e;
  --or-hover:   #b8944f;
  --gris:       #888;
  --gris-clair: #e8e4dd;
  --blanc:      #fff;
  --border:     rgba(255,255,255,0.07);
}

/* ===== RESET ===== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--noir);
  color: var(--gris-clair);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; font-family: inherit; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: rgba(14,14,14,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blanc);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.logo span { color: var(--or); }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gris);
  transition: color 0.25s;
  letter-spacing: 0.02em;
}
.nav-links a:hover,
.nav-links a.active { color: var(--or); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lang-btn {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--or);
  border: 1px solid var(--or);
  background: transparent;
  padding: 7px 16px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  transition: all 0.25s;
}
.lang-btn:hover {
  background: var(--or);
  color: var(--noir);
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blanc);
  transition: transform 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,14,14,0.4) 0%, var(--noir) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.hero h1 {
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--blanc);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--or);
}
.hero p {
  font-size: 1rem;
  color: var(--gris);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--or);
  color: var(--noir);
  padding: 15px 36px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: none;
  transition: background 0.25s;
}
.btn-primary:hover { background: var(--or-hover); }

.btn-outline {
  display: inline-block;
  color: var(--or);
  border: 1px solid var(--or);
  padding: 14px 36px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: transparent;
  transition: all 0.25s;
}
.btn-outline:hover {
  background: var(--or);
  color: var(--noir);
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 48px;
}
.section-dark {
  background: var(--noir-carte);
}
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--blanc);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.section-title em {
  font-style: normal;
  color: var(--or);
}
.section-subtitle {
  color: var(--gris);
  font-size: 0.95rem;
  margin-bottom: 48px;
  max-width: 560px;
  line-height: 1.6;
}

/* ===== GAMMES GRID (Accueil) ===== */
.gammes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.gamme-card {
  background: var(--noir-carte);
  overflow: hidden;
  transition: background 0.3s;
  display: block;
}
.gamme-card:hover { background: var(--noir-hover); }
.gamme-card-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.gamme-card:hover .gamme-card-img { opacity: 1; }
.gamme-card-img-placeholder {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
}
.gamme-card-img-placeholder.lodge   { background: linear-gradient(180deg, #2a3530, #0e0e0e); }
.gamme-card-img-placeholder.love    { background: linear-gradient(180deg, #3a2530, #0e0e0e); }
.gamme-card-img-placeholder.cuisine { background: linear-gradient(180deg, #2a2520, #0e0e0e); }
.gamme-card-body { padding: 28px; }
.gamme-card-body h3 {
  font-size: 1.1rem;
  color: var(--blanc);
  margin-bottom: 8px;
  font-weight: 600;
}
.gamme-card-body p {
  font-size: 0.82rem;
  color: var(--gris);
  line-height: 1.6;
  margin-bottom: 16px;
}
.gamme-link {
  color: var(--or);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.gamme-link:hover { color: var(--or-hover); }

/* ===== PAGE GAMME (Lodge, Love Room, Cuisine) ===== */
.page-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 80px;
  position: relative;
  overflow: hidden;
}
.page-hero .hero-bg { opacity: 0.35; }
.page-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--blanc);
  position: relative;
  z-index: 1;
  letter-spacing: -0.02em;
}
.page-hero h1 em { font-style: normal; color: var(--or); }
.page-hero p {
  position: relative;
  z-index: 1;
  color: var(--gris);
  font-size: 1rem;
  max-width: 540px;
  margin: 16px auto 0;
  line-height: 1.7;
}

/* ===== CONTENT BLOCKS ===== */
.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 480px;
}
.content-block.reverse .cb-media { order: 2; }
.content-block.reverse .cb-text  { order: 1; }

.cb-media {
  position: relative;
  overflow: hidden;
  background: var(--noir-carte);
  min-height: 400px;
}
.cb-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cb-media-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: 0.85rem;
  background: var(--noir-carte);
}

.cb-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 56px;
  background: var(--noir);
}
.cb-text h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blanc);
  margin-bottom: 16px;
  line-height: 1.2;
}
.cb-text h2 em { font-style: normal; color: var(--or); }
.cb-text p {
  color: var(--gris);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 12px;
}
.cb-text ul {
  list-style: none;
  margin: 16px 0;
}
.cb-text ul li {
  padding: 6px 0;
  font-size: 0.88rem;
  color: var(--gris-clair);
}
.cb-text ul li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--or);
  border-radius: 50%;
  margin-right: 12px;
  vertical-align: middle;
}

/* ===== GALLERY GRID ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--noir-carte);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.15);
  font-size: 0.8rem;
}

/* ===== SPECS TABLE ===== */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
}
.specs-table th {
  text-align: left;
  padding: 14px 20px;
  background: rgba(201,169,110,0.1);
  color: var(--or);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.specs-table td {
  padding: 14px 20px;
  font-size: 0.88rem;
  color: var(--gris-clair);
  border-bottom: 1px solid var(--border);
}
.specs-table tr:hover td {
  background: rgba(255,255,255,0.02);
}

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}
.contact-info h3 {
  color: var(--blanc);
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.contact-info p {
  color: var(--gris);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail-icon {
  width: 36px;
  height: 36px;
  background: rgba(201,169,110,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--or);
  font-size: 0.9rem;
}
.contact-detail-text {
  font-size: 0.88rem;
  color: var(--gris-clair);
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gris);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--noir-carte);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--blanc);
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.25s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--or);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blanc);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-logo span { color: var(--or); }
.footer-copy {
  font-size: 0.78rem;
  color: var(--gris);
}

/* ===== MOBILE NAV ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(14,14,14,0.98);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.2rem;
  color: var(--gris-clair);
  font-weight: 500;
}
.mobile-menu a:hover { color: var(--or); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .navbar { padding: 0 24px; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .section { padding: 60px 24px; }
  .hero { padding: 100px 24px 60px; }
  .hero h1 { font-size: 2.2rem; }
  .page-hero h1 { font-size: 2rem; }
  .gammes-grid { grid-template-columns: 1fr; }
  .content-block { grid-template-columns: 1fr; }
  .content-block.reverse .cb-media { order: 0; }
  .content-block.reverse .cb-text  { order: 0; }
  .cb-text { padding: 40px 24px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer { flex-direction: column; gap: 12px; text-align: center; }
}
