/* ========================
   PAGE ÉQUIPE - VertiNet
   ======================== */

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

/* ====== EN-TÊTE ====== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background-color: #2e7d32; /* vert principal */
  color: white;
}

header .logo {
  font-weight: bold;
  font-size: 1.3em;
}

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

header nav a:hover {
  text-decoration: underline;
}

/* ====== SECTION ÉQUIPE ====== */
.equipe {
  max-width: 1100px;
  margin: 60px auto;
  text-align: center;
  padding: 0 20px;
}

.equipe h1 {
  font-size: 2.2em;
  color: #2e7d32;
  margin-bottom: 10px;
}

.equipe .intro {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 40px;
}

/* ====== GRILLE DES MEMBRES ====== */
.equipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  justify-items: center;
}

.membre {
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 100%;
  max-width: 260px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.membre:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}

.membre img {
  margin: 15px;
  width: 200px;
  max-height: 210px;
  border-radius: 10px;
  object-fit: cover;
}

.membre h2 {
  font-size: 1.2em;
  margin-top: 12px;
  margin-bottom: 4px;
  color: #2e7d32;
}

.membre h3 {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 10px;
}

.membre p {
  font-size: 0.9em;
  color: #444;
}

/* ====== FOOTER ====== */
footer {
  background-color: #2e7d32;
  color: white;
  text-align: center;
  padding: 20px 10px;
  margin-top: 60px;
}

footer a {
  color: white;
  text-decoration: none;
  margin: 0 6px;
}

footer a:hover {
  text-decoration: underline;
}

footer .footer-credit {
  margin-top: 10px;
  font-size: 0.9em;
  opacity: 0.9;
}
