/* ============================================================
   FRENCH RIVIERA 2CV EXPERIENCE — shared.css — VERSION FINALE
   Agence Seesmile · frenchriviera2cv.fr
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Allura&family=Nunito:wght@300;400;500;600;700&display=swap');

/* ============================================================
   VARIABLES
   ============================================================ */
:root {
  --bleu:         #1D3A72;
  --bleu-dark:    #0F2149;
  --bleu-light:   #2A4F9A;
  --rouge:        #C8102E;
  --rouge-dark:   #A00D24;
  --or:           #C9A86A;
  --or-light:     #E0C892;
  --or-dark:      #A88A4D;
  --blanc:        #FFFFFF;
  --gris-clair:   #F6F6F6;
  --gris-medium:  #E5E5E5;
  --gris-fonce:   #AAAAAA;
  --texte:        #1A1A1A;
  --texte-light:  #6B6B6B;
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.07);
  --shadow:       0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.14);
  --shadow-hover: 0 8px 40px rgba(0,0,0,0.18);
  --radius:       6px;
  --radius-lg:    12px;
  --nav-height:   96px;
  --transition:   all 0.3s ease;
  --max-width:    1360px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { width: 100%; overflow-x: hidden; }
body {
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  color: var(--texte);
  background: var(--blanc);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
}
img { max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; }

/* ============================================================
   SCROLL BAR PROGRESSION
   ============================================================ */
#scroll-bar {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--bleu), var(--rouge));
  z-index: 9999; transition: width 0.1s linear;
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 40px; }

/* ============================================================
   STRIPE TRICOLORE
   ============================================================ */
.stripe-fr { display: flex; height: 4px; width: 100%; }
.stripe-fr span { flex: 1; }
.stripe-fr span:nth-child(1) { background: var(--bleu); }
.stripe-fr span:nth-child(2) { background: var(--blanc); border-top: 1px solid var(--gris-medium); border-bottom: 1px solid var(--gris-medium); }
.stripe-fr span:nth-child(3) { background: var(--rouge); }

/* ============================================================
   NAVIGATION
   ============================================================ */
#main-nav {
  position: fixed; top: 0; left: 0; right: 0;
  min-height: var(--nav-height); z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
#main-nav.scrolled {
  border-bottom-color: var(--gris-medium);
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
}
.nav-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 40px;
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; flex-shrink: 0; }
.nav-logo-img { height: 50px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text .logo-top { font-family: 'Allura', cursive; font-size: 1.15rem; font-weight: 700; color: var(--bleu); }
.nav-logo-text .logo-bottom { font-size: 0.65rem; letter-spacing: 0.18em; color: var(--texte-light); text-transform: uppercase; font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--texte); font-weight: 600;
  font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase;
  position: relative; padding-bottom: 4px; transition: color 0.2s; white-space: nowrap;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--rouge); transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--bleu); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--bleu); }
