/* ============================================
   SECTION FONDATEURS - GNOVEX
   Design: Moderne, Élégant, Homogène
   ============================================ */

.founders-section {
  padding: 50px 5%;
  background: #ffffff;
  position: relative;
}

.founders-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== EN-TÊTE ===== */
.founders-header {
  text-align: center;
  margin-bottom: 50px;
}

.founders-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1E1E1E;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.founders-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #64748b;
  max-width: 800px;
  margin: 0 auto;
}

/* ===== GRILLE FONDATEURS ===== */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

/* ===== CARTE FONDATEUR ===== */
.founder-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #e5e9f0;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.founder-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(65, 206, 159, 0.03), rgba(37, 176, 213, 0.03));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.founder-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: #25B0D5;
}

.founder-card:hover::before {
  opacity: 1;
}

/* ===== PHOTO FONDATEUR ===== */
.founder-photo {
  width: 180px;
  height: 180px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #f8fafc;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.founder-card:hover .founder-photo {
  transform: scale(1.05);
  border-color: #25B0D5;
  box-shadow: 0 12px 32px rgba(37, 176, 213, 0.2);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== INFO FONDATEUR ===== */
.founder-info {
  position: relative;
  z-index: 1;
}

.founder-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1E1E1E;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.founder-role {
  font-size: 1rem;
  color: #25B0D5;
  font-weight: 600;
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .founders-section {
    padding: 30px 5%;
  }

  .founders-title {
    font-size: 2rem;
  }

  .founders-description {
    font-size: 1rem;
  }

  .founders-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .founder-photo {
    width: 150px;
    height: 150px;
  }

  .founder-name {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .founders-title {
    font-size: 1.75rem;
  }

  .founder-photo {
    width: 130px;
    height: 130px;
  }

  .founder-card {
    padding: 1.5rem;
  }
}