/* === FOOTER === */
.footer {
  background-color: #333;
  color: #fff;
  width: 100%;        /* ✅ prend toute la largeur sans déborder */
  margin: 0;          /* ✅ pas d’espace externe */
  padding: 50px 0 20px 0; /* ✅ haut 50px, bas 20px */
  box-sizing: border-box;
}

/* === CONTENU DU FOOTER === */
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto; /* ✅ centre le contenu */
}

.footer-section {
  flex-basis: 30%;
  margin: 20px 0;
  text-align: left;
}

.footer-section h3 {
  margin-top: 0;
  color: #7cd0ff;
}

.footer-section p,
.footer-section li {
  line-height: 1.6;
}

.fas.fa-phone,
.fas.fa-map-marker-alt {
  color: #7cd0ff;
  margin-right: 15px;
  
}

/* === LIENS === */
.footer-section a {
  color: #7cd0ff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-section a:hover {
  color: #fff;
}

/* === BAS DU FOOTER === */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid #444;
  font-size: 0.9rem;
  opacity: 0.9;
}
.footer-bottom p {
  margin: 5px 0;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section {
    flex-basis: 100%;
    margin: 15px 0;
  }
}
/* === SECTION PASTEURS === */
.pasteurs-section {
  background: #ddd; /* fond clair élégant */
  padding: 60px 20px;
  text-align: center;
}

.pasteurs-section h2 {
  font-size: 2rem;
  color: #333;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.3;
}

.pasteurs-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 86, 179, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Effet au survol */
.pasteurs-image:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 28px rgba(0, 86, 179, 0.3);
}


/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .pasteurs-section h2 {
    font-size: 1.8rem;
  }

  .pasteurs-image {
    max-width: 700px;
  }
}

@media (max-width: 768px) {
  .pasteurs-section {
    padding: 50px 15px;
  }

  .pasteurs-section h2 {
    font-size: 1.5rem;
  }

  .pasteurs-image {
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .pasteurs-section {
    padding: 40px 10px;
  }

  .pasteurs-section h2 {
    font-size: 1.3rem;
  }

  .pasteurs-image {
    width: 100%;
    border-radius: 10px;
  }
}
  





