/* Reinitialisation et fond de page */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #C8E0E3;
  color: #333;
  line-height: 1.6;
}

/* Barre de navigation */
.onglets {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #0F4F54;
  padding: 0 2rem;
  height: 60px;
  box-sizing: border-box;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.onglets .logo {
  height: 50px;
  width: auto;
}

.logo-text {
  font-family: 'Playwrite NZ', cursive;
  font-size: 1rem;
  color: #FFFFFF;
  font-weight: bold;
}

.onglets ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.onglets ul li {
  margin-left: 2rem;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-link.active {
  color: #71EBF5;
}

.nav-link:hover {
  color: #a6dbdf;
}

/* Contenu principal */
.contenu {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 2rem;
  text-align: justify;
}

.contenu h1 {
  color: #1f4f55;
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.contenu > p {
  margin-bottom: 1.5rem;
}

/* ---- PHOTO ÉQUIPE ---- */
.photo-equipe-container {
  display: flex;
  justify-content: center;
  margin: 1.5rem 0 2rem 0;
}

.photo-equipe {
  width: 100%;
  max-width: 650px;
  height: 380px;
  object-fit: cover;
  object-position: center top;  /* cadre sur les visages */
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(15, 79, 84, 0.25);
  border: 3px solid #007178;
}

/* ---- GROUPES ÉQUIPE ---- */
.contenu h2 {
  color: #1f4f55;
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 1rem;
}

.equipe-groupe {
  background-color: rgba(255, 255, 255, 0.2);
  border: 2px solid #1f4f55;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
}

.equipe-groupe h3 {
  margin-top: 0;
  color: #0F4F54;
  font-size: 1.2rem;
}

.equipe-groupe p {
  margin: 0.5rem 0 0 0;
  font-size: 1rem;
  color: #1f4f55;
}

/* Responsive */
@media (max-width: 600px) {
  .photo-equipe {
    height: 220px;
  }
}
