/* ============================================================
   CSS SITE — Variables & Reset
============================================================ */
:root {
  --gradient-start: #1a0f2e;
  --gradient-end:   #e65c25;
  --primary-color:  #800000;
  --secondary-color:#4a0000;
  --text-dark:      #333333;
  --text-muted:     #666666;
  --border-radius:  8px;
  --transition:     all 0.3s ease;
  --white:          #ffffff;
  --bg-light:       #f5f5f5;
  --border-light:   #eeeeee;
}

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

body {
  font-family:'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height:1.6;
  color:var(--text-dark);
  background:var(--bg-light);
  -webkit-font-smoothing:antialiased;
}

h1,h2,h3,h4,h5,h6 {
  font-family:'Quicksand', sans-serif;
  font-weight:700;
}

p { text-align:left; }

/* =========================
   UTILITAIRES
========================= */
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.hidden  { display:none !important; }
.gradient-bg { background:linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%); }
.text-center { text-align:center !important; }

/* =========================
   HEADER
========================= */
.header {
  position:fixed; top:0; width:100%;
  background:white;
  box-shadow:0 2px 10px rgba(0,0,0,.1);
  z-index:50;
}
.main-container {
  display:flex; align-items:center; justify-content:space-between;
  max-width:850px; margin:0 auto; padding:12px 24px;
}
.logo img { height:48px; width:auto; }
.navMenu { display:none; cursor:pointer; padding:8px; }
.navMenu svg { width:24px; height:24px; stroke:currentColor; stroke-width:2; fill:none; transition:transform .3s; }
.navMenu:hover svg { transform:scale(1.1); }
#navInput { display:none; }
.nav ul { display:flex; list-style:none; align-items:center; gap:24px; margin:0; padding:0; }
.nav a  { text-decoration:none; color:#374151; font-weight:500; font-size:14px; transition:color .3s; position:relative; }
.nav a:hover { color:var(--primary-color); }
.nav a::after { content:''; position:absolute; width:0; height:2px; bottom:-4px; left:50%; background:var(--primary-color); transition:all .3s; transform:translateX(-50%); }
.nav a:hover::after { width:100%; }
.close-nav { display:none; }
.fullclose  { display:none; position:fixed; }

/* =========================
   BOUTONS
========================= */
.cta-button {
  display:inline-block;
  background:linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
  color:var(--white); padding:1rem 2rem;
  text-decoration:none; border-radius:var(--border-radius);
  font-weight:700; font-family:'Quicksand',sans-serif;
  margin-top:1rem; transition:var(--transition);
  cursor:pointer; border:none; font-size:1rem;
}
.cta-button:hover { background:linear-gradient(135deg, var(--gradient-end) 0%, var(--gradient-start) 100%); }
.cta-button--light   { background:white; color:var(--primary-color); }
.cta-button--light:hover { background:#f5f5f5; }
.cta-button--outline { background:transparent; border:2px solid white; color:white; }
.cta-button--outline:hover { background:white; color:var(--primary-color); }
.cta-button--sm { padding:.65rem 1.4rem; font-size:.88rem; margin-top:.5rem; }

/* =========================
   CONTAINER
========================= */
.container { max-width:1200px; margin:0 auto; padding:0 24px; }

/* =========================
   HERO
========================= */
.hero-meet {
  background:linear-gradient(135deg, #0d0a1a 0%, #2a1208 55%, #1a0f2e 100%);
  color:white; padding:120px 24px 72px;
  position:relative; overflow:hidden;
  min-height:72vh; display:flex; align-items:center;
}

/* Grille discrète */
.hero-meet::before {
  content:''; position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size:56px 56px;
  pointer-events:none;
}

/* Halo */
.hero-meet::after {
  content:''; position:absolute;
  right:-5%; bottom:-20%;
  width:65vw; height:65vw;
  background:radial-gradient(ellipse, rgba(230,92,37,.15) 0%, transparent 65%);
  pointer-events:none;
}

.hero-meet__inner {
  position:relative; z-index:2;
  max-width:1200px; width:100%;
  margin:0 auto; padding:0 24px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:4rem; align-items:center;
}

.hero-meet__eyebrow {
  display:inline-flex; align-items:center; gap:.65rem;
  font-size:.68rem; font-weight:600;
  letter-spacing:.24em; text-transform:uppercase;
  color:var(--gradient-end); margin-bottom:1.2rem;
}
.hero-meet__eyebrow::before {
  content:''; display:block; width:22px; height:2px;
  background:var(--gradient-end); border-radius:2px;
}

.hero-meet h1 {
  font-size:clamp(2rem,4.5vw,3.2rem);
  line-height:1.1; color:white; text-align:left;
  margin-bottom:1.25rem;
}
.hero-meet h1 em { font-style:normal; color:var(--gradient-end); }

.hero-meet__lead {
  font-size:1rem; line-height:1.8;
  color:rgba(255,255,255,.72);
  margin-bottom:2rem; text-align:left;
}

.hero-meet__actions { display:flex; flex-wrap:wrap; gap:1rem; }

/* Mini-cards points dans le hero */
.hero-meet__points {
  display:flex; flex-direction:column; gap:1rem;
}

.mini-point {
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12);
  border-radius:14px; padding:1.25rem 1.5rem;
  display:flex; align-items:center; gap:1.1rem;
  backdrop-filter:blur(8px);
  transition:background .25s, transform .25s;
  cursor:default;
}
.mini-point:hover { background:rgba(255,255,255,.12); transform:translateX(4px); }

.mini-point__icon {
  flex-shrink:0; width:42px; height:42px;
  border-radius:10px;
  background:linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  display:flex; align-items:center; justify-content:center;
}
.mini-point__icon svg {
  width:20px; height:20px;
  stroke:white; fill:none;
  stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round;
}

.mini-point__text strong {
  display:block; font-size:.9rem;
  color:white; font-weight:600; margin-bottom:.15rem;
}
.mini-point__text span {
  font-size:.78rem; color:rgba(255,255,255,.52);
}

/* =========================
   SECTIONS COMMUNES
========================= */
.section { padding:80px 0; }
.section--alt  { background:white; }
.section--dark {
  background:linear-gradient(135deg, var(--gradient-start) 0%, #2a1208 100%);
  color:white;
}

.section__eyebrow {
  display:block; text-align:center;
  font-size:.68rem; font-weight:600;
  letter-spacing:.22em; text-transform:uppercase;
  color:var(--gradient-end); margin-bottom:.75rem;
}
.section--dark .section__eyebrow { color:rgba(255,255,255,.5); }

.section__title {
  font-size:clamp(1.6rem,3vw,2.2rem);
  text-align:center; margin-bottom:.75rem; color:var(--text-dark);
}
.section--dark .section__title { color:white; }

.section__divider {
  width:48px; height:3px;
  background:linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  border-radius:2px; margin:0 auto .75rem;
}

.section__lead {
  text-align:center; color:var(--text-muted);
  max-width:640px; margin:0 auto 3.5rem;
  font-size:.95rem; line-height:1.75;
}
.section--dark .section__lead { color:rgba(255,255,255,.6); }

/* =========================
   CARTES POINTS DE RENCONTRE
========================= */
.meetpoints-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.5rem;
}

.meetpoint-card {
  background:white;
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--border-light);
  box-shadow:0 4px 12px rgba(0,0,0,.06);
  transition:box-shadow .3s, transform .3s;
  display:flex; flex-direction:column;
}
.meetpoint-card:hover {
  box-shadow:0 16px 40px rgba(0,0,0,.1);
  transform:translateY(-5px);
}

/* Bandeau couleur en haut */
.meetpoint-card__header {
  background:linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
  padding:1.75rem 1.75rem 1.5rem;
  position:relative; overflow:hidden;
}
.meetpoint-card__header::after {
  content:'';
  position:absolute; bottom:-24px; right:-24px;
  width:80px; height:80px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
}

.meetpoint-card__badge {
  display:inline-block;
  font-size:.62rem; font-weight:700;
  letter-spacing:.18em; text-transform:uppercase;
  color:rgba(255,255,255,.65);
  background:rgba(255,255,255,.12);
  border-radius:100px; padding:.25em .8em;
  margin-bottom:.85rem;
}

.meetpoint-card__icon-wrap {
  width:52px; height:52px;
  border-radius:14px;
  background:rgba(255,255,255,.15);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:1rem;
}
.meetpoint-card__icon-wrap svg {
  width:26px; height:26px;
  stroke:white; fill:none;
  stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round;
}

.meetpoint-card__header h3 {
  font-size:1.05rem; color:white;
  text-align:left; line-height:1.3;
}
.meetpoint-card__header p {
  font-size:.78rem; color:rgba(255,255,255,.65);
  margin-top:.35rem; text-align:left;
}

/* Corps de la carte */
.meetpoint-card__body {
  padding:1.5rem 1.75rem; flex:1;
  display:flex; flex-direction:column; gap:1rem;
}

/* Bloc adresse / instruction — disposition verticale */
.meetpoint-info {
  display:flex; flex-direction:column; gap:.6rem;
}
.meetpoint-info__icon {
  flex-shrink:0;
  width:36px; height:36px;
  border-radius:10px;
  background:rgba(230,92,37,.1);
  display:flex; align-items:center; justify-content:center;
}
.meetpoint-info__icon svg {
  width:18px; height:18px;
  stroke:var(--gradient-end); fill:none;
  stroke-width:2; stroke-linecap:round; stroke-linejoin:round;
}
.meetpoint-info > div {
  min-width:0;
}
.meetpoint-info p {
  font-size:.87rem; color:var(--text-muted);
  line-height:1.65; text-align:left; margin:0;
}
.meetpoint-info strong {
  display:block; font-size:.9rem; font-weight:700;
  color:var(--text-dark); margin-bottom:.3rem;
  line-height:1.35;
}
.meetpoint-info a {
  font-weight:bold; text-decoration:none; color:inherit;
}
.meetpoint-info a:hover { color:var(--gradient-end); }

/* Conseil tip */
.meetpoint-tip {
  background:#fdf6f0;
  border-left:3px solid var(--gradient-end);
  border-radius:0 8px 8px 0;
  padding:.8rem 1rem;
  font-size:.84rem; color:#666; line-height:1.6;
  text-align:left;
  word-break:normal; overflow-wrap:break-word;
  hyphens:none;
}
.meetpoint-tip strong {
  color:var(--gradient-end);
  display:block; margin-bottom:.3rem; font-size:.82rem;
}

/* CTA carte */
.meetpoint-card__footer {
  padding:0 1.75rem 1.75rem;
}

/* =========================
   MAP EMBED
========================= */
.map-section { padding:0 0 80px; background:white; }
.map-section .container { padding-top:0; }

.map-tabs {
  display:flex; gap:.6rem; margin-bottom:1.5rem;
  border-bottom:2px solid var(--border-light);
  padding-bottom:0;
}
.map-tab {
  padding:.65rem 1.25rem;
  font-size:.85rem; font-weight:600;
  font-family:'Quicksand',sans-serif;
  color:var(--text-muted); background:transparent;
  border:none; border-bottom:3px solid transparent;
  cursor:pointer; transition:color .2s, border-color .2s;
  margin-bottom:-2px;
}
.map-tab.active,
.map-tab:hover { color:var(--primary-color); border-bottom-color:var(--gradient-end); }

.map-frame {
  display:none; border-radius:14px; overflow:hidden;
  border:1px solid var(--border-light);
  box-shadow:0 4px 16px rgba(0,0,0,.07);
}
.map-frame.active { display:block; }
.map-frame iframe {
  width:100%; height:420px; border:none; display:block;
}

/* =========================
   COMMENT ÇA MARCHE — étapes
========================= */
.steps-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1.5rem;
  position:relative;
}