.nav-links a.active::after { width: 100%; background: var(--bleu); }
.nav-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.lang-switcher {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  color: var(--texte-light); text-decoration: none;
  border: 1.5px solid var(--gris-medium); padding: 5px 12px; border-radius: 20px; transition: var(--transition);
}
.lang-switcher:hover { border-color: var(--bleu); color: var(--bleu); }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; }
.burger span { display: block; width: 26px; height: 2px; background: var(--texte); transition: var(--transition); transform-origin: center; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu mobile */
#mobile-menu {
  position: fixed; top: var(--nav-height); left: 0; right: 0; bottom: 0;
  background: var(--blanc); z-index: 999;
  padding: 32px 24px 40px;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column; overflow-y: auto; overflow-x: hidden;
  border-top: 1px solid var(--gris-medium);
}
#mobile-menu.open { transform: translateX(0); }
/* Liens directs uniquement (pas les boutons CTA) */
#mobile-menu > a {
  display: flex; align-items: center;
  text-decoration: none; color: var(--texte);
  font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700;
  padding: 16px 0; border-bottom: 1px solid var(--gris-medium);
  transition: color 0.2s, padding-left 0.2s; white-space: normal;
}
#mobile-menu > a:hover { color: var(--bleu); padding-left: 8px; }
#mobile-menu > a[aria-current="page"] { color: var(--bleu); }
.mobile-cta-wrap { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
/* Boutons dans le menu mobile */
.mobile-cta-wrap a {
  display: flex !important; align-items: center; justify-content: center;
  text-align: center; white-space: normal !important; word-break: break-word;
  font-family: 'Nunito', sans-serif !important; font-size: 0.85rem !important;
  font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 15px 16px !important; border-radius: var(--radius);
  text-decoration: none; min-height: 52px; width: 100%; box-sizing: border-box;
}

/* ============================================================
   BOUTONS
   ============================================================ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px; background: var(--bleu); color: var(--blanc);
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.88rem;
  letter-spacing: 0.07em; text-transform: uppercase; text-decoration: none;
  border: 2px solid var(--bleu); border-radius: var(--radius);
  cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px; background: transparent; color: var(--bleu);
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.88rem;
  letter-spacing: 0.07em; text-transform: uppercase; text-decoration: none;
  border: 2px solid var(--bleu); border-radius: var(--radius);
  cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.btn-rouge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px; background: var(--rouge); color: var(--blanc);
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.88rem;
  letter-spacing: 0.07em; text-transform: uppercase; text-decoration: none;
  border: 2px solid var(--rouge); border-radius: var(--radius);
  cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.btn-blanc {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px; background: transparent; color: var(--blanc);
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.88rem;
  letter-spacing: 0.07em; text-transform: uppercase; text-decoration: none;
  border: 2px solid rgba(255,255,255,0.6); border-radius: var(--radius);
  cursor: pointer; transition: var(--transition); white-space: nowrap;
}

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: 96px 0; }
.section-bg-grey  { background: var(--gris-clair); }
.section-bg-bleu  { background: var(--bleu); color: var(--blanc); }
.section-header { text-align: center; }
.section-tag {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.73rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--rouge); margin-bottom: 14px;
}
.section-tag::before { content: ''; display: block; width: 30px; height: 2px; background: var(--rouge); }
.section-tag.center { justify-content: center; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; color: var(--bleu); line-height: 1.2; margin-bottom: 16px;
  text-wrap: balance; -webkit-text-wrap: balance;
}
.section-title em { font-style: italic; color: var(--rouge); }
.section-title.white { color: var(--blanc); }
.section-title.white em { color: var(--rouge); }
.section-subtitle {
  font-size: 1.05rem; color: var(--texte-light);
  max-width: 600px; line-height: 1.85; margin-bottom: 48px;
}
.section-subtitle.white { color: rgba(255,255,255,0.8); }
.section-subtitle.centered { margin-left: auto; margin-right: auto; }
.sep-fr { display: flex; align-items: center; gap: 14px; justify-content: center; margin: 12px 0 36px; }
.sep-fr::before, .sep-fr::after { content: ''; display: block; height: 1px; width: 80px; background: var(--gris-medium); }
.sep-icon { font-size: 1.1rem; line-height: 1; }

/* ============================================================
   GRILLES
   ============================================================ */
.grid-2  { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.layout-2col    { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.layout-60-40   { display: grid; grid-template-columns: 60fr 40fr; gap: 72px; align-items: start; }

/* ============================================================
   CARDS
   ============================================================ */
.card { background: var(--blanc); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.card-img { width: 100%; height: 280px; object-fit: cover; object-position: center; display: block; transition: transform 0.5s ease; }
.card-body { padding: 30px; }
.card-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rouge); margin-bottom: 10px; }
.card-title { font-family: 'Playfair Display', serif; font-size: 1.45rem; color: var(--bleu); margin-bottom: 12px; line-height: 1.3; }
.card-text { color: var(--texte-light); font-size: 0.95rem; line-height: 1.75; }

/* ============================================================
   HERO — ACCUEIL
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden; padding-top: var(--nav-height);
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; z-index: 0; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(15,33,73,0.80) 0%, rgba(29,58,114,0.55) 45%, rgba(0,0,0,0.20) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: var(--max-width); margin: 0 auto; padding: 0 40px; width: 100%; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255,255,255,0.85); margin-bottom: 22px; }
.hero-eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--rouge); }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem, 5vw, 4.8rem); color: var(--blanc); font-weight: 700; line-height: 1.1; max-width: 780px; margin-bottom: 10px; }
.hero-title em { font-style: italic; color: var(--rouge); }
.hero-script { display: block; font-family: 'Allura', cursive; font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight: 600; color: rgba(255,255,255,0.88); margin-bottom: 28px; }
.hero-desc { color: rgba(255,255,255,0.82); font-size: 1.08rem; max-width: 520px; line-height: 1.85; margin-bottom: 40px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badges { position: absolute; bottom: 48px; right: 48px; z-index: 2; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.hero-badge { background: rgba(255,255,255,0.14); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.28); border-radius: 50px; padding: 10px 20px; display: flex; align-items: center; gap: 10px; color: var(--blanc); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; }
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ADE80; animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%, 100% { opacity:1; transform:scale(1); } 50% { opacity:0.5; transform:scale(0.8); } }
.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.6); font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; }
.scroll-indicator .mouse { width: 22px; height: 34px; border: 2px solid rgba(255,255,255,0.4); border-radius: 12px; display: flex; justify-content: center; padding-top: 5px; }
.scroll-indicator .mouse::before { content: ''; width: 3px; height: 7px; background: rgba(255,255,255,0.6); border-radius: 2px; animation: scroll-wheel 2s ease-in-out infinite; }
@keyframes scroll-wheel { 0%, 100% { transform:translateY(0); opacity:1; } 60% { transform:translateY(8px); opacity:0; } }

/* HERO PAGES SECONDAIRES */
.page-hero { background: var(--bleu); color: var(--blanc); padding: 100px 0 72px; margin-top: var(--nav-height); position: relative; overflow: hidden; text-align: center; }
.page-hero::before { content: ''; position: absolute; top: -40%; right: -8%; width: 700px; height: 700px; border-radius: 50%; background: rgba(255,255,255,0.04); pointer-events: none; }
.page-hero-tag { font-size: 0.73rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 14px; display: block; }
.page-hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 4.2rem); font-weight: 700; line-height: 1.15; margin-bottom: 16px; position: relative; z-index: 1; text-wrap: balance; }
.page-hero-title em { font-style: italic; color: var(--rouge); }
.page-hero-desc { font-size: 1.05rem; color: rgba(255,255,255,0.78); max-width: 540px; margin: 0 auto; position: relative; z-index: 1; }

/* BREADCRUMB */
.breadcrumb-wrap { background: var(--gris-clair); border-bottom: 1px solid var(--gris-medium); padding: 12px 0; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--texte-light); flex-wrap: wrap; }
.breadcrumb a { color: var(--bleu); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { color: var(--gris-fonce); }
.breadcrumb .current { color: var(--texte-light); }

/* ============================================================
   STATS
   ============================================================ */
.stats-section { background: var(--bleu); padding: 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }
.stat-item { padding: 56px 24px; border-right: 1px solid rgba(255,255,255,0.12); position: relative; transition: background 0.3s ease; }
.stat-item:last-child { border-right: none; }
.stat-item::before { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 3px; background: var(--rouge); transition: width 0.4s ease; }
.stat-item:hover { background: rgba(255,255,255,0.04); }
.stat-item:hover::before { width: 60%; }
.stat-number { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 4.5vw, 3.8rem); font-weight: 700; color: var(--blanc); line-height: 1; margin-bottom: 10px; display: block; }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.14em; font-weight: 700; }

/* ============================================================
   CAROUSEL TÉMOIGNAGES
   ============================================================ */
