/* =========================================================
   GLAMUR EVENT HALL — Feuille de style principale
   Palette: noir profond + or champagne + crème
   Polices: Cormorant Garamond (titres), Montserrat (texte)
   ========================================================= */

:root {
  --bg: #0a0a0a;
  --bg-soft: #141414;
  --bg-card: #1a1a1a;
  --gold: #c9a961;
  --gold-light: #e0c989;
  --gold-dark: #8a7239;
  --cream: #f5f1e8;
  --text: #e8e4dc;
  --text-muted: #9a958b;
  --line: rgba(201, 169, 97, 0.25);
  --line-strong: rgba(201, 169, 97, 0.55);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', system-ui, -apple-system, sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  letter-spacing: 0.02em;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color var(--transition); }

/* ---------- Typography ---------- */
.serif { font-family: var(--serif); font-weight: 400; }
.eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: inline-block;
}
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.15; letter-spacing: 0.01em; }

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--cream);
  margin-bottom: 1.5rem;
}
h2 em { color: var(--gold); font-style: italic; font-weight: 300; }

h3 { font-size: 1.6rem; color: var(--cream); margin-bottom: 0.8rem; }

p { color: var(--text); font-size: 1rem; max-width: 60ch; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 7rem 0;
  position: relative;
}

/* ---------- Divider décoratif ---------- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto 2rem;
  width: fit-content;
}
.divider::before, .divider::after {
  content: '';
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}
.divider span {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
}

/* ============= NAVIGATION ============= */
nav#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.4rem 2rem;
  background: rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition);
  border-bottom: 1px solid transparent;
}
nav#nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  border-bottom-color: var(--line);
  padding: 1rem 2rem;
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  letter-spacing: 0.3em;
  color: var(--cream);
  text-transform: uppercase;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: none;
  gap: 2.4rem;
  list-style: none;
  align-items: center;
  margin-left: auto;
  margin-right: 2rem;
}
.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding: 0.4rem 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }

.lang-switch {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
}
.lang-switch button {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-family: var(--sans);
  padding: 0.15rem 0.5rem;
  letter-spacing: 0.18em;
  transition: color var(--transition);
}
.lang-switch button.active { color: var(--gold); }
.lang-switch .sep { color: var(--gold-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  cursor: pointer;
  width: 30px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
}
.nav-toggle span {
  display: block;
  height: 1px;
  background: var(--cream);
  transition: all var(--transition);
}

/* ============= HERO ============= */
.hero {
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top, rgba(201, 169, 97, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at bottom, rgba(201, 169, 97, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, #0f0e0c 0%, #0a0a0a 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(201, 169, 97, 0.06), transparent 25%),
    radial-gradient(circle at 80% 70%, rgba(201, 169, 97, 0.04), transparent 25%);
  pointer-events: none;
}

.sparkles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.sparkle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--gold-light);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--gold);
  animation: twinkle 4s ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50% { opacity: 1; transform: scale(1.2); }
}

.hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}
.hero-mark {
  width: 90px;
  height: 90px;
  margin: 0 auto 2.5rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  animation: fadeInDown 1.4s ease forwards;
}
.hero-mark svg { width: 50px; height: 50px; }

.hero h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  color: var(--cream);
  letter-spacing: 0.18em;
  font-weight: 300;
  margin-bottom: 1rem;
  opacity: 1;
  animation: fadeInUp 1.4s 0.2s ease forwards;
}
.hero h1 .accent {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 0.5em;
  letter-spacing: 0.4em;
  margin-top: 0.6rem;
  font-weight: 300;
}
.hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  color: var(--text);
  margin: 2rem auto 3rem;
  max-width: 600px;
  opacity: 1;
  animation: fadeInUp 1.4s 0.5s ease forwards;
}
.hero-cta {
  display: inline-flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 1;
  animation: fadeInUp 1.4s 0.8s ease forwards;
}