/* Ligne reliant les étapes */
.steps-grid::before {
  content:''; position:absolute;
  top:28px; left:calc(12.5% + 1rem);
  width:calc(75% - 2rem); height:2px;
  background:linear-gradient(90deg, var(--gradient-end), rgba(230,92,37,.2));
  z-index:0;
}

.step-item {
  display:flex; flex-direction:column;
  align-items:center; text-align:center;
  position:relative; z-index:1;
}
.step-item__num {
  width:56px; height:56px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem; font-weight:700; color:white;
  box-shadow:0 4px 16px rgba(230,92,37,.3);
  margin-bottom:1rem; flex-shrink:0;
}
.step-item h3 { font-size:.9rem; color:white; margin-bottom:.4rem; text-align:center; }
.step-item p  { font-size:.82rem; color:rgba(255,255,255,.58); line-height:1.6; text-align:center; }

/* =========================
   CTA FINAL
========================= */
.cta-section {
  padding:72px 0; text-align:center;
}
.cta-section h2 {
  font-size:clamp(1.6rem,3vw,2.2rem);
  text-align:center; color:white; margin-bottom:1rem;
}
.cta-section p {
  color:rgba(255,255,255,.75); max-width:520px;
  margin:0 auto 2rem; font-size:.95rem; text-align:center;
}
.cta-section a { color:white; }

