/*
| C'UNIVERS - FEUILLE DE STYLE
|
| POLICES : Inter Tight, Montserrat, Poppins
| COULEURS : #dcbbf3 (violet clair) et #bf77e6 (violet vif)
|
| POUR CHANGER LES COULEURS :
| Modifiez les valeurs dans la section :root tout en bas de ce commentaire
|
| POUR CHANGER LES POLICES :
| Modifiez --font-titre, --font-corps et --font-bouton
| Et changez aussi le lien Google Fonts dans includes/header.php
*/
/* ============================================
   C'UNIVERS - Feuille de style principale
   Fichier : css/style.css
   
   COULEURS PRINCIPALES :
   - Violet clair : #dcbbf3
   - Violet vif   : #bf77e6
   ============================================ */

/* --- VARIABLES --- */
:root {
  /* Couleurs C'Univers */
  --violet: #bf77e6;
  --violet-clair: #dcbbf3;
  --violet-fonce: #9b52c7;
  --violet-bg: #f3e8fc;
  --violet-pale: #eddcf9;
  --mauve: #c98ee8;

  /* Accents */
  --or: #D4A843;
  --or-clair: #E8C96A;

  /* Neutres */
  --blanc: #FFFFFF;
  --creme: #FDFBFE;
  --gris-clair: #F5F0F8;
  --gris: #8E8E9A;
  --texte: #2D2A33;
  --texte-light: #6B6B7B;
  --noir: #1E1A24;

  /* Couleurs branches */
  --rose: #E8A0B4;
  --vert: #7BA68A;
  --bleu: #6A8EB5;
  --orange: #D4956A;
  --sante: #c98ee8;

  /* Typo */
  --font-titre: 'Montserrat', sans-serif;
  --font-corps: 'Inter Tight', sans-serif;

  /* Layout */
  --section-padding: 6rem 5%;
  --max-width: 1200px;
}

/* --- RESET --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-corps); color: var(--texte); background: var(--creme); overflow-x: hidden; line-height: 1.6; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-titre); line-height: 1.2; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* --- UTILITAIRES --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }

.section-label {
  display: inline-block; font-size: 0.7rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--violet); font-weight: 600;
  margin-bottom: 0.8rem; position: relative; padding-left: 2.5rem;
}
.section-label::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 1.8rem; height: 1.5px; background: var(--violet);
}
.section-label.centered { padding-left: 0; }
.section-label.centered::before { display: none; }

.section-title { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; line-height: 1.15; margin-bottom: 1.2rem; }
.section-title em { font-style: italic; color: var(--violet); font-weight: 400; }

.section-intro { color: var(--texte-light); max-width: 620px; margin: 0 auto; font-size: 0.95rem; line-height: 1.8; }


/* ============================================
   PRELOADER
   ============================================ */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--noir);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s, visibility 0.8s;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-logo img { height: 80px; animation: pulse 1.5s ease infinite; }
@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1); }
}


/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  padding: 1rem 4%; display: flex; align-items: center;
  justify-content: space-between; transition: all 0.4s;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(30, 26, 36, 0.95); backdrop-filter: blur(15px);
  padding: 0.6rem 4%; box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.nav-logo img { height: 50px; transition: height 0.3s; }
.navbar.scrolled .nav-logo img { height: 38px; }

.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links > a, .nav-dropdown > a {
  color: rgba(255,255,255,0.8); font-size: 0.72rem;
  letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500;
  position: relative; padding: 0.3rem 0; cursor: pointer;
}
.nav-links > a::after, .nav-dropdown > a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1.5px; background: var(--violet-clair);
  transition: width 0.3s;
}
.nav-links > a:hover, .nav-dropdown:hover > a { color: var(--violet-clair); }
.nav-links > a:hover::after, .nav-dropdown:hover > a::after { width: 100%; }

.nav-cta {
  padding: 0.5rem 1.5rem !important; border: 1.5px solid var(--violet-clair) !important;
  color: var(--violet-clair) !important; transition: all 0.3s !important;
}
.nav-cta:hover { background: var(--violet-clair) !important; color: var(--noir) !important; }
.nav-cta::after { display: none !important; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown .dropdown-menu {
  position: absolute; top: 100%; left: 0; min-width: 260px;
  background: var(--blanc); box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  padding: 0.6rem 0; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: all 0.3s; z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block; padding: 0.55rem 1.2rem;
  color: var(--texte) !important; font-size: 0.8rem !important;
  letter-spacing: 0.02em !important; text-transform: none !important;
}
.dropdown-menu a::after { display: none; }
.dropdown-menu a:hover { background: var(--violet-bg); color: var(--violet) !important; }

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.burger span { width: 26px; height: 2px; background: var(--blanc); transition: all 0.3s; }
.burger.active span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }


/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center; justify-content: center;
  background: var(--noir); overflow: hidden;
}

/*
| IMAGE DE FOND DU HERO
| Pour changer l'image : remplacez le fichier images/hero-bg.jpg
| L'image ne bouge pas, le texte reste par-dessus
*/
.hero-image {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Voile sombre par-dessus l'image pour que le texte blanc reste lisible */
/* Changez le 0.6 pour plus sombre (0.8) ou plus clair (0.4) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 26, 36, 0.6);
  z-index: 1;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 25% 50%, rgba(191,119,230,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 75% 30%, rgba(220,187,243,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(201,142,232,0.06) 0%, transparent 50%);
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.particle {
  position: absolute; width: 3px; height: 3px;
  background: var(--violet-clair); border-radius: 50%;
  opacity: 0; animation: floatUp 8s infinite;
}
@keyframes floatUp {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  20% { opacity: 0.5; } 80% { opacity: 0.2; }
  100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 850px; padding: 0 2rem; }
.hero-logo img { height: 130px; margin: 0 auto 1.5rem; animation: fadeDown 1s 0.3s both; }
@keyframes fadeDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
.hero-badge {
  display: inline-block; padding: 0.45rem 1.5rem;
  border: 1px solid rgba(220,187,243,0.4); color: var(--violet-clair);
  font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase;
  margin-bottom: 2rem; font-weight: 500; animation: fadeDown 1s 0.5s both;
}
.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.8rem); color: var(--blanc);
  font-weight: 300; line-height: 1.1; margin-bottom: 1.5rem;
  animation: fadeUp 1s 0.7s both;
}
.hero h1 em { font-style: italic; color: var(--violet-clair); font-weight: 400; }
@keyframes fadeUp { from { opacity:0; transform:translateY(25px); } to { opacity:1; transform:translateY(0); } }
.hero-sub {
  color: rgba(255,255,255,0.6); font-size: 1.05rem; line-height: 1.8;
  max-width: 620px; margin: 0 auto 2.5rem; animation: fadeUp 1s 0.9s both;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; animation: fadeUp 1s 1.1s both; }


/* ============================================
   BOUTONS
   ============================================ */
.btn-primary {
  display: inline-block; padding: 0.95rem 2.5rem;
  background: var(--violet); color: var(--blanc);
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600; border: none; cursor: pointer;
  font-family: var(--font-corps); transition: all 0.4s;
}
.btn-primary:hover { background: var(--violet-fonce); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(191,119,230,0.3); }

.btn-secondary {
  display: inline-block; padding: 0.95rem 2.5rem; background: transparent;
  color: var(--blanc); font-size: 0.78rem; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 500;
  border: 1.5px solid rgba(220,187,243,0.4); cursor: pointer;
  font-family: var(--font-corps); transition: all 0.4s;
}
.btn-secondary:hover { border-color: var(--violet-clair); color: var(--violet-clair); }

.btn-outline {
  display: inline-block; padding: 0.8rem 2rem;
  background: transparent; color: var(--violet);
  font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600; border: 1.5px solid var(--violet);
  cursor: pointer; font-family: var(--font-corps); transition: all 0.4s;
}
.btn-outline:hover { background: var(--violet); color: var(--blanc); }


/* ============================================
   SECTIONS COMMUNES
   ============================================ */

/* --- À PROPOS --- */
.about { padding: var(--section-padding); background: var(--creme); }
.about-grid { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-visual { position: relative; height: 480px; }
.about-img-main { width: 80%; height: 85%; background: linear-gradient(135deg, var(--violet-fonce) 0%, var(--noir) 100%); display: flex; align-items: center; justify-content: center; }
.about-img-main img { height: 60%; opacity: 0.2; }
.about-img-accent { position: absolute; bottom: 0; right: 0; width: 55%; height: 50%; border: 2px solid var(--violet); display: flex; align-items: center; justify-content: center; background: rgba(253,251,254,0.92); }
.about-img-accent img { height: 65%; }
.about-text p { color: var(--texte-light); line-height: 1.85; margin-bottom: 1.2rem; font-size: 0.93rem; }
.about-stats { display: flex; gap: 2.5rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(0,0,0,0.06); }
.stat h3 { font-size: 2.5rem; font-weight: 300; color: var(--violet); line-height: 1; }
.stat p { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--texte-light); margin-top: 0.2rem; }

/* --- AMBITION --- */
.ambition { background: var(--noir); color: var(--blanc); text-align: center; padding: var(--section-padding); position: relative; overflow: hidden; }
.ambition::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(191,119,230,0.08) 0%, transparent 65%); }
.ambition-inner { position: relative; z-index: 2; max-width: 750px; margin: 0 auto; }
.ambition .section-title { color: var(--blanc); }
.ambition-quote { font-family: var(--font-titre); font-size: clamp(1.2rem, 2.3vw, 1.65rem); font-style: italic; line-height: 1.8; color: rgba(255,255,255,0.7); margin-bottom: 2rem; }
.ambition-divider { width: 50px; height: 1.5px; background: var(--violet-clair); margin: 0 auto 2rem; }
.ambition-motto { font-size: 0.82rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--violet-clair); font-weight: 500; }