.carousel-wrapper { overflow: hidden; position: relative; mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent); padding: 16px 0; }
.carousel-track { display: flex; gap: 24px; animation: carousel-scroll 36s linear infinite; width: max-content; }
.carousel-track:hover { animation-play-state: paused; }
@keyframes carousel-scroll { 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }
.review-card { width: 340px; flex-shrink: 0; background: var(--blanc); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); border-top: 3px solid var(--bleu); }
.review-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.review-stars { color: #F5B400; font-size: 0.9rem; letter-spacing: 2px; }
.review-occasion { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rouge); margin-bottom: 12px; }
.review-text { font-size: 0.92rem; color: var(--texte); line-height: 1.75; font-style: italic; margin-bottom: 18px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--bleu); color: var(--blanc); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.88rem; flex-shrink: 0; }
.review-name { font-weight: 700; font-size: 0.88rem; color: var(--bleu); }
.review-sub { font-size: 0.75rem; color: var(--texte-light); }

/* ============================================================
   FORMULAIRE
   ============================================================ */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-weight: 700; font-size: 0.87rem; color: var(--texte); margin-bottom: 8px; letter-spacing: 0.02em; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--gris-medium); border-radius: var(--radius);
  font-family: 'Nunito', sans-serif; font-size: 0.95rem; color: var(--texte);
  background: var(--blanc); transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none; -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--bleu); box-shadow: 0 0 0 3px rgba(29,58,114,0.10); }
.form-textarea { min-height: 140px; resize: vertical; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; padding-right: 44px; cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; }
.form-check input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; width: 16px; height: 16px; accent-color: var(--bleu); cursor: pointer; }
.form-check label { font-size: 0.85rem; color: var(--texte-light); line-height: 1.6; cursor: pointer; }
.form-check label a { color: var(--bleu); text-decoration: underline; }
.form-note { font-size: 0.8rem; color: var(--gris-fonce); margin-top: 6px; }
#form-success { display: none; padding: 16px 20px; border-radius: var(--radius); background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; font-weight: 600; font-size: 0.9rem; margin-bottom: 16px; }
#form-error { display: none; padding: 16px 20px; border-radius: var(--radius); background: #fce4ec; color: #c62828; border: 1px solid #ef9a9a; font-weight: 600; font-size: 0.9rem; margin-bottom: 16px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-item { border-bottom: 1px solid var(--gris-medium); }
.faq-question { width: 100%; text-align: left; padding: 22px 0; background: none; border: none; cursor: pointer; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 1rem; color: var(--bleu); display: flex; justify-content: space-between; align-items: center; gap: 20px; transition: color 0.2s; }
.faq-question:hover { color: var(--rouge); }
.faq-icon { width: 30px; height: 30px; border-radius: 50%; border: 2px solid currentColor; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 300; transition: var(--transition); line-height: 1; }
.faq-question[aria-expanded="true"] .faq-icon { background: var(--bleu); color: var(--blanc); border-color: var(--bleu); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer.open { max-height: 500px; }
.faq-answer-inner { padding: 0 0 22px; color: var(--texte-light); line-height: 1.85; font-size: 0.95rem; }

/* ============================================================
   ANIMATIONS REVEAL + STAGGER
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.20s; }
.delay-3 { transition-delay: 0.30s; }
.delay-4 { transition-delay: 0.40s; }
.delay-5 { transition-delay: 0.50s; }
.stagger-child { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.stagger-child.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   EXPÉRIENCE CARDS — HORIZONTAL (Nos Expériences section)
   ============================================================ */
.escapade-cards { display: flex; flex-direction: column; gap: 24px; max-width: 960px; margin: 0 auto; }
.escapade-card { display: grid; grid-template-columns: 320px 1fr; border-radius: var(--radius-lg); overflow: hidden; background: var(--blanc); box-shadow: var(--shadow); transition: var(--transition); }
.escapade-card-img { position: relative; min-height: 240px; overflow: hidden; }
.escapade-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 0.5s ease; }
.escapade-card-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(29,58,114,0.50) 0%, rgba(15,33,73,0.35) 100%); }
.escapade-card-badge { position: absolute; top: 16px; left: 16px; color: var(--blanc); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; }
.escapade-card-duration { position: absolute; bottom: 16px; left: 16px; font-family: 'Playfair Display', serif; color: var(--blanc); font-size: 1.05rem; font-weight: 700; text-shadow: 0 1px 4px rgba(0,0,0,0.4); }
.escapade-card-body { padding: 28px 36px; display: flex; flex-direction: column; justify-content: center; }
.escapade-card-body .card-title { font-size: 1.5rem; margin-bottom: 10px; }
.escapade-card-body .card-text { margin-bottom: 16px; max-width: 540px; }
.escapade-card-body .btn-primary, .escapade-card-body .btn-rouge, .escapade-card-body .btn-secondary { width: auto; align-self: flex-start; margin-top: 20px; }
.expérience-inclus { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 4px 20px; }
.expérience-inclus li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.87rem; color: var(--texte-light); padding: 3px 0; line-height: 1.5; }
.bullet-rouge { color: var(--rouge); font-size: 0.65rem; flex-shrink: 0; margin-top: 4px; }

/* ============================================================
   FOOTER
   ============================================================ */
#main-footer { background: var(--bleu); color: var(--blanc); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-logo-wrap { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer-logo-img { height: 54px; width: auto; filter: brightness(0) invert(1); }
.footer-brand { font-family: 'Allura', cursive; font-size: 1.5rem; font-weight: 700; color: var(--blanc); }
.footer-brand-sub { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.5); display: block; margin-top: 2px; }
.footer-desc { font-size: 0.9rem; color: rgba(255,255,255,0.68); line-height: 1.85; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social-link { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.10); display: flex; align-items: center; justify-content: center; color: var(--blanc); text-decoration: none; transition: var(--transition); }
.footer-col-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--blanc); }
.footer-contact-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.footer-contact-row a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s; }
.footer-contact-row a:hover { color: var(--blanc); }
.footer-contact-icon { flex-shrink: 0; margin-top: 2px; font-size: 0.95rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.10); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.44); }
.footer-bottom a { color: rgba(255,255,255,0.44); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.75); }
.footer-bottom-links { display: flex; gap: 20px; }

