
    @font-face {
      font-family: 'StretchPro';
      src: url('https://cdn.shopify.com/s/files/1/0910/7741/1158/files/StretchPro.otf?v=1744386070') format('opentype');
    }
/* COULEURS DE LA CHARTE */
:root {
  --sable-clair: #E9DDC7;
  --brun-doux: #A68A6D;
  --brun-fonce: #5C4432;
  --vert-olive-doux: #7A8B61;
  --jaune-vanille: #F8E7A2;
}

* {
  font-variant-ligatures: none;
  -webkit-font-variant-ligatures: none;
  text-rendering: optimizeLegibility;
}


body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: var(--sable-clair);
  color: var(--brun-fonce);
}

h1, h2, h3 {
  font-family: 'StretchPro', sans-serif;
  text-transform: uppercase;
  line-height: 1.3;
}

.sticky-header {
  position: sticky;
  top: 0;
  background-color: var(--sable-clair);
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}

.logo {
  font-family:'Helvetica Neue', sans-serif;
  font-weight: bold;
  font-size: 2rem;
  color: var(--brun-fonce);
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: var(--brun-fonce);
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: var(--vert-olive-doux);
}

.don-btn {
  background-color: var(--vert-olive-doux);
  color: white!important;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  text-decoration: none;
}

.don-btn:hover {
  background-color: var(--brun-doux);
}

#language-select {
  padding: 0.3rem;
  border-radius: 5px;
  border: 1px solid var(--brun-doux);
  background-color: white;
  font-weight: bold;
}

/* HERO BANNER */
.hero-banner {
  background: url('main.jpg') center/cover no-repeat;
  height: 80vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  padding: 0 1rem;
}

.hero-banner::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(92, 68, 50, 0.5);
  z-index: 0;
}

.banner-content {
  position: relative;
  z-index: 1;
  max-width: 90%;
}

.banner-content h1 {
  font-size: clamp(2rem, 6vw, 4rem); /* ✅ responsive */
  margin: 0;
}

.banner-content h2 {
  font-size: clamp(1rem, 4vw, 2rem); /* ✅ responsive */
  margin-top: 1rem;
}

/* VIDEO SECTION */
.video-section {
  padding: 7rem;
  background-color: var(--jaune-vanille);
  display: flex;
  justify-content: center;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding-bottom: 56.25%;
  height: 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

html {
  scroll-behavior: smooth;
}

/* Burger button with animation */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.burger .bar {
  width: 25px;
  height: 3px;
  background-color: var(--brun-fonce);
  transition: all 0.3s ease;
}

.burger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active .bar:nth-child(2) {
  opacity: 0;
}

.burger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive menu */
@media screen and (max-width: 900px) {
  .burger {
    display: flex;
  }

  .video-section{
    padding:0px;
  }

  nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    background: var(--sable-clair);
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition-delay: 0s; /* <-- ceci empêche un délai à l'ouverture */
  }

  nav.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links li a,
  .nav-links .don-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
  }

  .dropdown select {
    margin-top: 0.5rem;
  }
}

/* POURQUOI CE PROJET */

.projet-section {
  background-color: var(--sable-clair);
  padding: 4rem 2rem;
}

.projet-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.projet-image {
  flex: 1 1 40%;
}

.projet-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.projet-texte {
  flex: 1 1 55%;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--brun-fonce);
}

.projet-texte h2 {
  font-family: 'StretchPro', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 1rem;
  color: var(--brun-fonce);
}

.projet-texte p {
  margin-bottom: 1.2rem;
}

/* DON SECTION */

.don-section {
  background-color: var(--jaune-vanille);
  padding: 4rem 2rem;
  text-align: center;
}

.don-container {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--brun-fonce);
}

.don-container h2 {
  font-family: 'StretchPro', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 1.5rem;
}

.don-container p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.donation-btn {
  display: inline-block;
  margin-top: 2rem;
  background-color: var(--vert-olive-doux);
  color: white;
  padding: 0.8rem 1.5rem;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.donation-btn:hover {
  background-color: var(--brun-doux);
}

/* L'INITIATIVE */

.projet2-section {
  background-color: var(--sable-clair);
  padding: 4rem 2rem;
}

.projet2-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.projet2-texte {
  flex: 1 1 55%;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--brun-fonce);
}