/* =========================
   SITE FOOTER
========================= */
.site-footer {
  background: linear-gradient(135deg, #1a0f2e 0%, #e65c25 100%);
  color: rgba(255,255,255,0.75);
  padding: 56px 24px 24px;
  font-size: 0.875rem;
}
.site-footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.site-footer .footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}
.site-footer .footer-brand img {
  height: 42px; width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
  display: block;
}
.site-footer .footer-brand p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
  text-align: left;
}
.site-footer .footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.site-footer .footer-contact a:hover { color: #e65c25; }
.site-footer .footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.site-footer .footer-col ul {
  list-style: none;
  padding: 0; margin: 0;
}
.site-footer .footer-col ul li {
  margin-bottom: 10px;
}
.site-footer .footer-col a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.site-footer .footer-col a:hover { color: white; }
.site-footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.site-footer .footer-bottom strong { color: rgba(255,255,255,0.55); }
@media (max-width: 768px) {
  .site-footer .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .site-footer .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .site-footer .footer-top { grid-template-columns: 1fr; }
  .site-footer .footer-bottom { flex-direction: column; text-align: center; }
}

/* =========================
   ANIMATIONS
========================= */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}
.anim-fade-up { opacity:0; animation:fadeUp .7s ease forwards; }
.anim-delay-1 { animation-delay:.1s; }
.anim-delay-2 { animation-delay:.25s; }
.anim-delay-3 { animation-delay:.4s; }

