/* ==============================================
   SACRÉES FOULÉES — style.css  v3
   Optimisé · Sans doublons · Responsive propre
   Desktop = identique à l'original
   Mobile  = hamburger + mise en page adaptée
   ============================================== */
 
/* ── RESET ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; }
body       { font-size: 1rem; }
 
 
/* ── TYPOGRAPHIE GLOBALE ─────────────────────────── */
p {
  color: #AD9132;
  font-family: "Cormorant Unicase", serif;
  font-weight: 700;
  text-align: center;
}
h1 { font-family: "Fleur De Leah", cursive; font-weight: 700; text-align: center; }
 
 
/* ================================================
   HEADER  (desktop = inchangé par rapport à l'original)
   ================================================ */
.header {
  position: fixed;
  top: -100px;           /* caché au départ */
  left: 0;
  width: 100%;
  padding: 20px 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: rgba(0,0,0,0.7);
  transition: background 0.4s ease;
  animation: slideFadeDown 1s ease-out 2s forwards;
}
@keyframes slideFadeDown {
  from { top: -100px; opacity: 0; }
  to   { top: 0;      opacity: 1; }
}
 
 
/* ── LOGO ───────────────────────────────────────── */
.logo-accueil {
  font-size: 30px;
  font-weight: lighter;
  font-family: "Fleur De Leah", cursive;
  background: linear-gradient(90deg, #ff6b6b, #da8190, #b596b5, #90acda, #6bc1ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glowPulse 2s infinite alternate;
}
@keyframes glowPulse {
  from { text-shadow: 0 0 5px #FFD700; }
  to   { text-shadow: 0 0 15px #FFD700; }
}
 
 
/* ── NAVIGATION DESKTOP ─────────────────────────── */
.nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}
.nav a:hover  { color: #AD9132; }
.nav a:active { text-decoration-color: #AD9132; }
 
 
/* ── BOUTON HAMBURGER — masqué sur desktop ───────── */
.nav-toggle {
  display: none;           /* invisible sur desktop */
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 200;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: white;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
/* Animation vers croix */
.nav-toggle--open span:nth-child(1) { transform: translateY(9px)  rotate(45deg); }
.nav-toggle--open span:nth-child(2) { opacity: 0; }
.nav-toggle--open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
 
 
/* ================================================
   BOUTON FLOTTANT "TEXTES FONDATEURS"
   Conservé exactement tel quel (position:fixed vertical)
   ================================================ */
.floating-button {
  position: fixed;
  top: 35%;
  right: 20px;
  padding: 14px 18px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: "Cormorant Unicase", serif;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #AD9132;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(173,145,50,0.4);
  border-radius: 20px;
  text-decoration: none;
  z-index: 20;
  transition: all 0.4s ease;
  backdrop-filter: blur(6px);
}
.floating-button:hover {
  color: #FFD700;
  background: rgba(0,0,0,0.85);
  transform: translateX(-5px);
  box-shadow: 0 0 15px rgba(255,215,0,0.25);
}
 
 
/* ================================================
   BOUTON "DEVIENS BÉNÉVOLE" (fixe, coin bas-droit)
   ================================================ */
.btn-engage {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #c2b280;
  color: #1c3458;
  font-weight: bold;
  text-transform: uppercase;
  padding: 15px 30px;
  border: 2px solid #c2b280;
  border-radius: 0;
  text-decoration: none;
  z-index: 999;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}
.btn-engage:hover {
  background: #1c3458;
  color: #c2b280;
  border-color: #c2b280;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}
 
 
/* ================================================
   VIDÉO HÉRO (pleine page)
   ================================================ */
.video-background {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}
.video-background video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.video-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
  padding: 20px 30px;
  text-align: center;
  width: 90%;
  z-index: 2;
}
.video-text h2 { font-size: 4rem; }
.video-text h3 { font-size: 1.8rem; margin-top: 10px; font-weight: normal; }
 
 
/* ================================================
   PAGE ACCUEIL (body.home)
   ================================================ */
body.home { background: #000; }
 
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 20px;
  line-height: 1.7;
  color: #222;
  position: relative;
}
main > * { position: relative; z-index: 1; }
 
body.home main::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 50% 50%, rgba(252,137,42,0.4), transparent 65%);
  animation: breathe 20s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes breathe {
  from { transform: scale(1);    opacity: 0.6; }
  to   { transform: scale(1.15); opacity: 1; }
}
 
 
/* ── SECTIONS GÉNÉRIQUES ────────────────────────── */
.section { margin-bottom: 100px; }
.section h4 {
  font-family: 'Lucida Sans', 'Lucida Grande', Verdana, sans-serif;
  font-size: 2.6rem;
  margin-bottom: 10px;
  color: #ffffff;
  text-align: center;
}
.section p {
  font-family: 'Lucida Sans', 'Lucida Grande', Verdana, sans-serif;
  font-size: 1.1rem;
  color: aliceblue;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}
 
.split { display: flex; gap: 40px; align-items: center; }
.split img { width: 100%; border-radius: 10px; }
 
.cta {
  text-align: center;
  background: #3b3b3b;
  color: white;
  padding: 80px 20px;
  border-radius: 12px;
}
.cta h2 { border: none; color: white; }
 
.btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 36px;
  background: #6bc1ff;
  color: #000;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
}
 
 
/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: #1a1a1a;
  color: #fff;
  padding: 40px 0;
  text-align: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
.footer-container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.footer-logo {
  font-family: "Fleur De Leah", cursive;
  font-size: 2rem;
  background: linear-gradient(90deg, #ff6b6b, #6bc1ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}
.footer-nav a,
.footer-social a {
  color: #AD9132;
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-nav a:hover,
.footer-social a:hover {
  color: #FFD700;
  text-shadow: 0 0 5px rgba(255,215,0,0.5);
}
.footer-copy { font-size: 0.85rem; margin-top: 20px; color: #aaa; }
 
 
/* ================================================
   PAGE À PROPOS  (body.homeapropos)
   ================================================ */
body.homeapropos {
  background: #1a1d20;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.03) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.02) 0%, transparent 40%);
  color: #d7d3c4;
  font-family: "Lora", serif;
  overflow-x: hidden;
}
body.homeapropos::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: -1;
  background: linear-gradient(120deg, rgb(7,23,53), rgba(13,33,69,0.995), rgba(31,60,84,0.95));
  background-size: 200% 200%;
  animation: fogMove 60s linear infinite;
}
@keyframes fogMove {
  0%   { background-position: 0 0; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0 100%; }
}
 
.homeapropos .header { background: rgba(10,12,14,0.95); border-bottom: 1px solid rgba(160,150,120,0.2); }
.homeapropos .logo-accueil {
  background: none;
  -webkit-text-fill-color: #c2b280;
  color: #c2b280;
  animation: none;
  text-shadow: none;
  font-weight: 400;
  letter-spacing: 2px;
}
.homeapropos .nav a       { color: #bfbcb4; font-size: 0.8rem; }
.homeapropos .nav a:hover { color: #c2b280; }
 
.homeapropos main { max-width: 820px; margin: 0 auto; padding: 150px 30px 120px; line-height: 2; }
 
.sectionapropros h5 {
  font-size: 1.6rem;
  font-family: "Lora", serif;
  font-weight: 500;
  color: #c2b280;
  margin-top: 80px;
  margin-bottom: 35px;
  text-align: left;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
}
.sectionapropros h5::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: rgba(194,178,128,0.5);
  margin-top: 12px;
}
.sectionapropros p {
  font-size: 1.15rem;
  margin-bottom: 26px;
  text-align: justify;
  color: #d8d6cf;
  font-family: "Lora", serif;
}
.sectionapropros p:nth-child(n+4):nth-child(-n+12) {
  font-style: italic;
  color: #fdfaf5;
  padding-left: 20px;
  border-left: 2px solid rgba(194,178,128,0.2);
}
.sectionapropros p:first-of-type::first-letter {
  font-size: 3rem;
  font-weight: 600;
  float: left;
  margin-right: 8px;
  line-height: 1;
  color: #c2b280;
}
 
.homeapropos .footer          { background: #0e1114; border-top: 1px solid rgba(194,178,128,0.2); }
.homeapropos .footer-logo     { background: none; -webkit-text-fill-color: #c2b280; color: #c2b280; }
.homeapropos .footer-nav a,
.homeapropos .footer-social a         { color: #a8a59e; }
.homeapropos .footer-nav a:hover,
.homeapropos .footer-social a:hover   { color: #c2b280; }
 
 
/* ================================================
   PAGE COMPAGNONNAGE / COURSES (body.compagnonnage)
   ================================================ */
body.compagnonnage {
  font-family: "Lora", serif;
  background: #544832;
  color: #d8d6cf;
}
 
.sectionapropos {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px 60px;
}
.sectionapropos h5 {
  font-size: 1.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c2b280;
  margin-top: 60px;
  margin-bottom: 20px;
  font-family: "Lora", serif;
}
.sectionapropos p {
  font-family: 'Lucida Sans', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: none;
  color: #d8d6cf;
  margin-top: 16px;
  line-height: 1.8;
  text-align: justify;
}
 
 
/* ── BLOC INSCRIPTION PROCHAINE ─────────────────── */
.inscription-soon {
  position: relative;
  margin: 70px auto;
  padding: 50px 40px;
  max-width: 850px;
  background: linear-gradient(135deg, #1c3458, #3a4f7a);
  color: #fff;
  border: 3px solid #c2b280;
  border-radius: 0;
  text-align: center;
  box-shadow: 0 0 0 4px rgba(194,178,128,0.15), 0 20px 60px rgba(0,0,0,0.4);
  overflow: hidden;
}
.inscription-soon::before {
  content: "";
  position: absolute;
  top: -50%; left: -30%;
  width: 160%; height: 200%;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.08), transparent 60%);
  transform: rotate(25deg);
  animation: shine 6s infinite linear;
}
@keyframes shine {
  from { transform: translateX(-30%) rotate(25deg); }
  to   { transform: translateX(30%)  rotate(25deg); }
}
.inscription-soon h3 {
  font-family: "Cormorant Unicase", serif;
  font-size: 2rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c2b280;
  margin-bottom: 20px;
}
.inscription-soon p { font-size: 1.15rem; line-height: 1.8; letter-spacing: 1px; color: #fff; text-align: center; }
 
 
/* ================================================
   PAGE TEXTES FONDATEURS (body.textes-fondateurs)
   ================================================ */
body.textes-fondateurs {
  background: linear-gradient(135deg, #1c3458 0%, #3a4f7a 40%, #b79962 100%);
}
body.textes-fondateurs main {
  background: #ffffff;
  max-width: 850px;
  margin: 80px auto;
  padding: 90px 50px;
  border-radius: 10px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}
body.textes-fondateurs h1,
body.textes-fondateurs h2 {
  font-family: "Cormorant Unicase", serif;
  font-weight: 600;
  letter-spacing: 3px;
  margin-top: 60px;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #1c3458;
}
body.textes-fondateurs p {
  font-family: 'Times New Roman', Times, serif;
  color: #000;
  font-size: 0.9rem;
  line-height: 2;
  margin-bottom: 22px;
  letter-spacing: 0.3px;
  text-align: justify;
}
 
 
/* ================================================
   PAGE BÉNÉVOLE (body.deviensbénévole)
   ================================================ */
body.deviensbénévole {
  background: linear-gradient(135deg, #8180c2, #1c3458);
  color: #1c3458;
  font-family: 'Cormorant Unicase', serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body.deviensbénévole main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 140px 20px 60px;
}
body.deviensbénévole .section { width: 100%; max-width: 700px; margin-bottom: 40px; text-align: center; }
body.deviensbénévole .section h4 { font-size: 2rem; margin-bottom: 20px; color: #dedbcf; }
body.deviensbénévole .section p  { font-size: 1.1rem; line-height: 1.6; color: #fff; }
 
.form-benevole {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 600px;
  background-color: rgba(255,255,255,0.95);
  padding: 30px 25px;
  border: 2px solid #c2b280;
  border-radius: 5px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}
.form-benevole label {
  font-size: 0.9rem;
  color: #1c3458;
  margin-bottom: 6px;
  font-family: 'Cormorant Unicase', serif;
}
.form-benevole input,
.form-benevole select,
.form-benevole textarea {
  width: 100%;
  margin-bottom: 18px;
  padding: 12px 15px;
  font-size: 1rem;
  border: 2px solid #c2b280;
  border-radius: 0;
  font-family: 'Cormorant Unicase', serif;
  color: #1c3458;
  transition: all 0.3s ease;
}
.form-benevole textarea { resize: vertical; min-height: 120px; }
.form-benevole input:focus,
.form-benevole select:focus,
.form-benevole textarea:focus {
  outline: none;
  border-color: #1c3458;
  box-shadow: 0 0 10px rgba(194,178,128,0.5);
}
.form-benevole button {
  width: 100%;
  padding: 14px 0;
  font-weight: bold;
  font-size: 1rem;
  text-transform: uppercase;
  background-color: #c2b280;
  color: #1c3458;
  border: none;
  cursor: pointer;
  font-family: 'Cormorant Unicase', serif;
  transition: background 0.3s ease, color 0.3s ease;
}
.form-benevole button:hover { background-color: #1c3458; color: #FFD700; }
 
 
/* ================================================
   RESPONSIVE — TABLETTE  (≤ 1024px)
   Ajustements légers, layout desktop conservé
   ================================================ */
@media (max-width: 1024px) {
  .header { padding: 15px 4vw; }
  .logo-accueil { font-size: 26px; }
  .nav a { font-size: 0.82rem; margin: 0 7px; }
 
  .video-text h2 { font-size: 3rem; }
  .video-text h3 { font-size: 1.4rem; }
 
  .section h4 { font-size: 2.2rem; }
  .section p  { font-size: 1rem; }
  .split { gap: 25px; }
  .cta { padding: 60px 20px; }
}
 
 
/* ================================================
   RESPONSIVE — MOBILE  (≤ 768px)
   Layout différent : hamburger, colonnes empilées
   Le bouton "Textes fondateurs" reste en position
   fixe mais passe en mode horizontal en bas
   ================================================ */
@media (max-width: 768px) {
 
  /* ── Header ── */
  .header {
    padding: 12px 16px;
    flex-wrap: wrap;
    gap: 0;
    align-items: center;
  }
  .logo-accueil { font-size: 22px; flex: 1; }
 
  /* Hamburger visible sur mobile */
  .nav-toggle { display: flex; }
 
  /* Nav repliée par défaut */
  .nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    order: 3;
    background: rgba(0,0,0,0.93);
    padding: 12px 20px 16px;
  }
  .nav.nav--open { display: flex; }
  .nav a {
    font-size: 0.85rem;
    margin: 9px 0;
    padding: 4px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
 
  /* ── Bouton "Textes fondateurs" sur mobile ──
     Passe de vertical fixe à la droite
     vers horizontal fixe en bas (au-dessus du btn bénévole)
     pour ne pas gêner la lecture ── */
  .floating-button {
    top: auto;
    bottom: 70px;      /* au-dessus du btn bénévole */
    right: 15px;
    writing-mode: horizontal-tb;
    text-orientation: initial;
    padding: 10px 16px;
    font-size: 0.75rem;
    border-radius: 30px;
    letter-spacing: 1px;
  }
 
  /* ── Bouton bénévole ── */
  .btn-engage { bottom: 15px; right: 15px; padding: 12px 20px; font-size: 0.85rem; }
 
  /* ── Vidéo ── */
  .video-text { width: 92%; padding: 15px; }
  .video-text h2 { font-size: 2.2rem; }
  .video-text h3 { font-size: 1rem; }
 
  /* ── Contenu général ── */
  main { padding: 60px 20px; }
  .section { margin-bottom: 60px; }
  .section h4 { font-size: 1.8rem; }
  .section p  { font-size: 0.95rem; }
  .split { flex-direction: column; gap: 20px; }
  .split img { width: 100%; }
  .cta { padding: 40px 15px; }
  .cta h2 { font-size: 1.4rem; }
  .btn { padding: 12px 28px; font-size: 0.9rem; }
 
  /* ── Footer ── */
  .footer { padding: 25px 15px; }
  .footer-logo { font-size: 1.6rem; }
  .footer-nav, .footer-social { display: flex; flex-direction: column; gap: 10px; align-items: center; }
  .footer-nav a, .footer-social a { margin: 0; }
 
  /* ── Inscription soon ── */
  .inscription-soon { padding: 35px 20px; margin: 40px 15px; }
  .inscription-soon h3 { font-size: 1.5rem; letter-spacing: 2px; }
  .inscription-soon p  { font-size: 1rem; }
 
  /* ── Page à propos ── */
  .homeapropos main { padding: 130px 20px 80px; }
  .sectionapropros p  { font-size: 1.05rem; }
  .sectionapropros h5 { font-size: 1.4rem; margin-top: 50px; }
 
  /* ── Page textes fondateurs ── */
  body.textes-fondateurs main { margin: 40px 15px; padding: 60px 20px; border-radius: 6px; }
 
  /* ── Page bénévole ── */
  body.deviensbénévole main { padding: 120px 15px 60px; }
  .form-benevole { padding: 25px 18px; }
 
  /* ── Pages compagnonnage / courses ── */
  .sectionapropos { padding: 60px 15px 40px; }
  .sectionapropos h5 { font-size: 1.3rem; letter-spacing: 2px; margin-top: 40px; }
  .sectionapropos p  { font-size: 0.9rem; }
}
 
/* ── Champ honeypot (pot de miel anti-bot) ───────────────────────────
   Ce champ doit être TOTALEMENT invisible pour les humains.
   On ne peut pas juste mettre display:none car certains robots
   ignorent les champs cachés en CSS. La combinaison ci-dessous
   le rend visuellement absent mais techniquement présent dans le DOM. */
.hp-field {
  position: absolute;    /* sort du flux de la page */
  left: -9999px;         /* envoie très loin à gauche hors de l'écran */
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;  /* désactive les clics */
  tab-index: -1;         /* exclu de la navigation clavier */
}
 
 
/* ── Messages de retour après soumission ────────────────────────────
   Affichés quand PHP redirige avec ?statut=succes ou ?statut=erreur */
 
.message-retour {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 30px;
  padding: 18px 24px;
  border-radius: 4px;
  font-family: 'Cormorant Unicase', serif;
  font-size: 1rem;
  text-align: center;
  animation: fadeIn 0.4s ease;
}
 
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
 
.message-succes {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.5);
  color: #dcfce7;
}
 
.message-erreur {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.5);
  color: #fee2e2;
}
 
 
/* ── Indicateur de caractères restants (optionnel) ──────────────────
   Affiché sous le textarea pour compter les 2000 caractères max */
.compteur-chars {
  font-size: 0.75rem;
  color: #a0a0a0;
  text-align: right;
  margin-top: -14px;
  margin-bottom: 18px;
  font-family: 'Cormorant Unicase', serif;
}
.compteur-chars.presque-plein { color: #f59e0b; }
.compteur-chars.plein         { color: #ef4444; }

/* ══════════════════════════════════════════════════════════════════
   2. SECTION RECRUTEMENT / CONSTITUTION D'ÉQUIPE
   ══════════════════════════════════════════════════════════════════ */
 
.section-recrutement {
  max-width: 900px;
  margin: 0 auto 100px;
  padding: 0 20px;
}
 
.recrutement-inner {
  position: relative;
  background: linear-gradient(135deg,
    rgba(28, 52, 88, 0.95) 0%,
    rgba(58, 79, 122, 0.9) 50%,
    rgba(28, 52, 88, 0.95) 100%);
  border: 1px solid rgba(194, 178, 128, 0.3);
  padding: 50px 40px;
  text-align: center;
  overflow: hidden;
}
 
/* Effet lumière en haut à gauche */
.recrutement-inner::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(194,178,128,0.1) 0%, transparent 70%);
  pointer-events: none;
}
 
/* Bandeau "EN CONSTITUTION" */
.recrutement-bandeau {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: #1c3458;
  background: #c2b280;
  padding: 5px 18px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
 
/* Titre principal */
.recrutement-titre {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0 0 20px;
}
 
/* Séparateur doré */
.recrutement-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 28px;
}
.recrutement-sep::before,
.recrutement-sep::after {
  content: '';
  width: 60px;
  height: 1px;
  background: rgba(194, 178, 128, 0.4);
}
.recrutement-losange {
  color: #c2b280;
  font-size: 10px;
}
 
/* Texte corps */
.recrutement-texte {
  font-family: 'Lora', serif;
  font-size: 1rem;
  line-height: 1.85;
  color: #d0cdc6;
  max-width: 640px;
  margin: 0 auto 18px;
  text-align: center;
}
 
/* Grille des rôles */
.recrutement-roles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 32px 0;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
 
.recrutement-role {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 0.5px solid rgba(194, 178, 128, 0.2);
  padding: 10px 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #c2b280;
  text-align: left;
  transition: background 0.3s ease;
}
.recrutement-role:hover {
  background: rgba(194, 178, 128, 0.08);
}
.recrutement-role-icone {
  font-size: 1rem;
  flex-shrink: 0;
}
 
/* Bouton candidature */
.recrutement-btn {
  display: inline-block;
  margin-top: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1c3458;
  background: #c2b280;
  padding: 14px 40px;
  text-decoration: none;
  border: 2px solid #c2b280;
  transition: all 0.3s ease;
}
.recrutement-btn:hover {
  background: transparent;
  color: #c2b280;
}
 
/* Responsive mobile */
@media (max-width: 768px) {
  .recrutement-inner { padding: 35px 20px; }
  .recrutement-titre { font-size: 1.8rem; }
  .recrutement-roles { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .recrutement-role  { font-size: 0.8rem; padding: 8px 10px; }
}
@media (max-width: 480px) {
  .recrutement-roles { grid-template-columns: 1fr; }
}
 
 
/* ══════════════════════════════════════════════════════════════════
   3. RÉSEAUX SOCIAUX "BIENTÔT DISPONIBLE"
      Remplace les <a> par des <span> non cliquables
      avec un badge doré "Bientôt"
   ══════════════════════════════════════════════════════════════════ */
 
.social-bientot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(173, 145, 50, 0.5);  /* doré atténué = pas cliquable */
  margin: 0 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 1px;
  cursor: default;
  user-select: none;
}
 
.social-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(194, 178, 128, 0.15);
  border: 0.5px solid rgba(194, 178, 128, 0.3);
  color: rgba(194, 178, 128, 0.6);
  padding: 2px 7px;
  border-radius: 2px;