/* ============================================================
   PAGE COMING SOON (Notre Histoire, Circuits en cours)
   ============================================================ */
.construction-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; flex-direction: column; position: relative; overflow: hidden; text-align: center; padding: var(--nav-height) 40px 80px; background: var(--bleu-dark); }
.construction-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; z-index: 0; filter: grayscale(30%); }
.construction-stripe { position: absolute; top: 0; left: 0; right: 0; height: 4px; display: flex; z-index: 2; }
.construction-stripe span:nth-child(1) { flex:1; background: var(--bleu); }
.construction-stripe span:nth-child(2) { flex:1; background: var(--blanc); }
.construction-stripe span:nth-child(3) { flex:1; background: var(--rouge); }
.construction-content { position: relative; z-index: 1; max-width: 680px; animation: cs-enter 1s ease both; }
@keyframes cs-enter { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
.construction-eyebrow { display: inline-flex; align-items: center; gap: 14px; font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.4); font-weight: 700; margin-bottom: 28px; }
.construction-eyebrow::before, .construction-eyebrow::after { content: ''; display: block; width: 36px; height: 1px; background: rgba(255,255,255,0.2); }
.construction-soon { font-family: 'Allura', cursive; font-size: clamp(5rem, 14vw, 10rem); font-weight: 700; color: var(--blanc); line-height: 0.88; margin-bottom: 14px; text-shadow: 0 8px 48px rgba(0,0,0,0.5); }
.construction-page-name { font-family: 'Playfair Display', serif; font-size: clamp(1rem, 2.5vw, 1.5rem); color: rgba(255,255,255,0.6); font-style: italic; letter-spacing: 0.06em; margin-bottom: 36px; }
.construction-sep { display: flex; align-items: center; justify-content: center; gap: 6px; margin-bottom: 32px; }
.cs-line { width: 48px; height: 1px; background: rgba(255,255,255,0.15); }
.flag-dot { width: 9px; height: 9px; border-radius: 50%; }
.flag-dot-b { background: var(--bleu); } .flag-dot-w { background: rgba(255,255,255,0.85); } .flag-dot-r { background: var(--rouge); }
.construction-desc { color: rgba(255,255,255,0.55); font-size: 0.98rem; line-height: 1.85; margin-bottom: 40px; max-width: 460px; margin-left: auto; margin-right: auto; }
.construction-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.construction-contact { font-size: 0.82rem; color: rgba(255,255,255,0.32); }
.construction-contact a { color: rgba(255,255,255,0.6); text-decoration: none; font-weight: 700; transition: color 0.2s; }
.construction-contact a:hover { color: var(--blanc); }
.cs-deco { position: absolute; pointer-events: none; z-index: 0; }
.cs-deco-ring-1 { top: 12%; right: 7%; width: 200px; height: 200px; border: 1px solid rgba(255,255,255,0.05); border-radius: 50%; }
.cs-deco-ring-2 { bottom: 18%; left: 5%; width: 130px; height: 130px; border: 1px solid rgba(200,16,46,0.12); border-radius: 50%; }

/* ============================================================
   UTILITAIRES
   ============================================================ */
