  /* ===== RESET ===== */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'Inter', sans-serif; background: #0b0b0b; color: #ffffff; line-height: 1.6; }
    img { width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }

    /* ===== VARIABLES ===== */
    :root {
      --bg-main: #0b0b0b;
      --bg-section: #111111;
      --bg-card: #161616;
      --text-muted: #b5b5b5;
      --accent: #ffffff;
    }

    /* ===== GLOBAL ===== */
    .container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
    section { padding: 80px 0; }
    h1, h2, h3 { font-family: 'Montserrat', sans-serif; }

    h1 { font-size: 56px; margin-bottom: 20px; }
    h2 { font-size: 36px; margin-bottom: 20px; }
    h3 { font-size: 22px; margin-bottom: 10px; }

    p { color: var(--text-muted); font-size: 17px; }

    .btn {
      display: inline-block;
      margin-top: 25px;
      padding: 14px 32px;
      border: 1px solid #fff;
      border-radius: 30px;
      font-weight: 600;
      transition: 0.3s;
    }
    .btn:hover {
      background: #fff;
      color: #000;
    }

    /* ===== HERO ===== */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      background:
        linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
        url("/assets/img1.jpg");
      background-size: cover;
      background-position: top;
    }

    .hero p { max-width: 700px; margin: 0 auto; }

    /* ===== SECTIONS ===== */
    /* .two-cols {
      display: grid;
      grid-template-columns: 1fr 400px;
      gap: 40px;
      align-items: center;
    }

    .two-cols1 {
      display: grid;
      grid-template-columns: 400px 1fr;
      gap: 40px;
      align-items: center;
    } */

    .two-cols, .two-cols1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 800px) {
  .two-cols { grid-template-columns: 1fr 1fr; }
  .two-cols1 { grid-template-columns: 1fr 1fr; }
}

.container, section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

p, ul, ol {
  max-width: 90%;
  margin: 0 auto 20px auto;
}



    /* ===== Images ===== */
    .img-box {
      position: relative;
      border-radius: 10px;
      overflow: hidden;
        width: 100%;
  max-width: 400px; /* limite pour grands écrans */
  margin: 0 auto;
    }

    .img-box::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      border-radius: 10px;
      
      box-shadow:
    inset 0 0 30px rgba(0,0,0,0.7),
    inset 0 0 80px rgba(0,0,0,0.4);
    }

    .img::after {
      background-color: rgba(0,0,0,0.15);
      box-shadow:
    inset 0 0 30px rgba(0,0,0,0.7),
    inset 0 0 100px rgba(0,0,0,0.5);
    }


    .section-dark { background: var(--bg-section); }

    /* ===== CARDS ===== */
    .grid-5 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
    }

    .card {
      background: var(--bg-card);
      border-radius: 12px;
      overflow: hidden;
      text-align: center;
    }

    .card p {
      padding: 12px;
      font-weight: 600;
      color: #fff;
    }

    /* ===== LIST ===== */
    ul.custom-list {
      list-style: none;
      margin-top: 20px;
    }

    ul.custom-list li {
      margin-bottom: 10px;
      font-size: 17px;
    }

    /* ===== FOOTER ===== */
    footer {
      background: #000;
      text-align: center;
      padding: 30px;
      color: #777;
      font-size: 14px;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 800px) {
      h1 { font-size: 40px; }
      h2 { font-size: 28px; }
      .two-cols { grid-template-columns: 1fr; }
      .two-cols1 { grid-template-columns: 1fr; }
      .why, .parcours { padding-left: 50px; }
    }

    section {
      padding: 60px 20px;
      max-width: 1100px;
      margin: auto;
    }

    h2 {
      text-align: center;
      margin-bottom: 20px;
    }

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.galerie-grid img {
  width: 100%;
  border-radius: 8px;
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  /* background: #f8fafc; */
  /* color: #0f172a; */
}

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.5px;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
}

section {
  padding: 80px 20px;
}

section:nth-child(even) {
  /* background: white; */
}

section:nth-child(odd) {
  /* background: #f1f5f9; */
}

.cadre, .why, .parcours, .fondateur, .faq, .temoignages {
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.why {
  line-height: 2.5em;
}

.structure {
  text-align: center;
}


.parcours {
  line-height: 3em;
}

ul, ol {
  max-width: 600px;
  margin: auto;
  text-align: left;
  font-size: 1.05rem;
}

blockquote {
  background: #161616;
  padding: 20px;
  margin: 20px auto;
  border-left: 4px solid #007BFF;
  max-width: 700px;
  font-style: italic;
}

.btn-footer {
  background: #161616;
}