/* --- VALEURS --- */
.valeurs { padding: var(--section-padding); background: var(--creme); }
.valeurs-grid { max-width: 1100px; margin: 2.5rem auto 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.2rem; }
.valeur-card { text-align: center; padding: 2.2rem 1.2rem; background: var(--blanc); border: 1px solid rgba(0,0,0,0.04); transition: all 0.4s; position: relative; overflow: hidden; }
.valeur-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--violet); transform: scaleX(0); transition: transform 0.4s; }
.valeur-card:hover::before { transform: scaleX(1); }
.valeur-card:hover { transform: translateY(-4px); box-shadow: 0 15px 40px rgba(191,119,230,0.08); }
.valeur-icon { width: 48px; height: 48px; margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; background: var(--violet-bg); border-radius: 50%; }
.valeur-card h4 { font-size: 1.1rem; font-weight: 500; margin-bottom: 0.6rem; }
.valeur-card p { font-size: 0.78rem; color: var(--texte-light); line-height: 1.55; }

/* --- UNIVERS --- */
.univers { padding: var(--section-padding); background: var(--blanc); }
.univers-grid { max-width: var(--max-width); margin: 2.5rem auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.univers-card { padding: 2.5rem 1.8rem; position: relative; overflow: hidden; transition: all 0.4s; border: 1px solid rgba(0,0,0,0.04); background: var(--creme); }
.univers-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 0; transition: height 0.4s; }
.univers-card:hover::before { height: 100%; }
.univers-card:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(0,0,0,0.05); }
.univers-card.elles::before { background: var(--rose); }
.univers-card.nature::before { background: var(--vert); }
.univers-card.sport::before { background: var(--bleu); }
.univers-card.enfants::before { background: var(--orange); }
.univers-card.sante::before { background: var(--sante); }
.univers-card.formation::before { background: var(--violet); }
.card-num { font-family: var(--font-titre); font-size: 3.5rem; font-weight: 300; line-height: 1; margin-bottom: 0.8rem; opacity: 0.15; }
.card-tag { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; margin-bottom: 0.8rem; display: block; }
.univers-card.elles .card-tag { color: var(--rose); }
.univers-card.nature .card-tag { color: var(--vert); }
.univers-card.sport .card-tag { color: var(--bleu); }
.univers-card.enfants .card-tag { color: var(--orange); }
.univers-card.sante .card-tag { color: var(--sante); }
.univers-card.formation .card-tag { color: var(--violet); }
.univers-card h3 { font-size: 1.35rem; font-weight: 400; margin-bottom: 0.6rem; }
.univers-card p { color: var(--texte-light); font-size: 0.84rem; line-height: 1.65; }