.text-center { text-align: center; }
.text-bleu { color: var(--bleu); } .text-rouge { color: var(--rouge); }
.mt-32 { margin-top: 32px; } .mb-0 { margin-bottom: 0; } .mb-32 { margin-bottom: 32px; }
.info-box { background: var(--gris-clair); border-left: 3px solid var(--bleu); border-radius: 0 var(--radius) var(--radius) 0; padding: 16px 20px; font-size: 0.9rem; color: var(--texte-light); line-height: 1.7; }
.pill { display: inline-block; padding: 4px 14px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.pill-bleu { background: rgba(29,58,114,0.10); color: var(--bleu); }
.pill-rouge { background: rgba(200,16,46,0.10); color: var(--rouge); }
.badge-dispo { display: inline-flex; align-items: center; gap: 8px; font-size: 0.78rem; font-weight: 700; color: #16A34A; background: #DCFCE7; border: 1px solid #BBF7D0; padding: 5px 14px; border-radius: 20px; }
.badge-dispo .dot-green { width: 7px; height: 7px; border-radius: 50%; background: #16A34A; animation: pulse-dot 2s infinite; }

/* ============================================================
   HOVER — UNIQUEMENT APPAREILS AVEC SOURIS
   ============================================================ */
@media (hover: hover) {
  .card:hover { box-shadow: var(--shadow-hover); transform: translateY(-5px); }
  .card:hover .card-img { transform: scale(1.04); }
  .escapade-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
  .escapade-card:hover .escapade-card-img img { transform: scale(1.04); }
  .btn-primary:hover { background: var(--bleu-dark); border-color: var(--bleu-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(29,58,114,0.35); }
  .btn-rouge:hover { background: var(--rouge-dark); border-color: var(--rouge-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,16,46,0.35); }
  .btn-secondary:hover { background: var(--bleu); color: var(--blanc); transform: translateY(-2px); }
  .btn-blanc:hover { background: rgba(255,255,255,0.15); border-color: var(--blanc); }
  .footer-social-link:hover { background: var(--rouge); transform: translateY(-2px); }
  .stat-item:hover { background: rgba(255,255,255,0.04); }
}
@media (hover: none) {
  .card:hover, .escapade-card:hover { transform: none; box-shadow: var(--shadow); }
  .btn-primary:hover, .btn-rouge:hover, .btn-secondary:hover { transform: none; }
}

/* ============================================================
   RESPONSIVE — TABLETTE (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .layout-2col, .layout-60-40 { grid-template-columns: 1fr; gap: 48px; }
  /* Sur mobile/tablette : toujours le CONTENU d'abord, IMAGE après */
/* Ordre mobile géré spécifiquement par .escapade-image-col / .escapade-text-col */
  .escapade-card { grid-template-columns: 260px 1fr; }
  .expérience-inclus { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .stat-item { padding: 40px 16px; }
  section { padding: 80px 0; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --nav-height: 68px; }
  html, body { overflow-x: hidden; }
  .container { padding: 0 18px; }
  section { padding: 56px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero-script { font-size: clamp(1.3rem, 5vw, 1.8rem); }
  .section-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .form-row { grid-template-columns: 1fr; }
  .btn-primary, .btn-secondary, .btn-rouge, .btn-blanc { width: 100%; justify-content: center; white-space: normal; text-align: center; min-height: 52px; }
  .hero-btns { flex-direction: column; gap: 12px; }
  .hero-badges, .scroll-indicator { display: none; }
  .review-card { width: 260px; }
  .carousel-track { animation-duration: 24s; }
  .hero { min-height: 100svh; min-height: 100vh; align-items: flex-end; padding-bottom: 64px; }
  .hero-content { padding: 0 18px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.10); padding: 32px 12px; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.10); }
  .stat-item:last-child, .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
  .escapade-card { grid-template-columns: 1fr; }
  .escapade-card-img { min-height: 200px; max-height: 220px; }
  .escapade-card-body { padding: 22px 20px; }
  .escapade-card-body .btn-primary, .escapade-card-body .btn-rouge, .escapade-card-body .btn-secondary { width: 100%; justify-content: center; align-self: stretch; }
  .page-hero { padding: 80px 0 52px; }
  .page-hero-title { font-size: clamp(1.9rem, 8vw, 2.8rem); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; flex-wrap: wrap; }
  .construction-page { padding: var(--nav-height) 20px 56px; }
  .construction-soon { font-size: clamp(4rem, 16vw, 6rem); }
  .construction-btns { flex-direction: column; align-items: stretch; }
  .construction-btns a { justify-content: center; }
}

/* ============================================================
   TRÈS PETIT MOBILE (≤ 380px)
   ============================================================ */
@media (max-width: 380px) {
  .hero-title { font-size: 2.1rem; }
  .hero-script { font-size: 1.4rem; }
  .section-title { font-size: 1.7rem; }
  .nav-logo-text { display: none; }
  .nav-logo-img { height: 42px; }
  .stat-number { font-size: 2rem; }
}


/* ============================================================
   ÉLÉMENTS CHARTE GRAPHIQUE BENJAMIN
   ============================================================ */

/* Police script élégante (style logo + brochures) */
.script-allura {
  font-family: 'Allura', cursive;
  font-weight: 400;
}

/* Accent or pour Bespoke / premium */
.accent-or {
  color: var(--or);
}
.bg-or {
  background: var(--or);
  color: var(--blanc);
}
.border-or {
  border-color: var(--or) !important;
}

/* Bandeau rouge brochure "A UNIQUE & AUTHENTIC EXPERIENCE" */
.banner-tagline {
  background: linear-gradient(135deg, var(--rouge) 0%, var(--rouge-dark) 100%);
  color: var(--blanc);
  text-align: center;
  padding: 16px 28px;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 4px;
  box-shadow: 0 6px 24px rgba(200,16,46,0.30);
  display: inline-block;
  position: relative;
}
.banner-tagline::before,
.banner-tagline::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 2px;
  background: rgba(255,255,255,0.5);
}
.banner-tagline::before { left: -50px; }
.banner-tagline::after  { right: -50px; }

/* Section marinière (rayures bleu marine sur fond blanc) */
.section-stripes {
  background: repeating-linear-gradient(
    180deg,
    var(--blanc) 0,
    var(--blanc) 18px,
    var(--bleu) 18px,
    var(--bleu) 22px
  );
  position: relative;
}
.section-stripes-inner {
  background: var(--blanc);
  margin: 50px auto;
  padding: 50px 30px;
  border-radius: 10px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.12);
}

/* Polaroid photo cards */
.polaroid-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px;
  margin-top: 32px;
}
.polaroid {
  background: var(--blanc);
  padding: 12px 12px 36px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
  border-radius: 2px;
  position: relative;
  transition: var(--transition);
}
.polaroid:nth-child(odd)  { transform: rotate(-2deg); }
.polaroid:nth-child(even) { transform: rotate(2deg); }
.polaroid:hover {
  transform: rotate(0) scale(1.05);
  z-index: 10;
  box-shadow: 0 20px 48px rgba(0,0,0,0.30);
}
.polaroid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  background: #f0f0f0;
}
.polaroid-caption {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Allura', cursive;
  font-size: 1.3rem;
  color: var(--bleu);
  line-height: 1;
}

/* Cercle prix style brochure "FROM 70€" */
.price-circle {
  background: var(--rouge);
  color: var(--blanc);
  border-radius: 50%;
  width: 130px;
  height: 130px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(200,16,46,0.35);
  border: 3px solid var(--blanc);
  outline: 1px solid var(--rouge);
}
.price-circle-from {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}
.price-circle-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
.price-circle-per {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 4px;
}


/* ============================================================
   LOGO AGRANDI (sans texte) — nouvelle version
   ============================================================ */