/* =========================
   RESPONSIVE
========================= */
@media (max-width:1024px) {
  .meetpoints-grid { grid-template-columns:1fr 1fr; }
  .steps-grid { grid-template-columns:1fr 1fr; gap:2rem; }
  .steps-grid::before { display:none; }
}

@media (max-width:900px) {
  .navMenu { display:block; }
  .nav { display:none; }
  #navInput:checked ~ .nav {
    display:block; position:fixed; top:0; right:0; bottom:0; width:280px;
    background:white; padding:2rem 1.5rem;
    box-shadow:-4px 0 20px rgba(0,0,0,.15); z-index:100; overflow-y:auto;
  }
  #navInput:checked ~ .nav ul {
    display:flex; flex-direction:column; align-items:center; gap:0;
  }
  #navInput:checked ~ .nav ul li {
    width:100%; border-bottom:1px solid #f0f0f0; text-align:center;
  }
  #navInput:checked ~ .nav ul li a {
    display:block; padding:.85rem 0; font-size:1rem;
  }
  #navInput:checked ~ .fullclose {
    display:block; position:fixed; inset:0; z-index:99; background:rgba(0,0,0,.4);
  }
  .close-nav { display:list-item; }
  .close { cursor:pointer; display:flex; align-items:center; gap:.5rem; color:var(--primary-color); font-weight:600; margin-bottom:1.5rem; }
  .close svg { width:18px; height:18px; stroke:currentColor; stroke-width:2; fill:none; stroke-linecap:round; stroke-linejoin:round; }
  .hero-meet__inner { grid-template-columns:1fr; gap:2.5rem; }
  .hero-meet { min-height:auto; padding:110px 24px 60px; }
  .map-tabs { overflow-x:auto; }
}

@media (max-width:640px) {
  .meetpoints-grid { grid-template-columns:1fr; }
  .steps-grid      { grid-template-columns:1fr; }
  .hero-meet__actions { flex-direction:column; }
  .hero-meet__actions .cta-button { text-align:center; }
}