/* ======== BASE ======== */
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;;
    color: #333;
    line-height: 1.6;
    background: #fff;
  }
  
  @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

  a {
    text-decoration: none;
    color: inherit;
  }
  
  button {
    cursor: pointer;
    font-size: 16px;
  }
  
 /* === HEADER GLOBAL POUR TOUTES LES PAGES === */
/* === HEADER MODERNE CENTRÉ === */
.site-header {
  background: #fff;
  padding: 10px 40px;
  border-bottom: 1px solid #eee;
  position: relative;
  z-index: 100;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between; /* espace entre logos, menu, bouton */
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 0;
}

/* Logos côte à côte */
.header-logos {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-logos img {
  height: 60px;
  object-fit: contain;
}


.header-logo .sous-titre {
  font-size: 10px;
  margin-top: 2px;
  letter-spacing: 0.8px;
  color: #444;
}

/* NAVIGATION CENTRÉE */
.main-nav {
  display: flex;
  gap: 30px;
  flex-grow: 1;
  justify-content: center;
}

.main-nav a {
  color: #111;
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.3s ease; /* animation fluide */
}

.main-nav a:hover {
  color: #f59e0b; /* orange au survol */
}


.main-nav .arrow {
  font-size: 10px;
  margin-left: 2px;
}

/* Structure du menu déroulant */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  cursor: pointer;
}

/* Flèche */
.arrow {
  font-size: 10px;
  margin-left: 4px;
  transition: transform 0.3s ease;
  font-weight: normal; /* assure que ce n'est pas en gras */
}


/* Optionnel : flèche qui pivote au survol */
.nav-dropdown:hover .arrow {
  transform: rotate(180deg);
}


/* Sous-menu masqué par défaut */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #eee;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  min-width: 160px;
  z-index: 200;
  flex-direction: column;
}

.dropdown-menu a {
  display: block;
  padding: 8px 16px;
  color: #111;
  text-decoration: none;
  white-space: nowrap;
  font-weight: normal;
}

.dropdown-menu a:hover {
  background-color: #f9f9f9;
  color: #f59e0b;
}

/* Affichage du sous-menu au survol */
.nav-dropdown:hover .dropdown-menu {
  display: flex;
}


/* CTA ORANGE */
/* CTA ORANGE - version compacte */
.cta-orange {
  background: #f59e0b; /* orange */
  color: white;
  padding: 6px 14px;      /* réduit par rapport à 10px 20px */
  border-radius: 24px;    /* moins arrondi */
  font-weight: bold;
  font-size: 13px;        /* légèrement plus petit */
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s;
}

.cta-orange:hover {
  background: #e08700;
}

/* HIDE DESKTOP NAV ON SMALL SCREENS */
/* ===== MENU HAMBURGER ===== */

.menu-toggle,
.menu-close {
  display: none;
}

.mobile-nav {
  display: none;
}

@media (max-width: 960px) {
  .main-nav,
  .cta-orange {
    display: none;
  }

  .menu-toggle {
    display: block;
    font-size: 28px;
    background: none;
    border: none;
    color: #d4004b;
    cursor: pointer;
    margin-left: auto;
  }

  .menu-close {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    color: #000;
    cursor: pointer;
    margin-left: auto;
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 1001;
  }

  .mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80%;
    background: #fff;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
    padding: 60px 20px 40px;
    transition: right 0.3s ease;
    z-index: 1000;
  }

  .mobile-nav.open {
    right: 0;
    display: block;
  }

  .mobile-nav ul {
    list-style: none;
    padding: 0;
  }

  .mobile-nav ul li {
    margin-bottom: 20px;
  }

  .mobile-nav ul li a {
    color: #333;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
  }

  /* Sous-menus */
  .mobile-dropdown .dropdown-list {
    display: none;
    padding-left: 15px;
    margin-top: 10px;
  }

  .mobile-dropdown.active .dropdown-list {
    display: block;
  }

  .mobile-dropdown > a {
    font-weight: bold;
    cursor: pointer;
  }
}

.page-formation {
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  color: #333;
  margin: 0;
  padding: 0;
}

/* HERO */
.hero-formation {
  position: relative;
  background: linear-gradient(to bottom right, #117f6d, #0fb17d);
  padding: 100px 20px 80px;
  text-align: center;
  color: white;
}

.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-formation .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.2);
  z-index: 1;
}

.hero-formation .hero-content {
  position: relative;
  z-index: 2;
}

.hero-formation h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.hero-formation p {
  font-size: 1.2rem;
}

/* SECTIONS */
.formation-section {
  padding: 80px 20px;
  background: #f9f9f9;
  transition: all 0.5s ease;
}

.formation-section.alt {
  background: #fff;
}

.formation-section .container {
  max-width: 900px;
  margin: auto;
}

.formation-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #117f6d;
}

.formation-section p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-formation h1 {
    font-size: 2rem;
  }
  .formation-section h2 {
    font-size: 1.6rem;
  }
}


  .site-footer {
    position: relative;
    background: url('img/vue_quartier_sevran.jpg') center/cover no-repeat;
    padding: 60px 40px;
    color: white;
    overflow: hidden;
  }
  
  .footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Calque noir semi-transparent */
    z-index: 1;
  }
  
  .footer-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-column {
    flex: 1;
    min-width: 220px;
  }
  
  .footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: bold;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 8px;
  }
  
  .footer-column ul li a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    transition: opacity 0.3s;
  }
  
  .footer-column ul li a:hover {
    opacity: 0.7;
  }
  
  .footer-column p {
    font-size: 15px;
    line-height: 1.6;
  }
  
  .social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  
  .social-icons a img {
    height: 30px;
    width: 30px;
    object-fit: contain;
    transition: transform 0.3s ease;
  }
  
  .social-icons a:hover img {
    transform: scale(1.1);
  }
  
  
  /* ======== HERO ======== */
  .hero-home {
    background: url('img/image-acceuil.svg') center/cover no-repeat;
    position: relative;
    width: 100%;
    height: 100%;
    color: white;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
  }
  
  .hero-overlay {
    width: 100%;
    height: 100%;
    padding: 60px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centrage vertical */
    align-items: flex-start;
    gap: 60px;
  }
  
  .hero-text {
    max-width: 600px;
  }
  
  .hero-text h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
  }
  
  .hero-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  
  .hero-buttons {
    display: flex;
    gap: 20px;
  }
  
 /* Base des boutons */
