/* ══════════════════════════════════════════════════════════════
   EXPERIENCE.CSS — Styles de la page commerciale client
   ══════════════════════════════════════════════════════════════ */

/* ─── NAV ────────────────────────────────────────────────────── */
.exp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 50px;
  background: rgba(8,8,6,0.0);
  transition: background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

/* ─── LANG DROPDOWN PREMIUM ─────────────────────────────────── */
.lang-dropdown {
  position: relative;
  flex-shrink: 0;
  z-index: 200;
}

/* Trigger pill */
.lang-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.28);
  padding: 7px 14px 7px 10px;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  outline: none;
  position: relative;
  overflow: hidden;
}
/* subtle shimmer on hover */
.lang-trigger::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.0) 0%, rgba(201,168,76,0.08) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.lang-trigger:hover::after { opacity: 1; }
.lang-trigger:hover {
  border-color: rgba(201,168,76,0.55);
  box-shadow: 0 0 14px rgba(201,168,76,0.1);
}

/* Flag in trigger */
.lang-flag {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08);
}
.lang-flag svg { width: 18px; height: 12px; display: block; border-radius: 1px; }

/* Code label */
.lang-code {
  font-family: var(--font-caps);
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: var(--gold);
  min-width: 16px;
  position: relative;
  z-index: 1;
}

/* Chevron */
.lang-chevron {
  display: flex;
  align-items: center;
  margin-left: 2px;
  position: relative;
  z-index: 1;
}
.lang-chevron svg {
  width: 8px; height: 5px;
  display: block;
  stroke: rgba(201,168,76,0.55);
  transition: transform 0.3s ease, stroke 0.3s;
}
.lang-trigger:hover .lang-chevron svg { stroke: rgba(201,168,76,0.9); }
.lang-dropdown.open .lang-chevron svg { transform: rotate(180deg); }

/* Dropdown panel */
.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 168px;
  background: #0d0c09;
  border: 1px solid rgba(201,168,76,0.2);
  border-top: 1px solid rgba(201,168,76,0.4);
  list-style: none;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top right;
  transition: opacity 0.22s ease, transform 0.22s ease;
  box-shadow: 0 24px 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,168,76,0.05);
}
/* gold top bar */
.lang-menu::before {
  content: '';
  position: absolute;
  top: -1px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.6), transparent);
}
.lang-dropdown.open .lang-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}

/* Options */
.lang-option {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 18px;
  cursor: pointer;
  transition: background 0.18s;
  border-bottom: 1px solid rgba(201,168,76,0.05);
  position: relative;
}
.lang-option:last-child { border-bottom: none; }
.lang-option:hover { background: rgba(201,168,76,0.06); }
.lang-option.active {
  background: rgba(201,168,76,0.04);
}
/* active left accent */
.lang-option.active::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.lopt-flag {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08);
}
.lopt-flag svg { width: 18px; height: 12px; display: block; border-radius: 1px; }

.lopt-code {
  font-family: var(--font-caps);
  font-size: 0.6rem;
  letter-spacing: 2.5px;
  color: rgba(245,240,232,0.5);
  min-width: 20px;
  transition: color 0.18s;
}
.lang-option.active .lopt-code { color: var(--gold); }
.lang-option:hover .lopt-code { color: var(--gold); }

.lopt-name {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(180,172,148,0.65);
  transition: color 0.18s;
  letter-spacing: 0.5px;
}
.lang-option.active .lopt-name { color: var(--ivory); }
.lang-option:hover .lopt-name { color: var(--ivory); }
.exp-nav.scrolled {
  background: rgba(8,8,6,0.94);
  border-bottom-color: rgba(201,168,76,0.15);
  backdrop-filter: blur(12px);
}
.nav-logo-img {
  width: 52px;
  height: auto;
  filter: drop-shadow(0 0 8px rgba(201,168,76,0.2));
  transition: filter 0.3s;
}
.nav-logo:hover .nav-logo-img {
  filter: drop-shadow(0 0 16px rgba(201,168,76,0.5));
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-caps);
  font-size: 0.62rem;
  letter-spacing: 3px;
  color: rgba(245,240,232,0.7);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links .nav-cta {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  padding: 10px 24px;
  font-size: 0.6rem;
}
.nav-links .nav-cta:hover { color: var(--black); opacity: 0.9; }