.nav-logo-large {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img-large {
  width: 86px;
  height: 86px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.nav-logo-large:hover .nav-logo-img-large {
  transform: scale(1.05);
}
/* Sur mobile : un peu plus petit */
@media (max-width: 768px) {
  .nav-logo-img-large {
    width: 62px;
    height: 62px;
  }
}

/* ============================================================
   BOUTON WHATSAPP FLOTTANT
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.40), 0 4px 12px rgba(0,0,0,0.10);
  z-index: 9998;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: wa-pulse 2.5s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.10);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55), 0 6px 16px rgba(0,0,0,0.15);
  animation: none;
}
.wa-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}
.wa-float-label {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: var(--bleu);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.wa-float:hover .wa-float-label {
  opacity: 1;
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.40), 0 4px 12px rgba(0,0,0,0.10), 0 0 0 0 rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 8px 24px rgba(37,211,102,0.40), 0 4px 12px rgba(0,0,0,0.10), 0 0 0 18px rgba(37,211,102,0); }
}
@media (max-width: 768px) {
  .wa-float {
    bottom: 18px;
    right: 18px;
    width: 54px;
    height: 54px;
  }
  .wa-float svg { width: 28px; height: 28px; }
  .wa-float-label { display: none; }
}


/* ============================================================
   HERO SLIDESHOW 5 photos défilement auto + overlay light
   ============================================================ */
.hero-slideshow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-slideshow .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  z-index: 1;
}
.hero-slideshow .hero-slide.active {
  opacity: 1;
  z-index: 2;
}
/* Overlay noir avec dégradé pour assurer la lisibilité du texte sur la photo */
.hero-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.40) 0%, rgba(0,0,0,0.65) 60%, rgba(0,0,0,0.75) 100%) !important;
}

/* ============================================================
   BANDEAU TRICOLORE (Cannes · Antibes · French Riviera)
   ============================================================ */
.hero-eyebrow-tricolor {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 20px;
  border-radius: 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  letter-spacing: 0.16em;
}
.hero-eyebrow-tricolor .stripe-blue,
.hero-eyebrow-tricolor .stripe-red {
  display: inline-block;
  width: 28px;
  height: 3px;
  border-radius: 1.5px;
}
.hero-eyebrow-tricolor .stripe-blue { background: #002395; }
.hero-eyebrow-tricolor .stripe-red  { background: #ED2939; }
.hero-eyebrow-tricolor .stripe-text {
  color: #fff;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
}

/* ============================================================
   BADGE PERSONNALISATION (covering magnétique) sur section mariages
   ============================================================ */
.badge-personnalisation {
  position: absolute;
  top: 20px;
  right: -12px;
  background: #fff;
  border-radius: 8px;
  padding: 14px 18px;
  box-shadow: 0 8px 24px rgba(29,58,114,0.15);
  border-left: 3px solid var(--rouge);
  max-width: 230px;
  z-index: 5;
}
.badge-personnalisation-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--rouge);
  font-weight: 700;
  margin-bottom: 6px;
}
.badge-personnalisation-text {
  font-size: 0.92rem;
  color: var(--bleu);
  font-weight: 600;
  line-height: 1.4;
}


/* ============================================================
   CARROUSEL — système réutilisable
   Utilisé pour : Expériences photos, Mariages, Shooting, Hero, etc.
   ============================================================ */
.fr2cv-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}
.fr2cv-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.fr2cv-carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
}
.fr2cv-carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.fr2cv-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Indicateurs (dots) */
.fr2cv-carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.fr2cv-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.fr2cv-carousel-dot.active {
  width: 22px;
  border-radius: 4px;
  background: #fff;
}
/* Flèches navigation */
.fr2cv-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: all 0.25s ease;
  font-size: 18px;
  color: var(--bleu);
}
.fr2cv-carousel-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.08);
}
.fr2cv-carousel-arrow.prev { left: 14px; }
.fr2cv-carousel-arrow.next { right: 14px; }
@media (max-width: 768px) {
  .fr2cv-carousel-arrow { width: 36px; height: 36px; font-size: 16px; }
}


/* FIX : annuler la barre rouge ::before quand on a le bandeau tricolore */
.hero-eyebrow-tricolor::before {
  display: none !important;
}

/* FIX : hero-title — éviter débordement sur grand écran */
.hero-title {
  max-width: 880px !important;
  overflow-wrap: break-word;
  word-wrap: break-word;
  text-wrap: balance;
  hyphens: auto;
  font-size: clamp(2.2rem, 4.5vw, 4rem) !important;
}
.hero-desc {
  max-width: 720px;
  overflow-wrap: break-word;
}


  .nav-bottom .nav-links a { font-size: 0.72rem !important; }
  }


/* ============================================================
   HEADER UNE LIGNE — Logo centré + menu split + lang/CTA droite
   ============================================================ */
#main-nav {
  background: #fff;
  border-bottom: 1px solid rgba(29,58,114,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-onebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  max-width: 1600px;
  margin: 0 auto;
  gap: 16px;
  position: relative;
  min-height: 70px;
}

/* Menu gauche & droite (desktop) */
.nav-links-left,
.nav-links-right {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 22px;
  flex: 1;
}
.nav-links-left  { justify-content: flex-end; }
.nav-links-right { justify-content: flex-start; }

.nav-links-left a,
.nav-links-right a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bleu);
  text-decoration: none;
  padding: 6px 0;
  position: relative;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.nav-links-left a::after,
.nav-links-right a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--rouge);
  transition: width 0.3s ease;
}
.nav-links-left a:hover::after,
.nav-links-left a.active::after,
.nav-links-right a:hover::after,
.nav-links-right a.active::after {
  width: 100%;
}
.nav-links-left a:hover,
.nav-links-left a.active,
.nav-links-right a:hover,
.nav-links-right a.active {
  color: var(--rouge);
}

/* Logo centré */
.nav-logo-centered {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  padding: 0 24px;
}
.nav-logo-centered:hover { transform: scale(1.04); }
/* CTA droite (lang + bouton réserver) */
.nav-cta-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.lang-switcher {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--bleu);
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid rgba(29,58,114,0.2);
  border-radius: 20px;
  transition: all 0.2s ease;
}
.lang-switcher:hover {
  background: var(--bleu);
  color: #fff;
  border-color: var(--bleu);
}
.nav-cta-btn {
  padding: 10px 22px !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Burger (mobile) */
.burger-left {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  flex-shrink: 0;
}
.burger-left span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bleu);
  transition: all 0.3s ease;
}