/* --- FORMATIONS APERÇU --- */
.formations-preview { padding: var(--section-padding); background: var(--gris-clair); }
.formations-cards { max-width: var(--max-width); margin: 2.5rem auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.formation-preview-card { background: var(--blanc); border: 1px solid rgba(0,0,0,0.04); padding: 2.2rem 1.8rem; transition: all 0.4s; display: flex; flex-direction: column; }
.formation-preview-card:hover { transform: translateY(-4px); box-shadow: 0 15px 40px rgba(191,119,230,0.08); }
.formation-preview-card .badge { display: inline-block; padding: 0.3rem 0.8rem; font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 700; margin-bottom: 1rem; background: var(--violet-bg); color: var(--violet); align-self: flex-start; }
.formation-preview-card h3 { font-size: 1.3rem; font-weight: 500; margin-bottom: 0.6rem; line-height: 1.25; }
.formation-preview-card .meta { font-size: 0.78rem; color: var(--texte-light); margin-bottom: 0.8rem; }
.formation-preview-card p { color: var(--texte-light); font-size: 0.84rem; line-height: 1.65; flex: 1; }
.formation-preview-card .card-link { display: inline-block; margin-top: 1.2rem; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; color: var(--violet); }
.formation-preview-card .card-link:hover { color: var(--violet-fonce); }

/* --- PODCAST --- */
.podcast { padding: var(--section-padding); background: var(--noir); color: var(--blanc); position: relative; overflow: hidden; }
.podcast::before { content: ''; position: absolute; top: -50%; right: -15%; width: 50%; height: 200%; background: radial-gradient(circle, rgba(191,119,230,0.05) 0%, transparent 65%); }
.podcast-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 2; }
.podcast-visual { display: flex; align-items: center; justify-content: center; }
.podcast-artwork { width: 320px; height: 320px; background: linear-gradient(145deg, rgba(155,82,199,0.3), rgba(220,187,243,0.1)); border: 1px solid rgba(191,119,230,0.25); display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; }
.podcast-artwork::before { content: ''; position: absolute; width: 100px; height: 100px; border-radius: 50%; border: 2px solid rgba(220,187,243,0.25); animation: spin 20s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.podcast-artwork .mic-icon { font-size: 3rem; margin-bottom: 0.8rem; }
.podcast-artwork h4 { font-size: 1.2rem; color: var(--violet-clair); font-weight: 400; }
.podcast-artwork p { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-top: 0.2rem; }
.podcast-text .section-title { color: var(--blanc); }
.podcast-text p { color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 1.5rem; font-size: 0.93rem; }
.podcast-links { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.podcast-link { padding: 0.5rem 1rem; border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); font-size: 0.72rem; letter-spacing: 0.08em; transition: all 0.3s; }
.podcast-link:hover { border-color: var(--violet-clair); color: var(--violet-clair); }

/* --- CTA --- */
.cta-banner { background: linear-gradient(135deg, var(--violet-fonce), var(--violet)); color: var(--blanc); text-align: center; padding: 5rem 4%; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; width: 350px; height: 350px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.08); top: -150px; left: -100px; }
.cta-banner h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 300; margin-bottom: 1rem; position: relative; z-index: 2; }
.cta-banner h2 em { color: var(--blanc); font-style: italic; text-decoration: underline; text-decoration-color: rgba(255,255,255,0.3); text-underline-offset: 4px; }
.cta-banner p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; position: relative; z-index: 2; }
.cta-banner .btn-primary { background: var(--blanc); color: var(--violet-fonce); }
.cta-banner .btn-primary:hover { background: var(--violet-clair); color: var(--noir); }

/* --- CONTACT --- */
.contact { padding: var(--section-padding); background: var(--creme); }
.contact-grid { max-width: 1100px; margin: 2.5rem auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; }
.contact-info p { color: var(--texte-light); line-height: 1.75; margin-bottom: 1.5rem; font-size: 0.9rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-item { display: flex; align-items: center; gap: 0.8rem; font-size: 0.88rem; }
.contact-item .icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--blanc); border: 1px solid rgba(0,0,0,0.05); font-size: 0.9rem; flex-shrink: 0; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form input, .contact-form textarea { width: 100%; padding: 1rem 1.1rem; border: 1px solid rgba(0,0,0,0.07); background: var(--blanc); font-family: var(--font-corps); font-size: 0.86rem; color: var(--texte); transition: border-color 0.3s; outline: none; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--violet); }
.contact-form textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* --- PAGE HERO (pages internes) --- */
.page-hero { padding: 10rem 5% 4rem; background: var(--noir); text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 70%, rgba(191,119,230,0.12) 0%, transparent 60%); }
.page-hero-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); color: var(--blanc); font-weight: 300; margin-bottom: 1rem; }
.page-hero h1 em { color: var(--violet-clair); font-style: italic; font-weight: 400; }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 1rem; line-height: 1.7; }