.projet2-texte h2 {
  font-family: 'StretchPro', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 1.5rem;
}

.projet2-texte h3 {
  font-family: 'StretchPro', sans-serif;
  font-size: clamp(1.2rem, 3.5vw, 1.5rem);
  margin: 1.5rem 0 1rem;
  color: var(--brun-fonce);
}

.projet2-texte p {
  margin-bottom: 1.2rem;
}

.projet2-image {
  flex: 1 1 40%;
}

.projet2-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* SARAH SECTION */

.sarah-section {
  background-color: var(--sable-clair);
  padding: 4rem 0rem 0;
}

.sarah-title {
  max-width: 1000px;
  margin: 0 auto 2rem;
  text-align: center;
  color: var(--brun-fonce);
}

.subline {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9em;
  line-height: 1.4;
}


.sarah-title h2 {
  font-family: 'StretchPro', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem); /* responsive et plus petit */
  line-height: 1.4;
  max-width: 90%;
  margin: 0 auto;
}


.sarah-gallery {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
  padding: 0;
}

.sarah-gallery img {
  flex: 1 1 25%;
  width: 25%;
  height: auto;
  display: block;
  object-fit: cover;
  margin: 0;
  padding: 0;
}

/* Responsive */
@media screen and (max-width: 1024px) {
  .sarah-gallery img {
    width: 50%;
    flex: 1 1 50%;
  }
}

/* INITIATEURS */

    .initiators-section {
      background-color: var(--sable-clair);
      padding: 4rem 2rem;
    }

    .initiators-container {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
      justify-content: center;
      max-width: 1200px;
      margin: 0 auto;
      gap: 2rem;
    }

    .initiators-image {
      flex: 1 1 50%;
      position: sticky;
      top: 5rem;
      align-self: flex-start;
    }

    .initiators-image img {
      width: 100%;
      height: auto;
      border-radius: 10px;
      object-fit: cover;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .initiators-text {
      flex: 1 1 45%;
      color: var(--brun-fonce);
      font-size: 1rem;
      line-height: 1.7;
    }

    .initiators-text h2 {
      font-family: 'StretchPro', sans-serif;
      font-size: clamp(1.4rem, 4vw, 2rem);
      margin-bottom: 1.5rem;
    }


    .initiators-text ul {
      padding-left: 1.2rem;
      margin-bottom: 1.2rem;
    }

    .accordion {
      margin-top: 2rem;
    }

    .accordion-toggle {
      width: 100%;
      background-color: var(--vert-olive-doux);
      color: white;
      padding: 0.8rem 1rem;
      font-weight: bold;
      text-align: left;
      border: none;
      border-radius: 5px;
      margin-top: 1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      transition: background 0.3s ease;
    }

    .accordion-toggle:hover {
      background-color: var(--brun-doux);
    }

    .accordion-toggle .icon {
      font-weight: bold;
      font-size: 1.2rem;
      transition: transform 0.3s ease;
    }

    .accordion-toggle.active .icon {
      transform: rotate(45deg);
    }

    .accordion-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease, padding 0.3s ease;
      background-color: white;
      border-left: 4px solid var(--vert-olive-doux);
      margin-bottom: 1rem;
      border-radius: 0 5px 5px 5px;
      padding: 0 1rem;
    }

    .accordion-content.open {
      padding: 1rem;
    }

@media screen and (max-width: 768px) {
  .initiators-image {
    position: static;
    top: auto;
  }
}

/* VOUS ETES VICTIME */

.cta-banner {
  background-color: var(--brun-fonce);
  color: white;
  text-align: center;
  padding: 3rem 1rem;
}

.cta-container {
  max-width: 1000px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-family: 'StretchPro', sans-serif;
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1.1rem;
}

.cta-banner a {
  color: var(--jaune-vanille);
  font-weight: bold;
  text-decoration: none;
}

.cta-banner a:hover {
  text-decoration: underline;
}

/* FOOTER */

    .site-footer {
      background-color: var(--brun-doux); /* plus doux que brun-foncé */
      color: white;
      text-align: center;
      padding: 1.5rem 1rem;
      font-size: 0.95rem;
    }

    .site-footer a {
      color: var(--jaune-vanille);
      text-decoration: none;
      font-weight: bold;
    }

    .site-footer a:hover {
      text-decoration: underline;
    }