/* ─── HERO EXPÉRIENCE ────────────────────────────────────────── */
.exp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* Force scroll indicator to stay contained in hero */
.exp-scroll {
  position: absolute !important;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.exp-scroll .scroll-line {
  height: 30px;
}
.exp-hero-bg { position: absolute; inset: 0; z-index: 0; }
.exp-hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  animation: heroZoom 20s ease-in-out infinite alternate;
}
.exp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,6,0.5) 0%,
    rgba(8,8,6,0.35) 40%,
    rgba(8,8,6,0.7) 80%,
    rgba(8,8,6,0.95) 100%
  );
}
.exp-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 40px 60px;
  max-width: 820px;
  width: 100%;
}
.exp-hero-title {
  margin: 10px 0;
}
.exp-hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-style: italic;
  color: var(--cream);
  margin: 10px 0 30px;
  line-height: 1.6;
  opacity: 0.9;
}

/* ─── SECTION CONCEPT ────────────────────────────────────────── */
.exp-concept {
  padding: var(--section-pad) 0;
  background: var(--black);
  position: relative;
  z-index: 2;
}

/* ─── VIBES CARDS ────────────────────────────────────────────── */
.exp-vibes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 80px;
  background: rgba(201,168,76,0.04);
}
.vibe-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.08);
  transition: border-color 0.4s;
}
.vibe-card:hover { border-color: rgba(201,168,76,0.2); }
.vibe-img-wrap {
  height: 260px;
  overflow: hidden;
  position: relative;
}
.vibe-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.5) brightness(0.6);
  transition: transform 0.7s ease, filter 0.5s;
}
.vibe-card:hover .vibe-img-wrap img {
  transform: scale(1.06);
  filter: saturate(0.7) brightness(0.7);
}
.vibe-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(8,8,6,0.9) 100%);
}
.vibe-content {
  padding: 30px 32px 40px;
  background: rgba(18,16,8,0.5);
}
.vibe-icon {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.vibe-svg,
.vibe-icon svg {
  width: 20px;
  height: 20px;
  display: block;
  filter: drop-shadow(0 0 3px rgba(201,168,76,0.2));
  transition: filter 0.4s;
  flex-shrink: 0;
}
.vibe-card:hover .vibe-svg,
.vibe-card:hover .vibe-icon svg {
  filter: drop-shadow(0 0 6px rgba(201,168,76,0.45));
}
.vibe-title {
  font-family: var(--font-caps);
  font-size: 0.8rem;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 14px;
}
.vibe-text {
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--muted);
}

/* ─── PROMESSES ──────────────────────────────────────────────── */
.exp-promises {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid rgba(201,168,76,0.1);
}
.promise-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 36px 40px;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  border-right: 1px solid rgba(201,168,76,0.08);
  transition: background 0.3s;
}
.promise-item:hover { background: rgba(201,168,76,0.03); }
.promise-item:nth-child(2n) { border-right: none; }
.promise-item:nth-last-child(-n+2) { border-bottom: none; }
.promise-icon {
  color: var(--gold);
  font-size: 0.5rem;
  margin-top: 6px;
  flex-shrink: 0;
}
.promise-item strong {
  font-family: var(--font-caps);
  font-size: 0.72rem;
  letter-spacing: 2px;
  color: var(--ivory);
  display: block;
  margin-bottom: 10px;
}
.promise-item p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ─── SECTION ACTES ──────────────────────────────────────────── */
.exp-acts {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
}
.exp-acts-bg { position: absolute; inset: 0; z-index: 0; }
.exp-acts-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.3);
}
.exp-acts-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,8,6,0.92) 0%, rgba(8,8,6,0.82) 50%, rgba(8,8,6,0.95) 100%);
}
.exp-acts .container { position: relative; z-index: 2; }

.acts-timeline {
  max-width: 680px;
  margin: 0 auto 60px;
}
.act-item {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid rgba(201,168,76,0.08);
}
.act-item:last-child { border-bottom: none; }
.act-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-style: italic;
  color: rgba(201,168,76,0.35);
  min-width: 50px;
  line-height: 1;
  flex-shrink: 0;
}
.act-label {
  font-family: var(--font-caps);
  font-size: 0.72rem;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 10px;
}
.act-desc {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--muted);
}
.act-connector {
  text-align: center;
  color: rgba(201,168,76,0.2);
  font-size: 0.5rem;
  padding: 4px 0 4px 25px;
  letter-spacing: 6px;
}