/* Boutons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 2.4rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold-light);
}
.btn:hover {
  background: var(--gold);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px rgba(201, 169, 97, 0.5);
}
.btn-solid { background: var(--gold); color: var(--bg); }
.btn-solid:hover { background: var(--gold-light); color: var(--bg); }

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  animation: fadeIn 2s 1.5s ease forwards;
}
.scroll-indicator::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  margin: 1rem auto 0;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.4); opacity: 0.4; }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { 0% { opacity: 0; transform: translateY(30px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { 0% { opacity: 0; transform: translateY(-20px); } 100% { opacity: 1; transform: translateY(0); } }

/* ============= ABOUT ============= */
.about { background: var(--bg); position: relative; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text p {
  margin-bottom: 1.4rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.9;
}
.about-image {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #1f1c17 0%, #0f0e0c 100%);
  border: 1px solid var(--line);
  overflow: hidden;
}
.about-image::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid var(--line-strong);
  pointer-events: none;
  z-index: 2;
}
.placeholder-img {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--gold-dark);
  font-family: var(--serif);
  font-style: italic;
  text-align: center;
  padding: 2rem;
  background:
    repeating-linear-gradient(45deg, transparent 0, transparent 20px, rgba(201, 169, 97, 0.03) 20px, rgba(201, 169, 97, 0.03) 21px),
    radial-gradient(circle at center, rgba(201, 169, 97, 0.08), transparent 70%);
}
.placeholder-img svg { width: 60px; height: 60px; opacity: 0.5; }
.placeholder-img .ph-label {
  font-size: 0.7rem;
  font-family: var(--sans);
  font-style: normal;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}
.stat-num {
  font-family: var(--serif);
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ============= SERVICES ============= */
.services { background: var(--bg-soft); text-align: center; }
.services-header { margin-bottom: 4rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 3rem 2rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-6px); border-color: var(--line-strong); background: #1f1c17; }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all var(--transition);
}
.service-card:hover .service-icon { background: var(--gold); color: var(--bg); transform: rotate(360deg); }
.service-icon svg { width: 32px; height: 32px; }
.service-card h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }
.service-card p { color: var(--text-muted); font-size: 0.92rem; margin: 0 auto; }

/* ============= TESTIMONIAL ============= */
.testimonial {
  background:
    linear-gradient(135deg, rgba(201, 169, 97, 0.04) 0%, transparent 100%),
    var(--bg-soft);
  text-align: center;
  padding: 6rem 0;
}
.testimonial-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--cream);
  line-height: 1.5;
  margin: 2rem 0;
  position: relative;
}
.testimonial blockquote::before {
  content: '"';
  font-size: 5rem;
  color: var(--gold);
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.3;
  line-height: 1;
}

/* ============= GALLERY ============= */
.gallery { background: var(--bg); text-align: center; }
.gallery-header { margin-bottom: 4rem; }

.ig-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 360px));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
  justify-content: center;
}
.ig-card {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition), border-color var(--transition);
}
.ig-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}
.ig-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ig-controls {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  padding: 1rem;
  background: linear-gradient(to top, rgba(10,10,10,0.7), transparent);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.ig-card:hover .ig-controls,
.ig-card:focus-within .ig-controls,
.ig-controls.visible {
  opacity: 1;
  pointer-events: auto;
}
.ig-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 97, 0.5);
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}
.ig-btn:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.ig-btn svg {
  width: 18px;
  height: 18px;
}
.ig-btn .ig-icon-play { display: none; }
.ig-card.paused .ig-btn .ig-icon-pause { display: none; }
.ig-card.paused .ig-btn .ig-icon-play { display: inline-block; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 1rem;
  max-width: 1300px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: zoom-in;
  transition: all var(--transition);
  background: linear-gradient(135deg, #1a1813 0%, #0f0e0c 100%);
}
.gallery-item:hover { border-color: var(--gold); transform: scale(0.98); }
.gallery-item .placeholder-img { transition: transform 0.8s ease; }
.gallery-item:hover .placeholder-img { transform: scale(1.05); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 10, 0.9) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--gold-light);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
}
.gallery-cta { margin-top: 3.5rem; }

