.team-section {
  max-width: 1100px;
  margin: 80px auto;
  text-align: center;
}

.team-section h2 {
  margin-bottom: 40px;
  color: #730d4a;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.team-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.team-card h3 {
  margin-bottom: 5px;
}

.role {
  color: #730d4a;
  font-weight: bold;
}

.club-intro {
  max-width: 850px;
  margin: 60px auto;
  text-align: center;
}

.club-lead {
  font-size: 1.3rem;
  font-weight: 500;
  color: #730d4a;
  margin-bottom: 25px;
}

.club-intro p {
  line-height: 1.7;
  margin-bottom: 15px;
  color: #333;
}

.disciplines {
  max-width: 1100px;
  margin: 80px auto;
}

.disciplines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.discipline-card {
  text-align: center;
  padding: 30px;
  border-radius: 12px;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s;
}

.discipline-card:hover {
  transform: translateY(-5px);
}

.icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.discipline-card h3 {
  color: #730d4a;
  margin-bottom: 10px;
}

.hero-club {
  height: 420px;
  background-image: url("/images/challenge-noel-2025.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.club-stats {
  background: var(--primary-color);
  color: var(--white);

  padding: 60px 20px;
}

.stats-grid {
  max-width: 1100px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;

  text-align: center;
}

.stat h3 {
  font-size: 2.5rem;
  margin-bottom: 5px;
}

.stat p {
  font-size: 1rem;
  opacity: 0.9;
}

.partenaires img {
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
}
.partenaire {
  text-align: center;
}
.partenaire p {
  font-size: 0.95rem;
  color: #444;
}