.acts-infos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 1px solid rgba(201,168,76,0.15);
  background: rgba(8,8,6,0.5);
  backdrop-filter: blur(8px);
}
.acts-info-item {
  flex: 1;
  text-align: center;
  padding: 30px 20px;
}
.acts-info-sep {
  color: rgba(201,168,76,0.2);
  font-size: 0.5rem;
  flex-shrink: 0;
}
.acts-info-label {
  display: block;
  font-family: var(--font-caps);
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: var(--muted);
  margin-bottom: 8px;
}
.acts-info-value {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--gold);
}

/* ─── SECTION PRIVATISATION ──────────────────────────────────── */
.private-section {
  padding: var(--section-pad) 0;
  background: var(--charcoal);
  position: relative;
  z-index: 2;
}
.private-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.private-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.private-list {
  list-style: none;
  margin-top: 32px;
}
.private-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--cream);
  padding: 12px 0;
  border-bottom: 1px solid rgba(201,168,76,0.07);
  line-height: 1.5;
}
.pl-icon {
  color: var(--gold);
  font-size: 0.4rem;
  margin-top: 6px;
  flex-shrink: 0;
}
.private-visual { position: relative; }
.private-card-wrap {
  position: relative;
  overflow: hidden;
}
.private-card-wrap::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(201,168,76,0.12);
  z-index: 1;
  pointer-events: none;
}
.private-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: saturate(0.6) brightness(0.7);
  display: block;
  transition: filter 0.5s;
}
.private-card-wrap:hover .private-img { filter: saturate(0.8) brightness(0.8); }
.private-card-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: rgba(8,8,6,0.88);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 20px 28px;
  text-align: center;
  z-index: 2;
  backdrop-filter: blur(8px);
}
.pcb-top {
  display: block;
  font-family: var(--font-caps);
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 8px;
}
.pcb-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--ivory);
  line-height: 1;
  font-weight: 300;
}
.pcb-label {
  display: block;
  font-family: var(--font-caps);
  font-size: 0.58rem;
  letter-spacing: 3px;
  color: var(--muted);
  margin-top: 6px;
}

/* ─── CTA RÉSERVATION AMÉLIORÉE ──────────────────────────────── */
.cta-services-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin: 40px 0;
}
.cta-sep {
  color: rgba(201,168,76,0.3);
  font-size: 0.6rem;
}
.csb-time {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.csb-label {
  font-family: var(--font-caps);
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: var(--muted);
  margin: 8px 0 4px;
}
.csb-info {
  font-size: 0.8rem;
  color: rgba(160,152,128,0.6);
}
.cta-price-block {
  margin: 0 0 40px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 16px;
}
.cpb-amount {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold);
  text-shadow: 0 0 30px rgba(201,168,76,0.3);
}
.cpb-per {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--muted);
}
.cta-contact {
  margin-top: 40px;
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cta-mail {
  color: var(--gold);
  text-decoration: none;
  font-family: var(--font-caps);
  font-size: 0.65rem;
  letter-spacing: 2px;
  transition: color 0.3s;
}
.cta-mail:hover { color: var(--gold-lt); }
.cta-address {
  font-size: 0.8rem;
}

/* ─── RESPONSIVE EXPÉRIENCE ──────────────────────────────────── */
@media (max-width: 900px) {
  .exp-nav { padding: 12px 20px; gap: 12px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .lang-switcher { margin-left: auto; }

  .exp-vibes { grid-template-columns: 1fr; }
  .vibe-img-wrap { height: 200px; }

  .exp-promises { grid-template-columns: 1fr; }
  .promise-item:nth-child(2n) { border-right: 1px solid rgba(201,168,76,0.08); }
  .promise-item { border-right: none; }

  .private-grid { grid-template-columns: 1fr; gap: 50px; }

  .acts-infos { flex-direction: column; gap: 0; }
  .acts-info-item { border-bottom: 1px solid rgba(201,168,76,0.08); width: 100%; }
  .acts-info-sep { display: none; }

  .cta-services-grid { flex-direction: column; gap: 24px; }
  .cta-sep { display: none; }
}

@media (max-width: 600px) {
  .cta-contact { flex-direction: column; gap: 8px; }
}