/* Très grand écran : un peu plus d'espace */
@media (min-width: 1500px) {
  .nav-links-left, .nav-links-right { gap: 32px; }
  .nav-links-left a, .nav-links-right a { font-size: 0.82rem; }
}

/* Tablette : libellés un peu plus serrés */
@media (max-width: 1280px) {
  .nav-links-left, .nav-links-right { gap: 16px; }
  .nav-links-left a, .nav-links-right a { font-size: 0.72rem; letter-spacing: 0.04em; }
.nav-onebar { padding: 6px 16px; }
}

/* MOBILE : burger + logo centré + lang */
@media (max-width: 1024px) {
  .desktop-only,
  .desktop-only-lg { display: none !important; }
  .burger-left { display: flex; }
  .nav-logo-centered {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
  }
  .nav-logo-centered:hover { transform: translateX(-50%) scale(1.04); }
.nav-onebar {
    padding: 8px 14px;
    min-height: 64px;
    justify-content: space-between;
  }
  .nav-cta-right { margin-left: auto; }
}

/* Petit mobile */
@media (max-width: 480px) {
.lang-switcher { padding: 4px 10px; font-size: 0.7rem; }
}

/* Override de l'ancien CSS qui peut conflicter */
.nav-inner { display: none !important; }


/* FIX FINAL : header une ligne — bouton Réserver toujours visible sur desktop */
.nav-onebar {
  padding: 6px 20px !important;
  min-height: 64px !important;
  gap: 12px !important;
}
.nav-links-left, .nav-links-right {
  gap: 18px !important;
}
.nav-links-left a, .nav-links-right a {
  font-size: 0.74rem !important;
  letter-spacing: 0.04em !important;
}
.nav-cta-btn {
  padding: 8px 16px !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.06em;
}
.lang-switcher {
  padding: 5px 10px !important;
  font-size: 0.7rem !important;
}

/* Très grand écran : un peu plus aéré */
@media (min-width: 1500px) {
.nav-links-left, .nav-links-right { gap: 26px !important; }
  .nav-links-left a, .nav-links-right a { font-size: 0.8rem !important; letter-spacing: 0.06em !important; }
  .nav-cta-btn { padding: 10px 22px !important; font-size: 0.78rem !important; }
  .nav-onebar { padding: 8px 32px !important; min-height: 78px !important; }
}

/* Tablette/laptop étroit : réduire encore */
@media (max-width: 1280px) and (min-width: 1025px) {
  .nav-onebar { gap: 8px !important; padding: 6px 14px !important; }
  .nav-links-left, .nav-links-right { gap: 12px !important; }
  .nav-links-left a, .nav-links-right a { font-size: 0.68rem !important; letter-spacing: 0.03em !important; }
.nav-cta-btn { padding: 6px 12px !important; font-size: 0.66rem !important; }
}

/* MOBILE : tout caché sauf burger + logo + lang/CTA */
@media (max-width: 1024px) {
  .desktop-only { display: none !important; }
  .burger-left { display: flex !important; }
  .nav-cta-btn { display: none; }  /* Caché uniquement sur mobile */
}


/* ============================================================
   CARDS EXPÉRIENCES HOMEPAGE V2 (avec carrousel + durée + tarif)
   ============================================================ */
.escapade-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .escapade-cards-grid { grid-template-columns: 1fr; }
}

.escapade-card-v2 {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(29,58,114,0.10);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.escapade-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(29,58,114,0.16);
}

.escapade-card-carousel {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.escapade-card-carousel .fr2cv-carousel { height: 100% !important; }

/* Badge en overlay sur le carrousel */
.escapade-badge-overlay {
  position: absolute;
  top: 16px;
  left: 16px;
  color: #fff;
  padding: 6px 14px;
  border-radius: 18px;
  font-family: 'Allura', cursive;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(0,0,0,0.20);
  z-index: 6;
}

.escapade-card-body-v2 {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.escapade-card-tag-script {
  font-family: 'Allura', cursive;
  font-size: 1.5rem;
  color: var(--rouge);
  font-weight: 700;
  line-height: 1;
  margin-bottom: -4px;
}

.escapade-card-title-v2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  color: var(--bleu);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.escapade-meta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--gris-medium);
  border-bottom: 1px solid var(--gris-medium);
}
.escapade-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.escapade-meta-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--texte-light);
}
.escapade-meta-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--bleu);
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.prix-old {
  font-size: 0.85rem;
  color: var(--texte-light);
  text-decoration: line-through;
  font-weight: 500;
}
.prix-new {
  color: var(--rouge);
}

.escapade-card-desc-v2 {
  color: var(--texte-light);
  line-height: 1.7;
  font-size: 0.94rem;
  margin: 0;
  flex: 1;
}

.escapade-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.escapade-card-actions .btn-secondary,
.escapade-card-actions .btn-primary {
  flex: 1;
  text-align: center;
  font-size: 0.78rem !important;
  padding: 11px 14px !important;
  letter-spacing: 0.06em;
}


/* ============================================================
   SECTION TAG TRICOLORE (style drapeau français)
   ============================================================ */
