/* ======================== */
/* RESET DE BASE            */
/* ======================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f9fafb;
  color: #1f2937;
  line-height: 1.7;
}

/* ======================== */
/* HEADER                   */
/* ======================== */
.header {
  text-align: center;
  padding: 3rem 1rem;
  background: linear-gradient(to right, #16a34a, #065f46);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.header p {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 1px;
}

/* ======================== */
/* SECTION PROFIL           */
/* ======================== */
.profil {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 4rem 2rem;
}

/* IMAGE + IDENTITÉ */
.profil-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
  position: relative;
  animation: fadeIn 1.5s ease;
}
.profil-image img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid #16a34a;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}
.profil-image img:hover {
  transform: scale(1.05);
}
.profil-caption {
  margin-top: 1rem;
}
.profil-caption h2 {
  font-size: 1.8rem;
  color: #065f46;
  margin-bottom: 0.3rem;
}
.profil-caption h3 {
  font-size: 1rem;
  color: #16a34a;
  font-weight: 500;
}

/* CONTENU */
.profil-content {
  flex: 2;
  min-width: 300px;
  animation: slideUp 1.2s ease;
}
.profil-content article {
  margin-bottom: 2.5rem;
}
.profil-content h4 {
  font-size: 1.4rem;
  color: #065f46;
  margin-bottom: 0.8rem;
  border-left: 4px solid #16a34a;
  padding-left: 0.8rem;
}
.profil-content p {
  color: #374151;
  margin-bottom: 1rem;
}
.profil-content ul {
  list-style: none;
  margin-top: 0.5rem;
  padding-left: 1.2rem;
}
.profil-content ul li {
  margin: 0.5rem 0;
  position: relative;
  font-size: 1rem;
  color: #111827;
  transition: transform 0.3s ease;
}
.profil-content ul li::before {
  content: "✔";
  position: absolute;
  left: -1.2rem;
  color: #16a34a;
  font-weight: bold;
}
.profil-content ul li:hover {
  transform: translateX(5px);
}

/* ======================== */
/* CHIFFRES CLÉS            */
/* ======================== */
.chiffres-cles {
  margin-top: 3rem;
}
.chiffres-cles h4 {
  text-align: center;
  font-size: 1.5rem;
  color: #065f46;
  margin-bottom: 2rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
}
.stat {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.stat .number {
  font-size: 2rem;
  font-weight: bold;
  color: #16a34a;
  display: block;
  margin-bottom: 0.4rem;
}
.stat .label {
  font-size: 0.95rem;
  color: #374151;
}

/* ======================== */
/* MOT DU PROMOTEUR         */
/* ======================== */
.mot-promoteur {
  background: #e6f4ea;
  padding: 3rem 2rem;
  text-align: center;
  border-top: 4px solid #16a34a;
  border-bottom: 4px solid #16a34a;
  margin-top: 3rem;
}
.mot-promoteur h2 {
  font-size: 1.8rem;
  color: #065f46;
  margin-bottom: 1.5rem;
}
.mot-promoteur blockquote {
  font-style: italic;
  font-size: 1.1rem;
  color: #374151;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
  position: relative;
}
.mot-promoteur blockquote::before {
  content: "“";
  font-size: 3rem;
  color: #16a34a;
  position: absolute;
  left: -1rem;
  top: -0.5rem;
}
.mot-promoteur .signature {
  font-weight: bold;
  color: #065f46;
  font-size: 1rem;
}

/* ======================== */
/* FOOTER                   */
/* ======================== */
.footer {
  text-align: center;
  padding: 2rem;
  background: #065f46;
  color: #fff;
  font-size: 0.95rem;
}

/* ======================== */
/* ANIMATIONS               */
/* ======================== */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ======================== */
/* RESPONSIVE               */
/* ======================== */
@media (max-width: 768px) {
  .profil {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .profil-content article {
    text-align: left;
  }
  .profil-image img {
    width: 220px;
    height: 220px;
  }
}





/* Responsive Header */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    text-align: center;
  }
  .nav ul {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }
}

/* ======================== */
/* FOOTER STYLÉ             */
/* ======================== */
.footer {
  background: #065f46;
  color: #fff;
  padding: 3rem 2rem 1.5rem 2rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.footer-info h3 {
  font-size: 1.5rem;
  color: #f0fdf4;
  margin-bottom: 0.5rem;
}

.footer-info p {
  color: #e0f2f1;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links ul li a {
  text-decoration: none;
  color: #e0f2f1;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #f0fdf4;
}

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

/* Bottom Footer */
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #d1fae5;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1rem;
}

.footer-bottom a {
  color: #f0fdf4;
  text-decoration: underline;
}

.footer-bottom a:hover {
  color: #ffffff;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .footer-links ul {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
}