/* ============= RESERVATION / CALENDRIER ============= */
.reservation { background: var(--bg-soft); text-align: center; }
.reservation-header { margin-bottom: 3.5rem; }
.calendar-wrapper {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 2.5rem;
}
.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.calendar-nav h3 {
  font-size: 1.5rem;
  color: var(--cream);
  margin: 0;
  letter-spacing: 0.08em;
  text-transform: capitalize;
}
.cal-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.4rem;
  transition: all var(--transition);
  border-radius: 50%;
}
.cal-arrow:hover { border-color: var(--gold); background: rgba(201, 169, 97, 0.1); }
.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.4rem;
  margin-bottom: 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.4rem;
}
.cal-day {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--text);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  background: transparent;
  position: relative;
}
.cal-day.empty { cursor: default; pointer-events: none; }
.cal-day.past { color: #4a4843; cursor: not-allowed; pointer-events: none; }
.cal-day.reserved {
  color: #6a3a3a;
  cursor: not-allowed;
  pointer-events: none;
  text-decoration: line-through;
}
.cal-day.reserved::after {
  content: '';
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #c95a5a;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
}
.cal-day.saturday { color: var(--gold-light); }
.cal-day.available:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.cal-day.selected { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.cal-day.today { border-color: var(--line-strong); }
.calendar-legend {
  display: flex;
  justify-content: center;
  gap: 1.8rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}
.legend-item { display: inline-flex; align-items: center; gap: 0.5rem; }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.legend-dot.available { background: var(--gold); }
.legend-dot.reserved { background: #c95a5a; }
.legend-dot.past { background: #4a4843; }

/* ============= CONTACT ============= */
.contact { background: var(--bg); position: relative; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}
.contact-info h2 { margin-bottom: 2rem; }
.contact-info p { color: var(--text-muted); margin-bottom: 2.5rem; font-size: 1.05rem; }

.contact-list { list-style: none; margin-bottom: 2.5rem; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-list li:last-child { border-bottom: none; }
.contact-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.contact-icon svg { width: 18px; height: 18px; }
.contact-list .label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}
.contact-list .value { color: var(--cream); font-size: 1rem; }
.contact-list .value a:hover { color: var(--gold); }

.socials { display: flex; gap: 0.8rem; }
.social-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: all var(--transition);
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.social-btn svg { width: 18px; height: 18px; }

/* Formulaire */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 3rem;
  position: relative;
}
.form-status {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid transparent;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-align: center;
  display: none;
  animation: fadeIn 0.4s ease;
}
.form-status.success { display: block; border-color: var(--gold); color: var(--gold-light); background: rgba(201, 169, 97, 0.08); }
.form-status.error { display: block; border-color: #c95a5a; color: #e8a5a5; background: rgba(201, 90, 90, 0.08); }
.form-status.loading { display: block; border-color: var(--line); color: var(--text-muted); }
.btn[disabled] { opacity: 0.6; cursor: wait; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-field { margin-bottom: 1rem; }
.form-field label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { outline: none; border-color: var(--gold); }
.form-field textarea { resize: vertical; min-height: 120px; font-family: var(--sans); }
.form-field select { cursor: pointer; }
.form-consent {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0.5rem 0 1.5rem;
  cursor: pointer;
}
.form-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--gold);
  cursor: pointer;
}

/* ============= FOOTER ============= */
footer {
  background: #050505;
  border-top: 1px solid var(--line);
  padding: 3rem 0 2rem;
  text-align: center;
}
footer .nav-logo { display: block; margin-bottom: 1rem; font-size: 1.6rem; }
footer p { color: var(--text-muted); font-size: 0.8rem; letter-spacing: 0.15em; margin: 0 auto; }
.footer-divider { width: 60px; height: 1px; background: var(--gold-dark); margin: 1.5rem auto; }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 1rem 0;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.footer-links a { color: var(--text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }

.admin-dot {
  display: inline-block;
  margin-top: 1.5rem;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(201, 169, 97, 0.2);
  transition: background 0.3s;
}
.admin-dot:hover { background: rgba(201, 169, 97, 0.6); }

.reservation-intro { margin: 1.5rem auto 0; color: var(--text-muted); }

/* ============= LIGHTBOX ============= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.96);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox-content {
  max-width: 90vw;
  max-height: 80vh;
  position: relative;
  border: 1px solid var(--line-strong);
  background: var(--bg);
}
.lightbox-image { max-width: 100%; max-height: 80vh; object-fit: contain; display: block; }
.lightbox-placeholder { width: min(700px, 80vw); height: min(500px, 70vh); }
.lightbox-caption {
  position: absolute;
  bottom: -2.5rem;
  left: 0; right: 0;
  text-align: center;
  color: var(--gold-light);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(10, 10, 10, 0.7);
  border: 1px solid var(--line);
  color: var(--cream);
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-family: var(--serif);
  font-size: 1.5rem;
}
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev { top: 50%; left: 1.5rem; transform: translateY(-50%); }
.lightbox-next { top: 50%; right: 1.5rem; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { border-color: var(--gold); color: var(--gold); }

/* ============= WHATSAPP / VIBER FLOTTANT ============= */
.chat-float {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: flex-end;
}
.chat-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: all var(--transition);
  position: relative;
}
.chat-btn:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5); }
.chat-btn.whatsapp { background: #25d366; }
.chat-btn.viber { background: #7360f2; }
.chat-btn svg { width: 28px; height: 28px; }
.chat-btn::before {
  content: attr(data-label);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-card);
  color: var(--cream);
  padding: 0.5rem 0.9rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  border: 1px solid var(--line);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.chat-btn:hover::before { opacity: 1; }
.chat-btn.whatsapp::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: pulse 2s ease-out infinite;
  opacity: 0;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ============= CARTE ============= */
.map-wrap {
  margin-top: 2rem;
  border: 1px solid var(--line);
  overflow: hidden;
  filter: grayscale(0.4) contrast(1.05);
  transition: filter 0.4s ease;
}
.map-wrap:hover { filter: grayscale(0); }
.map-wrap iframe { display: block; width: 100%; height: 280px; border: 0; }

/* ============= BOUTON LANGUE FLOTTANT ============= */
#floatLang {
  position: fixed;
  bottom: 12rem;
  right: 2rem;
  z-index: 9999;
  display: none; /* caché sur desktop, affiché en mobile via media query */
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.9rem;
  background: rgba(10, 10, 10, 0.85);
  border: 1px solid rgba(180, 150, 80, 0.4);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
}
#floatLang button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  padding: 0.1rem 0.4rem;
  color: rgba(200, 200, 200, 0.5);
  transition: color var(--transition);
}
#floatLang span { color: rgba(180, 150, 80, 0.5); }
#floatLangSr { color: var(--gold); }

/* ============= RÉVÉLATION AU SCROLL ============= */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s ease, transform 1s ease;
}
.reveal.hidden { opacity: 0; transform: translateY(40px); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============= RESPONSIVE ============= */
@media (max-width: 968px) {
  section { padding: 5rem 0; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 1; }
}

@media (max-width: 1024px) {
  /* ---- Navigation ---- */
  .nav-inner { padding: 0; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0;
    height: 100vh;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 999;
    list-style: none;
    margin: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    font-size: 1.2rem;
    letter-spacing: 0.3em;
  }

  .lang-switch { display: none; }

  .nav-toggle {
    display: flex;
    margin-left: auto;
    z-index: 1001;
    position: relative;
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(11px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

  /* ---- SR/EN flottant — visible sur mobile ---- */
  #floatLang {
    display: flex;
    position: fixed;
    top: 1.1rem;
    right: 4rem;
    bottom: auto;
    z-index: 1001;
    padding: 0.3rem 0.7rem;
    font-size: 0.65rem;
  }

  /* ---- Hero ---- */
  .hero-cta {
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 2rem;
    gap: 1rem;
  }
  .hero-cta .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  .scroll-indicator { display: none; }

  /* ---- Layout général ---- */
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 2rem 1.5rem; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
  .stat-num { font-size: 1.8rem; }
  .stat-label { font-size: 0.6rem; letter-spacing: 0.15em; }

  /* ---- Galerie ---- */
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .gallery-item.wide { grid-column: span 1; }

  /* ---- Calendrier ---- */
  .calendar-wrapper { padding: 1.5rem 1rem; }
  .cal-day { font-size: 0.85rem; }
  .calendar-weekdays { font-size: 0.55rem; letter-spacing: 0.05em; }

  /* ---- WhatsApp/Viber ---- */
  .chat-float { bottom: 1rem; right: 1rem; gap: 0.5rem; }
  .chat-btn { width: 48px; height: 48px; }
  .chat-btn::before { display: none; }

  /* ---- Lightbox ---- */
  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; }
}

@media (min-width: 1025px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none !important; }
  #floatLang { display: none !important; }
}
