/* ===== Header & Footer (identiques à ton style.css actuel) ===== */

header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #4CAF50;
  color: white;
  z-index: 1000;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0;
  margin-top: 1rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

/* ===== Corps de page Qui sommes-nous ===== */

body.qui-sommes-nous {
  margin: 0;
  padding: 0;
  background-color: #EAF0F6;
  color: #333; /* texte sombre */
  font-family: Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.qui-sommes-nous main {
  flex: 1;
  padding-top: 150px; /* pour header fixe */
  max-width: 1000px;
  margin: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Hero section */
.hero {
  background-color: #e7f3e7;
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  margin-bottom: 3rem;
}

.hero-content h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #4CAF50;
  border-bottom: 5px solid #b5e853; /* couleur jaune-vert */
  display: inline-block;
  padding-bottom: 0.4rem;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: auto;
  color: #555;
}

/* About sections */
.about-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  padding: 3rem 2rem;
  margin-bottom: 3rem;
  color: #333;
  transition: box-shadow 0.3s ease;
}

.about-section.reverse {
  flex-direction: row-reverse;
}

.about-image img {
  max-width: 350px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  object-fit: cover;
}

.about-text {
  max-width: 500px;
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #4CAF50;
  border-bottom: 3px solid #b5e853;
  padding-bottom: 0.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.3px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
}

/* Key stats */
.key-stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  background-color: #e7f3e7;
  padding: 3rem 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.05);
  margin-bottom: 3rem;
  text-align: center;
  color: #333;
}

.stat {
  margin: 1rem 2rem;
  flex: 1 1 150px;
}

.stat h4 {
  font-size: 3rem;
  color: #b5e853;
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.stat p {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Quote section */
.quote {
  text-align: center;
  padding: 3rem 2rem;
  font-style: italic;
  background-color: #fef9e7;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  color: #666;
  max-width: 720px;
  margin: 0 auto 4rem auto;
}

.quote blockquote {
  margin: 0;
  font-size: 1.4rem;
}

.quote cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  color: #b5e853;
  font-weight: 600;
}

/* Progress Bar identique */
#progressBar {
  position: fixed;
  top: 0;
  left: 0;
  height: 5px;
  background: #ffcc00;
  width: 0%;
  z-index: 2000;
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    gap: 0.8rem;
  }

  .about-section {
    flex-direction: column !important;
    text-align: center;
    padding: 2rem 1rem;
  }

  .about-text h3 {
    border-bottom: none;
    padding-bottom: 0;
    border-top: 3px solid #b5e853;
    padding-top: 1rem;
    margin-bottom: 1rem;
  }

  .about-image img {
    max-width: 100%;
  }

  .key-stats {
    flex-direction: column;
    gap: 2rem;
  }

  .stat {
    margin: 0;
    width: 100%;
  }
}
