body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #333;
}

header {
  background-color: #B03060;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo img {
  height: 50px;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
}

nav a.active {
  text-decoration: underline;
}

.hero {
    background-image: url("cayenne.png");
    background-size: cover;   /* l'image couvre tout */
    background-position: center; /* centrée */
    background-repeat: no-repeat;
    height: 350px; /* hauteur de la section (80% de la hauteur écran) */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white; /* texte en blanc sur l’image */
    text-align: center;
    padding: 20px;
}


.hero h1 {
    font-size: 4em; /* par défaut : grand sur PC */
    font-weight: bold;
    background: rgba(176, 48, 96, 0.6);
    padding: 15px 25px;
    margin: 0 0 2px 0;
    border-radius: 8px;
}

/* Sur les petits écrans (tablettes et téléphones) */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2em; /* plus petit sur mobile */
        padding: 10px 15px;
    }
}



.contact-hero {
    text-align: center;
    margin: 30px 0;
    font-size: 1.2em;
}

.contact-section {
    display: flex;
    flex-wrap: wrap; /* permet de passer en dessous si pas assez de place */
    gap: 20px;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.contact-section .address {
    flex: 1 1 350px; /* prend au moins 300px mais peut s'étendre */
    background-color: #F9F6F3;
    border: 2px solid #B03060;
    text-align: center;
}

.contact-section .map {
    flex: 2 1 500px; /* la carte prend plus d’espace que le texte */
    width: 100%;
    max-width: 700px; /* largeur max plus grande */
    height: 400px; /* hauteur augmentée aussi */
    border: 0;
    border-radius: 8px
}



.mission-text {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
  text-align: justify;
}

.content-text {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
  text-align: justify;
}

.contact-infooo {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
  text-align: justify;
}

.contact-info {
  background-image: url("coucher.png");
  background-size: cover;       /* l'image couvre toute la largeur */
  background-position: center;  /* centrée */
  background-repeat: no-repeat;
  height: 300px;                /* hauteur du bandeau */
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;                 /* texte en blanc */
  text-align: center;
}

/* Style spécifique au titre */
.contact-info h1 {
  font-size: 3em;
  background: rgba(176, 48, 96, 0.6); /* fond amarante semi-transparent */
  padding: 15px 25px;
  border-radius: 8px;
}



.team {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap; /* pour que ça passe bien sur petit écran */
  gap: 20px;
  margin: 40px auto;
  max-width: 1200px;
}

.member {
  flex: 1 1 45%; /* chaque membre prend environ 45% de la largeur */
  background-color: #F9F6F3;
  border: 2px solid #B03060;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  text-align: justify;
}

.member h2 {
  color: #B03060;
}

.phone {
  font-weight: bold;
  font-size: 1.1em;
}

footer {
  background-color: #B03060;
  color: white;
  text-align: center;
  padding: 10px;
}

.map iframe {
  width: 100%;
  border: none;
  margin-top: 20px;
}

.email {
  color: #B03060;
  /*font-weight: bold;*/
}

/* === VERSION MOBILE === */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
  }

  .logo img {
    width: 150px; /* adapte si besoin */
    margin-bottom: 10px;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  nav a {
    font-size: 14px;
    padding: 8px 10px;
  }
}