.btn {
  padding: 14px 24px;
  font-weight: bold;
  font-size: 16px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: 
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* Bouton rouge plein */
.btn-primary {
  background-color: #e6001f;
  color: white;
  border: none;
}

.btn-primary:hover {
  background-color: #c40019;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 12px rgba(230, 0, 31, 0.4);
}

/* Bouton contour */
.btn-outline {
  border: 2px solid #e6001f;
  color: white;
  background: transparent;
}

.btn-outline:hover {
  background-color: #e6001f;
  color: white;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 12px rgba(230, 0, 31, 0.3);
}

  
  /* Cartes infos */
  .hero-infos {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .info-card {
    width: 260px;          /* moins large */
    min-height: 160px;     /* plus haute */
    padding: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
    color: white;
  }
  
  .info-card .icon {
    font-size: 26px;
  }
  
  .info-card.red {
    background-color: #e6001f;
  }
  
  .info-card.yellow {
    background-color: #fbbd08;
    color: #000;
  }
  
  /* ======== INTRO ======== */
  .intro {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 80px 20px;
    background: linear-gradient(135deg, #ffe8e8 0%, #fff6f6 100%);
    position: relative;
    overflow: hidden;
    flex-wrap: wrap;
  }
  
  .intro-images {
    position: relative;
    flex: 1 1 400px;
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeSlideIn 0.8s forwards;
  }
  
  .intro-images img {
    width: 100%;
    max-width: 650px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(212, 0, 75, 0.2);
  }
  
  .badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: #dd213d;
    color: #fff;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    opacity: 0;
    animation: fadeIn 1s forwards;
    animation-delay: 0.6s;
  }
  
  .intro-text {
    flex: 1 1 400px;
    max-width: 700px;
    opacity: 0;
    transform: translateX(50px);
    animation: fadeSlideIn 0.8s forwards;
    animation-delay: 0.4s;
  }
  
  .intro-text h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #111;
  }
  
  .intro-text h2 span {
    display: block;
    font-weight: 700;
    color: #dd213d;
  }
  
  .intro-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #333;
  }
  
  .intro-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
  }
  
  .intro-text ul li {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
  }
  
  .intro-text ul li i {
    font-size: 24px;
    margin-right: 12px;
    color: #dd213d;
    flex-shrink: 0;
    margin-top: 4px;
  }
  
  /* Icônes (tu peux utiliser FontAwesome, SVG inline, etc.) */
  .icon-person::before { content: "👤"; }
  .icon-lightbulb::before { content: "💡"; }
  
  a.cta {
    display: inline-block;
    background-color: #dd213d;
    color: #fff;
    font-weight: 700;
    padding: 14px 36px;
    font-size: 18px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(221,33,61,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s forwards;
    animation-delay: 1s;
  }
  
  a.cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(221,33,61,0.5);
  }
  
  .contact {
    font-size: 16px;
    margin-top: 20px;
    color: #555;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s forwards;
    animation-delay: 1.2s;
  }
  
  .contact a {
    color: #dd213d;
    text-decoration: none;
  }
  
  /* --- Animations --- */
  @keyframes fadeSlideIn {
    to { opacity: 1; transform: translateX(0); }
  }
  
  @keyframes fadeIn {
    to { opacity: 1; }
  }
  
  @keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
  }
  
  /* Classes utilitaires pour délai */
  .fade-slide { animation: fadeSlideIn 0.8s forwards; }
  .delay-1 { animation-delay: 0.5s; }
  .delay-2 { animation-delay: 0.7s; }
  .delay-3 { animation-delay: 0.9s; }
  .delay-4 { animation-delay: 1.1s; }
  
  /* Responsive */
  @media (max-width: 768px) {
    .intro {
      padding: 60px 20px;
    }
    .intro-images, .intro-text {
      transform: none !important;
      opacity: 1 !important;
      animation: none !important;
    }
    .intro-images img {
      max-width: 100%;
    }
    .intro-text h2 {
      font-size: 32px;
    }
  }
  
  /* ======== SERVICES ======== */
.services {
  padding: 70px 40px;
  background: #fff;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.services h2 {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 700;
  color: #111;
}

.services h2 span {
  color: #dd213d;
  font-weight: 900;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.card {
  background: #f1f9ff;
  padding: 30px 20px 40px;
  border-radius: 16px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 15px 35px rgba(221, 33, 61, 0.4);
}

.card img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 25px;
  filter: drop-shadow(0 0 2px rgba(221,33,61,0.5));
}