.section-tag-tricolor {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rouge);
}
.section-tag-tricolor .tricolor-stripe-blue,
.section-tag-tricolor .tricolor-stripe-red {
  display: inline-block;
  width: 32px;
  height: 2px;
  border-radius: 1px;
}
.section-tag-tricolor .tricolor-stripe-blue { background: #002395; }
.section-tag-tricolor .tricolor-stripe-red  { background: #ED2939; }

/* ============================================================
   BADGE PERSONNALISATION DISCRET (bas droite carrousel)
   ============================================================ */
.badge-personnalisation-discret {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 10px 14px;
  border-radius: 8px;
  border-left: 3px solid var(--rouge);
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  max-width: 200px;
  z-index: 6;
}
.badge-personnalisation-discret .badge-perso-label {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rouge);
  margin-bottom: 4px;
}
.badge-personnalisation-discret .badge-perso-text {
  display: block;
  font-size: 0.78rem;
  color: var(--bleu);
  font-weight: 600;
  line-height: 1.35;
}
@media (max-width: 768px) {
  .badge-personnalisation-discret {
    bottom: 8px;
    right: 8px;
    padding: 8px 10px;
    max-width: 160px;
  }
  .badge-personnalisation-discret .badge-perso-text { font-size: 0.7rem; }
}


/* ============================================================
   OVERLAY HORAIRES sur carrousel page Nos Expériences
   ============================================================ */
.carousel-horaires-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.55) 30%, rgba(0,0,0,0.85) 100%);
  padding: 32px 18px 22px;
  z-index: 5;
  pointer-events: none;
}
.horaires-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
  text-align: center;
}
.horaires-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  pointer-events: auto;
}
.horaire-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.96);
  color: var(--bleu);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.20);
  white-space: nowrap;
}
.horaire-chip::before {
  content: '🕐';
  font-size: 0.85rem;
}
@media (max-width: 768px) {
  .carousel-horaires-overlay { padding: 28px 12px 18px; }
  .horaire-chip { font-size: 0.7rem; padding: 4px 9px; }
}


/* FIX : séparateur 5 étoiles pour la section Avis Clients */
.sep-fr-stars {
  gap: 6px !important;
}
.sep-fr-stars .sep-icon {
  font-size: 1rem;
  background: transparent;
  padding: 0;
  line-height: 1;
}


/* ============================================================
   MOBILE : ordre titre → carrousel → description sur page Nos Expériences
   ============================================================ */
@media (max-width: 1024px) {
  /* Sur mobile : le carrousel apparaît AVANT le bloc texte */
}


/* ============================================================
   LOGO PLUS GRAND (desktop + mobile)
   ============================================================ */
@media (min-width: 1500px) {
}
@media (max-width: 1280px) and (min-width: 1025px) {
}
@media (max-width: 1024px) {
}
@media (max-width: 480px) {
}

/* ============================================================
   HEADER MOBILE : masquage au scroll down / réapparition au scroll up
   ============================================================ */
#main-nav {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 1024px) {
  #main-nav.header-hidden {
    transform: translateY(-100%);
  }
}
/* Sur desktop, le header reste toujours visible (pas de classe appliquée) */
@media (min-width: 1025px) {
  #main-nav.header-hidden {
    transform: none;
  }
}


/* ============================================================
   LOGO HEADER — règles uniques et finales (tailles bien grosses)
   ============================================================ */
.nav-logo-img-centered {
  width: auto;
  height: 96px;
  object-fit: contain;
}
/* Très grand écran : encore plus gros */
@media (min-width: 1500px) {
  .nav-logo-img-centered { width: auto; height: 112px; }
}
/* Laptop : un peu plus petit */
@media (max-width: 1280px) and (min-width: 1025px) {
  .nav-logo-img-centered { width: auto; height: 84px; }
}
/* Tablette / mobile : grand mais adapté */
@media (max-width: 1024px) {
  .nav-logo-img-centered { width: auto; height: 88px; }
}
/* Petit mobile : conserver une bonne taille */
@media (max-width: 480px) {
  .nav-logo-img-centered { width: auto; height: 78px; }
}
/* Tiny mobile */
@media (max-width: 360px) {
  .nav-logo-img-centered { width: auto; height: 70px; }
}


/* ============================================================
   ORDRE MOBILE PAGE NOS EXPÉRIENCES : titre → image → texte
   Sur desktop : alternance gauche/droite (comportement par défaut)
   Sur mobile : toujours image en premier dans le layout-2col
   ============================================================ */
@media (max-width: 1024px) {
  .escapade-image-col {
    order: 1 !important;
    width: 100% !important;
  }
  .escapade-text-col {
    order: 2 !important;
    width: 100% !important;
  }
  /* Le titre mobile est déjà au-dessus du layout-2col */
}


/* ============================================================
   HEADER : hauteur ajustée pour contenir le logo agrandi
   ============================================================ */
.nav-onebar {
  padding: 4px 20px !important;
  min-height: 88px !important;
  align-items: center !important;
}
/* Très grand écran : encore plus aéré */
@media (min-width: 1500px) {
  .nav-onebar {
    padding: 6px 32px !important;
    min-height: 104px !important;
  }
}
/* Laptop */
@media (max-width: 1280px) and (min-width: 1025px) {
  .nav-onebar {
    padding: 4px 16px !important;
    min-height: 80px !important;
  }
}
/* Tablette / mobile */
@media (max-width: 1024px) {
  .nav-onebar {
    padding: 4px 14px !important;
    min-height: 82px !important;
  }
}
/* Petit mobile */
@media (max-width: 480px) {
  .nav-onebar {
    padding: 3px 12px !important;
    min-height: 74px !important;
  }
}
/* Tiny mobile */
@media (max-width: 360px) {
  .nav-onebar {
    min-height: 70px !important;
  }
}


/* Variable --nav-height responsive (mise à jour pour le logo agrandi) */
@media (min-width: 1500px) {
  :root { --nav-height: 112px; }
}
@media (max-width: 1280px) and (min-width: 1025px) {
  :root { --nav-height: 86px; }
}
@media (max-width: 1024px) {
  :root { --nav-height: 88px; }
}
@media (max-width: 480px) {
  :root { --nav-height: 78px; }
}
@media (max-width: 360px) {
  :root { --nav-height: 72px; }
}


/* ============================================================
   ANCRES : offset pour éviter que le header masque la section ciblée
   ============================================================ */
section[id="iconic"],
section[id="iconic-apero"],
section[id="elevated"],
section[id="bespoke"] {
  scroll-margin-top: calc(var(--nav-height) + 24px);
}
html { scroll-behavior: smooth; }