/* --- FOOTER --- */
.site-footer { background: var(--noir); color: rgba(255,255,255,0.5); padding: 3.5rem 4% 1.5rem; }
.footer-grid { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand img { height: 45px; margin-bottom: 0.8rem; }
.footer-brand p { font-size: 0.82rem; line-height: 1.65; color: rgba(255,255,255,0.35); max-width: 280px; }
.footer-col h5 { font-family: var(--font-corps); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--violet-clair); margin-bottom: 1rem; font-weight: 600; }
.footer-col a { display: block; color: rgba(255,255,255,0.4); font-size: 0.82rem; margin-bottom: 0.5rem; }
.footer-col a:hover { color: var(--violet-clair); }
.footer-bottom { max-width: var(--max-width); margin: 0 auto; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; align-items: center; font-size: 0.75rem; flex-wrap: wrap; gap: 0.5rem; }
.footer-legal a { color: rgba(255,255,255,0.4); margin-left: 1.2rem; }
.footer-legal a:hover { color: var(--violet-clair); }
.footer-social { display: flex; gap: 0.8rem; }
.footer-social a { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.35); transition: all 0.3s; }
.footer-social a:hover { border-color: var(--violet-clair); color: var(--violet-clair); }

/* --- REVEAL --- */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .valeurs-grid { grid-template-columns: repeat(3, 1fr); }
  .univers-grid { grid-template-columns: repeat(2, 1fr); }
  .formations-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  :root { --section-padding: 4.5rem 5%; }
  .nav-links {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(30,26,36,0.98); flex-direction: column; align-items: center;
    justify-content: center; gap: 1.5rem; overflow-y: auto; padding: 4rem 0;
  }
  .nav-links.open { display: flex; }
  .nav-links > a, .nav-dropdown > a { font-size: 0.95rem; }

  /* Sur mobile : les sous-menus sont CACHÉS par défaut */
  .nav-dropdown .dropdown-menu {
    position: static;
    background: transparent;
    box-shadow: none;
    min-width: auto;
    text-align: center;
    padding: 0;
    /* Caché par défaut */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    transform: none;
  }

  /* Quand on clique : le sous-menu s'ouvre */
  .nav-dropdown.open .dropdown-menu {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
  }

  /* Désactiver le hover sur mobile */
  .nav-dropdown:hover .dropdown-menu {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
  }
  .nav-dropdown.open:hover .dropdown-menu {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
  }

  /* Petite flèche qui tourne quand le dropdown est ouvert */
  .nav-dropdown > a .arrow {
    display: inline-block;
    transition: transform 0.3s;
  }
  .nav-dropdown.open > a .arrow {
    transform: rotate(180deg);
  }

  .dropdown-menu a { color: rgba(255,255,255,0.5) !important; font-size: 0.82rem !important; padding: 0.4rem 0; }
  .burger { display: flex; }
  .about-grid, .podcast-inner, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-visual { height: 320px; }
  .valeurs-grid { grid-template-columns: repeat(2, 1fr); }
  .univers-grid, .formations-cards { grid-template-columns: 1fr; }
  .about-stats { gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .podcast-artwork { width: 260px; height: 260px; }
  .hero-logo img { height: 100px; }
}
@media (max-width: 480px) {
  .valeurs-grid { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; gap: 1.2rem; }
}

/* ============================================
   CARTES FORMATIONS (page liste)
   ============================================ */
.formations-liste {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.formation-card {
  background: var(--blanc);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.formation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(191, 119, 230, 0.1);
}

/* Image en haut de la carte */
.formation-card-img {
  height: 220px;
  overflow: hidden;
}

.formation-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.formation-card:hover .formation-card-img img {
  transform: scale(1.05);
}

/* Corps de la carte */
.formation-card-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Badge niveau */
.formation-card-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: var(--violet-bg);
  color: var(--violet);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.8rem;
  align-self: flex-start;
  font-family: 'Poppins', sans-serif;
}

.formation-card-body h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  line-height: 1.3;
  color: var(--texte);
}

.formation-card-body p {
  color: var(--texte-light);
  font-size: 0.88rem;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1rem;
}

/* Infos rapides (durée, heures, modalité) */
.formation-card-infos {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.formation-card-infos span {
  padding: 0.25rem 0.6rem;
  background: var(--gris-clair);
  font-size: 0.7rem;
  color: var(--texte-light);
  font-family: 'Poppins', sans-serif;
}

/* Bouton Détails */
.formation-card-btn {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  border: 1.5px solid var(--violet);
  color: var(--violet);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s;
  align-self: flex-start;
  text-align: center;
}

.formation-card-btn:hover {
  background: var(--violet);
  color: var(--blanc);
}

/* Responsive cartes */
@media (max-width: 1024px) {
  .formations-liste { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .formations-liste { grid-template-columns: 1fr; max-width: 500px; }
}