.card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin: 0;
}

  .stats-section {
    position: relative;
    background: url('img/etudiant.jpg') center center/cover no-repeat;
    height: 400px; /* Hauteur réduite */
    overflow: hidden;
  }
  
  .stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(34, 34, 34, 0.7); /* Gris foncé + opacité */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 40px 20px;
  }
  
  .stats-overlay h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: bold;
    color: #fff;
  }
  
  .stats-overlay h2 span {
    color: #d4004b;
  }
  
  .stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
    max-width: 1000px;
  }
  
  .stat {
    flex: 1 1 200px;
    text-align: center;
  }
  
  .stat .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
    background: #d4004b;
    border-radius: 50%;
  }
  
  .stat h3 {
    font-size: 32px;
    margin: 10px 0;
    color: #fff;
  }
  
  .stat p {
    font-size: 16px;
    color: #eee;
  }

  /* ======= NEWS SECTION ======= */
  .preinscription-section {
    background: linear-gradient(135deg, #fff6f6 0%, #ffe8e8 100%);
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    overflow: hidden;
  }
  
  .preinscription-section .container {
    display: flex;
    max-width: 1100px;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .image-container {
    flex: 1 1 400px;
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeSlideIn 1s forwards;
    animation-delay: 0.3s;
  }
  
  .image-container img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(212, 0, 75, 0.3);
    object-fit: cover;
  }
  
  .content-container {
    flex: 1 1 500px;
    text-align: left;
    opacity: 0;
    transform: translateX(50px);
    animation: fadeSlideIn 1s forwards;
    animation-delay: 0.6s;
  }
  
  .preinscription-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #d4004b;
  }
  
  .preinscription-section h2 span {
    font-weight: 900;
    color: #ff3366;
  }
  
  .preinscription-message {
    font-size: 20px;
    margin-bottom: 35px;
    color: #333;
    line-height: 1.4;
  }
  
  .preinscription-button {
    background-color: #ffd700;
    color: #000;
    font-weight: 700;
    padding: 16px 36px;
    font-size: 20px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    display: inline-block;
  }
  
  .preinscription-button:hover {
    background-color: #ffcc00;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(255, 204, 0, 0.7);
  }
  
  /* Animation keyframes */
  @keyframes fadeSlideIn {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .preinscription-section .container {
      flex-direction: column;
      text-align: center;
    }
    .content-container {
      transform: translateY(20px);
      animation-delay: 0.3s;
    }
    .image-container {
      transform: translateY(20px);
      animation-delay: 0.1s;
    }
  }
  
  .partenaires-section {
    background: #fff6f6;
    padding: 60px 20px;
    text-align: center;
  }
  
  .partenaires-section .section-tag {
    color: #d4004b;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .partenaires-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #222;
  }
  
  .partenaires-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 30px;
    justify-items: center;
    align-items: center;
  }
  
  .partenaires-grid img {
    max-height: 60px;
    max-width: 100%;
    opacity: 0.85;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  .partenaires-grid img:hover {
    opacity: 1;
    transform: scale(1.05);
  }
  
  
/* === Section A PROPOS visuelle === */
.hero-apropos {
  background: linear-gradient(135deg, #D4004B, #f05a7e);
  padding: 100px 20px;
  color: white;
  text-align: center;
}

.hero-apropos h1 {
  font-size: 48px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-apropos p {
  font-size: 18px;
  opacity: 0.9;
}

/* Présentation */
.qui-sommes-nous {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 80px 60px;
  flex-wrap: wrap;
}

.qui-sommes-nous .text-content {
  flex: 1;
  min-width: 300px;
}

.qui-sommes-nous .image-content img {
  max-height: 400px;
  width: auto;
}

.surtitre {
  color: #d4004b;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 10px;
}

.qui-sommes-nous h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.description {
  font-size: 16px;
  color: #555;
}

/* Organigramme */
.organigramme {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.organigramme h2 {
  font-size: 36px;
  margin-bottom: 50px;
  color: #d4004b;
}

.org-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.org-node {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(212, 0, 75, 0.1);
  width: 240px;
  transition: transform 0.3s ease;
}

.org-node:hover {
  transform: translateY(-5px);
}

.org-node img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid #d4004b;
}

.org-sublevel {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.missions,
.accompagnement-global {
  padding: 4rem 1rem;
  background: #f9f9f9;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #333;
}

.highlight {
  color: #D4004B;
  font-weight: bold;
}

.missions p,
.accompagnement-global p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1.5rem;
}


/* Services */
.services {
  padding: 60px 20px;
  text-align: center;
}

.services h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.services h2 span {
  color: #d4004b;
}

.service-cards {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background: #fefefe;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 30px 20px;
  width: 200px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 18px;
  color: #333;
}

/* Stats */
.stats-section {
  background: #d4004b;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.stats-section h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.stats-section span {
  color: #ffd5e1;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.stat {
  min-width: 160px;
}

.stat h3 {
  font-size: 36px;
  margin: 10px 0;
}

.stat p {
  font-size: 16px;
  opacity: 0.8;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .qui-sommes-nous {
    flex-direction: column;
    text-align: center;
  }

  .org-sublevel {
    flex-direction: column;
  }

  .service-cards {
    flex-direction: column;
  }

  .hero-apropos h1 {
    font-size: 36px;
  }

  .stats-grid {
    flex-direction: column;
  }
}
  

  /* ======================================
   STYLE SPÉCIFIQUE : page-accompagnement
====================================== */

.page-accompagnement {
  font-family: 'Montserrat', sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.7;
}

/* --- Container Global --- */
.page-accompagnement .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* --- Section HERO --- */
/* HERO SECTION avec overlay */
.page-accompagnement .hero-accompagnement {
  position: relative;
  background: url('../public/img/bg-accompagnement.jpg') no-repeat center center/cover;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

.page-accompagnement .hero-accompagnement .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(105, 176, 22, 0.6); /* Vert semi-transparent */
  z-index: 1;
}

.page-accompagnement .hero-accompagnement .hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.page-accompagnement .hero-accompagnement h1 {
  font-size: 2.6rem;
  color: #fff;
  font-weight: 800;
  margin-bottom: 15px;
}

.page-accompagnement .hero-accompagnement p {
  font-size: 1.1rem;
  max-width: 750px;
  margin: 0 auto;
  color: #f5f5f5;
}

/* Animation scroll */
.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate.animated {
  opacity: 1;
  transform: translateY(0);
}


/* --- Titres section --- */
.page-accompagnement h2.titre-vert {
  font-size: 2rem;
  color: #69b016;
  font-weight: 700;
  margin-bottom: 30px;
}

.page-accompagnement h4.etape-titre {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 10px;
  color: #333;
}

/* --- Texte + Image --- */
.page-accompagnement .texte-image {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.page-accompagnement .texte-image img {
  width: 320px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.page-accompagnement .texte-image img:hover {
  transform: scale(1.02);
}

.page-accompagnement .texte-image .text {
  flex: 1;
  min-width: 260px;
}

/* --- Étapes Horizontales --- */
.page-accompagnement .flux-etapes {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-behavior: smooth;
}

.page-accompagnement .etape-item {
  flex: 0 0 300px;
  background: #f4f4f4;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-accompagnement .etape-item:hover {
  transform: translateY(-5px);
}

.page-accompagnement .etape-icone {
  width: 50px;
  height: 50px;
  background: #69b016;
  border-radius: 50%;
  margin: 0 auto 10px;
}

.page-accompagnement .etape-arrow-horizontal,
.page-accompagnement .arrow-down {
  text-align: center;
  font-size: 2.5rem;
  color: #999;
  margin: 30px auto;
}

/* --- Accompagnement Global Bloc --- */
.page-accompagnement .accompagnement-global {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.page-accompagnement .accompagnement-global .texte {
  flex: 1;
  min-width: 280px;
}

.page-accompagnement .accompagnement-global .image img {
  width: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* --- Section Pour Qui --- */
.page-accompagnement .section-pour-qui ul {
  list-style: disc;
  padding-left: 20px;
}

.page-accompagnement .section-pour-qui li::marker {
  color: #69b016;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .page-accompagnement .texte-image,
  .page-accompagnement .accompagnement-global {
    flex-direction: column;
    text-align: center;
  }

  .page-accompagnement .texte-image img,
  .page-accompagnement .accompagnement-global .image img {
    width: 100%;
    max-width: 400px;
    margin: 20px auto 0;
  }

  .page-accompagnement .flux-etapes {
    flex-direction: column;
    align-items: center;
  }

  .page-accompagnement .etape-arrow-horizontal,
  .page-accompagnement .arrow-down {
    display: none;
  }
}


/* =======================================
   CSS exclusif à la page-droits
======================================= */

.page-droits {
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  color: #333;
  margin: 0;
  padding: 0;
}

/* HERO */
.hero-droits {
  position: relative;
  background: linear-gradient(to bottom right, #1e7bb2, #2897D5);
  padding: 100px 20px 80px;
  text-align: center;
  color: white;
}

.hero-droits .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0,0,0,0.2);
  z-index: 1;
}

.hero-droits .hero-content {
  position: relative;
  z-index: 2;
}

.hero-droits h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.hero-droits p {
  font-size: 1.2rem;
}

/* TITRE */
.titre-principal {
  color: #fff;
}

/* SECTION GÉNÉRALES */
.droits-section {
  padding: 80px 20px;
  background: #f9f9f9;
}

.droits-section.alt {
  background: #fff;
}

.container {
  max-width: 900px;
  margin: auto;
}

.section-tag {
  color: #2897D5;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #2897D5;
}

p, ul {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

ul {
  padding-left: 20px;
}

ul li {
  margin-bottom: 10px;
  list-style-type: disc;
}

/* ANIMATIONS */
.fade-in, .animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible, .animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-droits h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }
}


.page-nous {
  font-family: 'Montserrat', sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

/* Hero Section */
.page-nous .hero-nous {
  position: relative;
  background-color: #FF0000;
  color: white;
  text-align: center;
  padding: 40px 20px; /* réduit la hauteur verticale */
  overflow: hidden;
}

.page-nous .hero-nous .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.page-nous .hero-nous .hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInDown 1s ease;
}

.page-nous .hero-nous h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.page-nous .hero-nous p {
  font-size: 1.2rem;
}

/* Antenne Section */
.page-nous .antenne-section .container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.page-nous .antenne-card {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: row;
  overflow: hidden;
  flex-wrap: wrap;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease forwards;
}

.page-nous .antenne-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-nous .antenne-card img {
  width: 300px;
  height: auto;
  object-fit: cover;
}

.page-nous .antenne-details {
  flex: 1;
  padding: 25px 35px;
}

.page-nous .antenne-details h2 {
  font-size: 1.7rem;
  margin-bottom: 15px;
  border-left: 5px solid;
  padding-left: 10px;
}

/* Couleurs spécifiques par antenne */
.page-nous .antenne-details h2.sevran {
  color: #B5F9F1;
  border-color: #B5F9F1;
}

.page-nous .antenne-details h2.tremblay {
  color: #FBDA6B;
  border-color: #FBDA6B;
}

.page-nous .antenne-details h2.villepinte {
  color: #947ED1;
  border-color: #947ED1;
}

.page-nous .antenne-details p {
  margin-bottom: 10px;
}

.page-nous .antenne-details table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.page-nous .antenne-details td {
  padding: 6px 8px;
  border-bottom: 1px solid #eee;
}

.antenne-card.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Responsive */
@media (max-width: 768px) {
  .page-nous .antenne-card {
    flex-direction: column;
  }

  .page-nous .antenne-card img {
    width: 100%;
  }
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


   /* ======== PAGE ACTU ======== */

   /* Overlay verte spécifique à la page accompagnement */
.page-accompagnement .overlay.green {
  background-color: rgba(128, 190, 0, 0.6); /* Vert semi-transparent */
  font-family: 'Montserrat', sans-serif;
}

/* Onglets CEJ */
/* === CEJ HEADER TABS === */
.cej-header {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 40px 20px 20px;
  border-bottom: 2px solid #ddd;
  font-weight: bold;
  flex-wrap: wrap;
}

.cej-header a {
  text-decoration: none;
  color: #000;
  padding: 10px;
  transition: color 0.3s;
  font-weight: bold;
}

.cej-header a.active {
  color: #63b600;
  border-bottom: 3px solid #63b600;
}

/* === CEJ CONTENT WRAPPER === */
.cej-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 60px;
  padding: 60px;
}

.cej-text {
  flex: 1 1 600px;
  min-width: 300px;
}

.cej-image {
  flex: 1 1 300px;
}

.cej-image img {
  max-width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* === TITRES ET TEXTES === */
.cej-text h3 {
  font-size: 24px;
  font-weight: bold;
  color: #63b600;
  margin-bottom: 25px;
}

.cej-text h4 {
  color: #63b600;
  font-size: 18px;
  font-weight: bold;
  margin-top: 25px;
  margin-bottom: 10px;
}

.cej-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 15px;
}

/* === LISTES DROITS & DEVOIRS === */
.cej-liste {
  padding-left: 20px;
  margin-bottom: 20px;
}

.cej-liste li {
  list-style-type: disc;
  margin-bottom: 8px;
  font-size: 15px;
}

/* === VIDÉO CEJ === */
.cej-video {
  margin-top: 40px;
}

.cej-video h4 {
  font-size: 18px;
  color: #63b600;
  margin-bottom: 15px;
}

.video-container {
  position: relative;
  display: inline-block;
}

.video-container img {
  max-width: 100%;
  border-radius: 8px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  padding: 10px 18px;
  cursor: pointer;
}

.cej-content {
  display: none;
}

.cej-content.active {
  display: block;
}

.tab-link.active {
  font-weight: bold;
  text-decoration: underline;
}


.hero-boiteoutil {
  position: relative;
  background: linear-gradient(to bottom right, #a2195b, #c5227a); /* Dégradé rose/violet */
  padding: 100px 20px 80px;
  text-align: center;
  color: white;
}

.hero-boiteoutil .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.hero-boiteoutil .hero-content {
  position: relative;
  z-index: 2;
}

.hero-boiteoutil h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.hero-boiteoutil p {
  font-size: 1.2rem;
}

.page-boite-outil .bo-header {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 40px 20px 20px;
  border-bottom: 2px solid #ddd;
  font-weight: bold;
  flex-wrap: wrap;
}

.page-boite-outil .bo-header a {
  text-decoration: none;
  color: #000;
  padding: 10px;
  transition: color 0.3s;
  font-weight: bold;
}

.page-boite-outil .bo-header a.active {
  color: #c5227a;
  border-bottom: 3px solid #c5227a;
}

.page-boite-outil .bo-content {
  display: none;
  padding: 60px;
  max-width: 800px;
  margin: auto;
}

.page-boite-outil .bo-content.active {
  display: block;
}

.page-boite-outil .bo-text h3 {
  color: #c5227a;
  font-size: 22px;
  margin-bottom: 20px;
}

.page-boite-outil .bo-text h4 {
  font-size: 18px;
  color: #c5227a;
  margin-top: 30px;
}

.page-boite-outil .bo-text p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.hero-partenaires {
  background: linear-gradient(135deg, #e3f2fd, #ffffff);
  padding: 6rem 1rem;
  text-align: center;
}

.hero-partenaires .container h1 {
  font-size: 2.8rem;
  color: #2897D5;
  margin-bottom: 1rem;
}

.hero-partenaires .container p {
  font-size: 1.2rem;
  color: #444;
}


.rem-thanks {
  padding: 4rem 1rem;
  background-color: #f9f9f9;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.highlight {
  color: #D4004B;
  font-weight: bold;
}

.rem-thanks p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.2rem;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.partenaires-section {
  padding: 4rem 1rem;
  background: #fff;
  text-align: center;
}

.section-tag {
  font-weight: bold;
  color: #2897D5;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.partenaires-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.partenaires-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
  align-items: center;
  justify-items: center;
}

.partenaires-grid img {
  max-width: 100px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.partenaires-grid img:hover {
  transform: scale(1.05);
}


.page-preinscription .hero-simple {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  background-color: #f7f7f7;
  padding: 2rem;
}

.page-preinscription .container {
  background: white;
  padding: 2rem 3rem;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 600px;
}

.form-preinscription {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-preinscription input,
.form-preinscription label,
.form-preinscription button {
  font-size: 1rem;
  font-family: 'Segoe UI', sans-serif;
}

.form-preinscription input {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: border-color 0.3s;
}

.form-preinscription input:focus {
  border-color: #c5227a;
  outline: none;
}

.form-preinscription button {
  background-color: #c5227a;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.8rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.form-preinscription button:hover {
  background-color: #a2195b;
}

.page-preinscription h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #a2195b;
  text-align: center;
}

.page-preinscription .message {
  margin-top: 1.5rem;
  text-align: center;
  font-weight: bold;
  color: green;
}

/* PAGE ACTUALITES */

/* Section hero */
.actualites-hero {
  background: #f3f3f3;
  padding: 60px 20px;
  text-align: center;
}
.actualites-hero h1 {
  font-size: 2.5rem;
  color: #69b016;
}
.btn-ajout {
  background: #d4004b;
  color: #fff;
  padding: 12px 20px;
  border: none;
  margin-top: 20px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}
.btn-ajout:hover {
  background: #b60040;
}

/* POPUP styles */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.popup.hidden {
  display: none;
}
.popup-content {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  animation: scaleIn 0.3s ease;
  text-align: center;
}
.popup-content input,
.popup-content textarea {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  font-size: 15px;
}
.popup-content button {
  background: #69b016;
  color: #fff;
  padding: 10px 16px;
  border: none;
  cursor: pointer;
  border-radius: 6px;
}
@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Cartes d'actualités */
.actualites-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px 20px;
  justify-content: center;
}
.actu-card {
  width: 280px;
  height: 400px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
}

/* Image */
.actu-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* Titre */
.actu-card h4 {
  padding: 10px 15px 5px;
  font-size: 18px;
  color: #333;
  flex-shrink: 0;
}

/* Description limitée */
.actu-card p {
  padding: 0 15px 15px;
  font-size: 14px;
  color: #555;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  flex-grow: 1;
}

/* Boutons d'admin */
.actu-actions {
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
  gap: 10px;
}

.btn-edit,
.btn-delete {
  font-size: 13px;
  background: #eee;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 5px;
}

.btn-delete {
  color: #d4004b;
}

/* Empêche le scroll sur le body quand zoom est actif */
body.no-scroll {
  overflow: hidden;
}

.zoom-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
}

/* Style du container zoomé */
.zoomed-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  z-index: 1001;
  overflow-y: auto;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.zoomed-container::-webkit-scrollbar {
  width: 8px;
}
.zoomed-container::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 6px;
}
.zoomed-container::-webkit-scrollbar-track {
  background: transparent;
}

/* Image à l'intérieur de l'annonce zoomée */
.zoomed-container img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}




@media (max-width: 1200px) {
  .header-container {
    padding: 10px 20px;
  }
  
  .main-nav {
    gap: 20px;
  }
  
  .intro {
    padding: 60px 40px;
  }
  
  .intro-images img {
    width: 500px;
  }
}

/* Pour les écrans jusqu'à 992px (tablettes en mode paysage) */
@media (max-width: 992px) {
  .header-container {
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .main-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 0;
  }
  
  .hero-overlay {
    padding: 40px;
    gap: 40px;
  }
  
  .hero-text h1 {
    font-size: 36px;
  }
  
  .intro {
    flex-direction: column;
    gap: 40px;
    padding: 60px 30px;
  }
  
  .intro-images img {
    width: 100%;
    max-width: 600px;
  }
  
  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .news-viewport {
    width: 640px; /* 2 cards × 320px */
  }
}

/* Pour les écrans jusqu'à 768px (tablettes en mode portrait) */
@media (max-width: 768px) {
  .site-header {
    padding: 10px 20px;
  }
  
  .header-logos {
    gap: 10px;
  }
  
  .header-logos img {
    height: 50px;
  }
  
  .main-nav {
    display: none; /* On cache le menu principal */
  }
  
  .hero-overlay {
    padding: 30px;
  }
  
  .hero-text h1 {
    font-size: 32px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .hero-infos {
    flex-direction: column;
  }
  
  .info-card {
    width: 100%;
  }
  
  .intro-text h2 {
    font-size: 32px;
  }
  
  .intro-text p, .intro-text ul {
    font-size: 16px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .news-viewport {
    width: 320px; /* 1 card × 320px */
  }
  
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
}

/* Pour les écrans jusqu'à 576px (téléphones) */
@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 28px;
  }
  
  .hero-text p {
    font-size: 14px;
  }
  
  .intro {
    padding: 40px 20px;
  }
  
  .intro-text h2 {
    font-size: 28px;
  }
  
  .service-cards {
    grid-template-columns: 1fr;
  }
  
  .stats-section {
    height: auto;
    padding: 60px 20px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .news-section, .partenaires-section {
    padding: 40px 10px;
  }
  
  .nav {
    display: none; /* On cache les flèches de navigation sur mobile */
  }
  
  .news-viewport {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .news-track {
    width: max-content;
    padding: 0 10px;
  }
  
  .news-card {
    width: 280px;
    margin: 0 5px;
  }
  
  .carousel-track {
    gap: 30px;
  }
  
  .carousel-track img {
    height: 40px;
  }
}

/* =========================================================
   CONTAINER GLOBAL
   ========================================================= */
.ml-timeline {
  width: 100%;
  margin: 0;
  padding: 0;
}

/* =========================================================
   MOIS - BANDE PLEINE LARGEUR
   ========================================================= */
.ml-month-header {
  width: 100%;
  padding: 40px 20px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ml-month-title {
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Couleurs des mois */
.ml-month-janvier { background-color: #2c7be5; }
.ml-month-fevrier { background-color: #6f42c1; }
.ml-month-mars { background-color: #d63384; }
.ml-month-avril { background-color: #198754; }
.ml-month-mai { background-color: #fd7e14; }
.ml-month-juin { background-color: #20c997; }
.ml-month-juillet { background-color: #0dcaf0; }
.ml-month-aout { background-color: #6610f2; }
.ml-month-septembre { background-color: #dc3545; }
.ml-month-octobre { background-color: #6c757d; }
.ml-month-novembre { background-color: #343a40; }
.ml-month-decembre { background-color: #0a58ca; }

/* =========================================================
   CONTENU DÉROULANT DU MOIS
   ========================================================= */
.ml-month-content {
  display: none;
  background-color: #f1f4f8;
  padding: 30px 20px 40px;
  animation: mlFadeIn 0.3s ease;
}

.ml-month-content.ml-open {
  display: block;
}

/* =========================================================
   ANIMATION
   ========================================================= */
@keyframes mlFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   CARTE ÉVÉNEMENT
   ========================================================= */
.ml-event {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

/* Barre couleur à gauche */
.ml-event::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background-color: #0d6efd;
}

/* =========================================================
   DATE & TITRE
   ========================================================= */
.ml-event-date {
  font-size: 0.85rem;
  font-weight: 600;
  color: #6c757d;
  text-transform: uppercase;
}

.ml-event-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #212529;
}

/* =========================================================
   BOUTON AJOUT ATELIER
   ========================================================= */
.ml-btn-add {
  align-self: flex-start;
  background-color: #0d6efd;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.ml-btn-add:hover {
  background-color: #084298;
  transform: translateY(-1px);
}

/* =========================================================
   ATELIERS
   ========================================================= */
.ml-workshops {
  margin-top: 10px;
  padding-left: 15px;
  border-left: 3px dashed #ced4da;
}

.ml-workshop-item {
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: #495057;
}

.ml-workshop-orga {
  color: #6c757d;
  font-style: italic;
}

/* =========================================================
   THÈMES (COULEUR BARRE GAUCHE)
   ========================================================= */
.ml-theme-sante::before {
  background-color: #198754;
}

.ml-theme-emploi::before {
  background-color: #0d6efd;
}

.ml-theme-egalite::before {
  background-color: #d63384;
}

.ml-theme-jeunesse::before {
  background-color: #fd7e14;
}

.ml-theme-handicap::before {
  background-color: #6f42c1;
}

.ml-theme-environnement::before {
  background-color: #20c997;
}

/* =========================================================
   POPUP AJOUT ATELIER
   ========================================================= */
/* ================= OVERLAY ================= */
.ml-popup-overlay {
  position: fixed;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none; /* caché par défaut */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Overlay actif */
.ml-popup-overlay.active {
  display: flex;
}

/* ================= POPUP ================= */
.ml-popup {
  background: #ffffff;
  padding: 25px 30px;
  border-radius: 12px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  animation: popupFade 0.25s ease;
  position: relative;
}

/* ================= TITRE ================= */
.ml-popup h3 {
  margin-bottom: 20px;
  font-size: 20px;
  text-align: center;
  color: #212529;
}

/* ================= INPUTS ================= */
.ml-popup input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  box-sizing: border-box;
}

/* ================= ACTIONS ================= */
.ml-popup-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

/* ================= BOUTONS ================= */
.ml-btn-validate {
  background: #ff7a00;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.ml-btn-cancel {
  background: #ddd;
  color: #212529;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

/* ================= ANIMATION ================= */
@keyframes popupFade {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.ml-btn-delete {
  background: #dc3545;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.85rem;
  cursor: pointer;
  margin-left: 10px;
}

.ml-workshop-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  padding: 6px 10px;
  border-radius: 6px;
  background-color: #f8f9fa;
}

/* Bouton menu hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: #111;
  cursor: pointer;
  z-index: 1001;
}

/* Menu principal (desktop) */
.main-nav {
  display: flex;
  gap: 20px;
}

/* Menu mobile par défaut */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 15px;
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  height: 100vh;
  background-color: #111;
  padding: 80px 20px 20px;
  z-index: 1000;
  transition: transform 0.3s ease;
  transform: translateX(100%);
}

.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}

/* Liens principaux */
.mobile-menu > a,
.mobile-dropdown > a {
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

/* Sous-menu */
.mobile-dropdown-menu {
  display: none;
  flex-direction: column;
  margin-top: 5px;
}

.mobile-dropdown.active .mobile-dropdown-menu {
  display: flex;
}

.mobile-dropdown-menu a {
  padding: 10px 25px;
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid #e6001f;
  color: #fff;
  text-decoration: none;
  margin-top: 5px;
}

/* Flèche */
.mobile-dropdown > a .arrow {
  float: right;
  transition: transform 0.3s ease;
}

.mobile-dropdown.active > a .arrow {
  transform: rotate(180deg);
}

/* Bouton de fermeture */
.close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  z-index: 1001;
}

/* Responsive: afficher le menu hamburger et masquer nav sur mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
  }
}

/* Responsive tablette */
@media (min-width: 577px) and (max-width: 768px) {
  .mobile-menu > a,
  .mobile-dropdown > a {
    padding: 15px 20px;
    font-size: 18px;
  }

  .mobile-dropdown-menu a {
    padding: 12px 30px;
  }
}

/* =====================================================
   CORRECTIONS RESPONSIVE - À AJOUTER À LA FIN DU CSS
   ===================================================== */

/* ========== RESPONSIVE GLOBAL ========== */

/* Tablettes et petits écrans (max 1024px) */
@media (max-width: 1024px) {
  /* Header */
  .header-container {
    padding: 10px 20px;
  }
  
  .header-logos {
    gap: 15px;
  }
  
  .header-logos img {
    height: 50px;
  }
  
  .main-nav {
    gap: 20px;
    font-size: 13px;
  }
  
  /* Hero Home */
  .hero-overlay {
    padding: 40px 30px;
    gap: 40px;
  }
  
  .hero-text h1 {
    font-size: 36px;
  }
  
  .hero-text p {
    font-size: 15px;
  }
  
  .hero-infos {
    gap: 20px;
  }
  
  .info-card {
    width: 240px;
    min-height: 140px;
    padding: 18px;
  }
  
  /* Intro */
  .intro {
    padding: 60px 30px;
    gap: 40px;
  }
  
  .intro-text h2 {
    font-size: 34px;
  }
  
  .intro-text p, .intro-text ul li {
    font-size: 17px;
  }
  
  /* Services */
  .service-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  /* Stats */
  .stats-section {
    height: auto;
    padding: 60px 20px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Qui sommes nous */
  .qui-sommes-nous {
    padding: 60px 30px;
    gap: 30px;
  }
  
  .qui-sommes-nous .image-content img {
    max-height: 320px;
  }
  
  /* Accompagnement */
  .cej-content {
    padding: 40px 30px;
    gap: 40px;
  }
  
  /* Timeline */
  .ml-month-title {
    font-size: 1.8rem;
  }
  
  .ml-event {
    padding: 18px 20px;
  }
}

/* Tablettes portrait et grands mobiles (max 768px) */
@media (max-width: 768px) {
  /* Header - passage au menu mobile */
  .site-header {
    padding: 10px 20px;
  }
  
  .header-logos {
    gap: 10px;
  }
  
  .header-logos img {
    height: 45px;
  }
  
  /* Cache le menu desktop */
  .main-nav,
  .cta-orange {
    display: none;
  }
  
  /* Affiche le menu hamburger */
  .menu-toggle {
    display: block;
  }
  
  /* Hero Home */
  .hero-overlay {
    padding: 30px 20px;
    gap: 30px;
  }
  
  .hero-text {
    max-width: 100%;
  }
  
  .hero-text h1 {
    font-size: 30px;
    line-height: 1.2;
  }
  
  .hero-text p {
    font-size: 15px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .hero-infos {
    flex-direction: column;
    width: 100%;
  }
  
  .info-card {
    width: 100%;
    max-width: 100%;
  }
  
  /* Intro */
  .intro {
    flex-direction: column;
    padding: 50px 20px;
    gap: 30px;
  }
  
  .intro-images {
    width: 100%;
  }
  
  .intro-images img {
    width: 100%;
    max-width: 100%;
  }
  
  .intro-text {
    width: 100%;
    max-width: 100%;
  }
  
  .intro-text h2 {
    font-size: 28px;
  }
  
  .intro-text p, .intro-text ul li {
    font-size: 16px;
  }
  
  /* Services */
  .services {
    padding: 50px 20px;
  }
  
  .services h2 {
    font-size: 28px;
  }
  
  .service-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .card {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }
  
  /* Stats */
  .stats-section {
    height: auto;
    padding: 50px 20px;
  }
  
  .stats-overlay h2 {
    font-size: 26px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  /* Préinscription */
  .preinscription-section .container {
    flex-direction: column;
    text-align: center;
  }
  
  .image-container,
  .content-container {
    flex: 1 1 100%;
    width: 100%;
  }
  
  .preinscription-section h2 {
    font-size: 30px;
  }
  
  .preinscription-message {
    font-size: 18px;
  }
  
  /* Partenaires */
  .partenaires-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-column {
    min-width: 100%;
  }
  
  /* Page À propos */
  .hero-apropos h1 {
    font-size: 36px;
  }
  
  .hero-apropos {
    padding: 80px 20px;
  }
  
  .qui-sommes-nous {
    flex-direction: column;
    padding: 50px 20px;
    text-align: center;
  }
  
  .qui-sommes-nous .text-content {
    order: 1;
  }
  
  .qui-sommes-nous .image-content {
    order: 2;
  }
  
  .qui-sommes-nous .image-content img {
    max-width: 100%;
    max-height: 300px;
  }
  
  .qui-sommes-nous h2 {
    font-size: 30px;
  }
  
  /* Organigramme */
  .org-sublevel {
    flex-direction: column;
    align-items: center;
  }
  
  .org-node {
    width: 100%;
    max-width: 280px;
  }
  
  /* Accompagnement */
  .page-accompagnement .hero-accompagnement {
    height: 50vh;
  }
  
  .page-accompagnement .hero-accompagnement h1 {
    font-size: 2rem;
  }
  
  .page-accompagnement .texte-image {
    flex-direction: column;
    text-align: center;
  }
  
  .page-accompagnement .texte-image img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .page-accompagnement .flux-etapes {
    flex-direction: column;
    align-items: center;
  }
  
  .page-accompagnement .etape-item {
    width: 100%;
    max-width: 350px;
  }
  
  .page-accompagnement .accompagnement-global {
    flex-direction: column;
    text-align: center;
  }
  
  .page-accompagnement .accompagnement-global .image img {
    width: 100%;
    max-width: 350px;
  }
  
  /* CEJ */
  .cej-header {
    gap: 20px;
    padding: 30px 15px 15px;
  }
  
  .cej-header a {
    font-size: 14px;
    padding: 8px;
  }
  
  .cej-content {
    flex-direction: column;
    padding: 40px 20px;
    gap: 30px;
  }
  
  .cej-text,
  .cej-image {
    flex: 1 1 100%;
    width: 100%;
  }
  
  .cej-text h3 {
    font-size: 22px;
  }
  
  /* Boîte à outils */
  .page-boite-outil .bo-header {
    gap: 20px;
    padding: 30px 15px 15px;
  }
  
  .page-boite-outil .bo-content {
    padding: 40px 20px;
  }
  
  /* Droits */
  .hero-droits h1,
  .hero-formation h1,
  .hero-boiteoutil h1 {
    font-size: 2rem;
  }
  
  .hero-droits,
  .hero-formation,
  .hero-boiteoutil {
    padding: 80px 20px 60px;
  }
  
  .droits-section,
  .formation-section {
    padding: 60px 20px;
  }
  
  /* Nos antennes */
  .page-nous .hero-nous {
    padding: 60px 20px;
  }
  
  .page-nous .hero-nous h1 {
    font-size: 2.2rem;
  }
  
  .page-nous .antenne-card {
    flex-direction: column;
  }
  
  .page-nous .antenne-card img {
    width: 100%;
    height: 250px;
  }
  
  .page-nous .antenne-details {
    padding: 20px;
  }
  
  /* Partenaires page */
  .hero-partenaires {
    padding: 4rem 1rem;
  }
  
  .hero-partenaires .container h1 {
    font-size: 2.2rem;
  }
  
  /* Préinscription form */
  .page-preinscription .hero-simple {
    min-height: auto;
    padding: 3rem 1rem;
  }
  
  .page-preinscription .container {
    padding: 1.5rem 1.5rem;
  }
  
  /* Actualités */
  .actualites-hero h1 {
    font-size: 2rem;
  }
  
  .actualites-container {
    padding: 30px 15px;
  }
  
  .actu-card {
    width: 100%;
    max-width: 350px;
  }
  
  /* Timeline */
  .ml-month-header {
    padding: 30px 15px;
  }
  
  .ml-month-title {
    font-size: 1.6rem;
  }
  
  .ml-month-content {
    padding: 25px 15px 35px;
  }
  
  .ml-event {
    padding: 16px 18px;
  }
  
  .ml-event-title {
    font-size: 1rem;
  }
  
  .ml-popup {
    max-width: 90%;
    padding: 20px 25px;
  }
}

/* Petits mobiles (max 576px) */
@media (max-width: 576px) {
  /* Header */
  .site-header {
    padding: 8px 15px;
  }
  
  .header-logos img {
    height: 40px;
  }
  
  /* Hero Home */
  .hero-overlay {
    padding: 25px 15px;
  }
  
  .hero-text h1 {
    font-size: 26px;
  }
  
  .hero-text p {
    font-size: 14px;
  }
  
  .btn {
    padding: 12px 20px;
    font-size: 15px;
  }
  
  .info-card {
    min-height: 130px;
    padding: 16px;
  }
  
  .info-card .icon {
    font-size: 22px;
  }
  
  /* Intro */
  .intro {
    padding: 40px 15px;
  }
  
  .intro-text h2 {
    font-size: 24px;
  }
  
  .intro-text p, .intro-text ul li {
    font-size: 15px;
  }
  
  a.cta {
    padding: 12px 28px;
    font-size: 16px;
  }
  
  /* Services */
  .services {
    padding: 40px 15px;
  }
  
  .services h2 {
    font-size: 24px;
  }
  
  .card {
    padding: 25px 18px;
  }
  
  .card h3 {
    font-size: 17px;
  }
  
  /* Stats */
  .stats-overlay h2 {
    font-size: 22px;
  }
  
  .stat h3 {
    font-size: 28px;
  }
  
  .stat p {
    font-size: 14px;
  }
  
  /* Préinscription */
  .preinscription-section {
    padding: 40px 15px;
  }
  
  .preinscription-section h2 {
    font-size: 26px;
  }
  
  .preinscription-message {
    font-size: 16px;
  }
  
  .preinscription-button {
    padding: 14px 30px;
    font-size: 18px;
  }
  
  /* Partenaires */
  .partenaires-section {
    padding: 40px 15px;
  }
  
  .partenaires-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .partenaires-grid img {
    max-height: 50px;
  }
  
  /* Footer */
  .site-footer {
    padding: 40px 20px;
  }
  
  .footer-column h4 {
    font-size: 16px;
  }
  
  .footer-column ul li a,
  .footer-column p {
    font-size: 14px;
  }
  
  /* Pages spécifiques */
  .hero-apropos,
  .hero-droits,
  .hero-formation,
  .hero-boiteoutil,
  .page-nous .hero-nous {
    padding: 60px 15px 50px;
  }
  
  .hero-apropos h1,
  .hero-droits h1,
  .hero-formation h1,
  .hero-boiteoutil h1,
  .page-nous .hero-nous h1 {
    font-size: 1.8rem;
  }
  
  .hero-apropos p,
  .hero-droits p,
  .hero-formation p,
  .hero-boiteoutil p,
  .page-nous .hero-nous p {
    font-size: 1rem;
  }
  
  .qui-sommes-nous h2,
  h2 {
    font-size: 26px;
  }
  
  .droits-section,
  .formation-section {
    padding: 50px 15px;
  }
  
  /* Accompagnement */
  .page-accompagnement .hero-accompagnement {
    height: 40vh;
  }
  
  .page-accompagnement .hero-accompagnement h1 {
    font-size: 1.6rem;
  }
  
  .page-accompagnement h2.titre-vert {
    font-size: 1.6rem;
  }
  
  /* CEJ et Boîte à outils */
  .cej-header,
  .page-boite-outil .bo-header {
    flex-direction: column;
    gap: 10px;
  }
  
  .cej-header a,
  .page-boite-outil .bo-header a {
    width: 100%;
    text-align: center;
  }
  
  .cej-content,
  .page-boite-outil .bo-content {
    padding: 30px 15px;
  }
  
  .cej-text h3,
  .page-boite-outil .bo-text h3 {
    font-size: 20px;
  }
  
  /* Nos antennes */
  .page-nous .antenne-details {
    padding: 18px 15px;
  }
  
  .page-nous .antenne-details h2 {
    font-size: 1.4rem;
  }
  
  /* Actualités */
  .actualites-hero {
    padding: 40px 15px;
  }
  
  .actualites-hero h1 {
    font-size: 1.8rem;
  }
  
  .actualites-container {
    padding: 25px 10px;
  }
  
  .actu-card {
    width: 100%;
    height: auto;
    min-height: 380px;
  }
  
  .zoomed-container {
    width: 95%;
    padding: 15px;
    max-height: 85vh;
  }
  
  /* Timeline */
  .ml-month-title {
    font-size: 1.4rem;
  }
  
  .ml-event-title {
    font-size: 0.95rem;
  }
  
  .ml-event-date {
    font-size: 0.8rem;
  }
  
  .ml-btn-add {
    padding: 7px 14px;
    font-size: 0.85rem;
  }
  
  .ml-popup {
    padding: 18px 20px;
  }
  
  .ml-popup h3 {
    font-size: 18px;
  }
}

/* Très petits écrans (max 375px) */
@media (max-width: 375px) {
  .hero-text h1 {
    font-size: 24px;
  }
  
  .intro-text h2 {
    font-size: 22px;
  }
  
  .services h2,
  h2 {
    font-size: 22px;
  }
  
  .btn {
    padding: 10px 18px;
    font-size: 14px;
  }
  
  .info-card {
    padding: 14px;
  }
  
  .partenaires-grid img {
    max-height: 45px;
  }
  
  .ml-month-title {
    font-size: 1.2rem;
  }
  
  .actu-card {
    width: 100%;
  }
}

/* Corrections overflow et scroll horizontal */
* {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

/* Empêche le débordement des éléments */
.hero-overlay,
.intro,
.services,
.stats-section,
.preinscription-section,
.partenaires-section,
.footer-content {
  max-width: 100%;
  overflow-x: hidden;
}

/* Menu mobile - amélioration touch */
.mobile-nav {
  -webkit-overflow-scrolling: touch;
}

/* Amélioration des zones tactiles sur mobile */
@media (max-width: 768px) {
  button,
  a,
  .btn,
  .menu-toggle {
    min-height: 44px;
    min-width: 44px;
  }
}

/* Fix pour les images dans les cartes */
.card img,
.org-node img,
.partenaires-grid img {
  width: auto;
  max-width: 100%;
}

/* Amélioration lisibilité texte sur petit écran */
@media (max-width: 576px) {
  body {
    font-size: 14px;
    line-height: 1.5;
  }
  
  p {
    margin-bottom: 15px;
  }
}
