/* ===== PAGE PARTENAIRES - STYLES SPÉCIFIQUES ===== */

/* Page Hero */
.page-hero {
  background-color: #2c3e50;
  color: #ffffff;
  padding: 84px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.02;
  margin-bottom: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.page-hero p {
  font-size: 18px;
  color: #ecf0f1;
  margin-top: 15px;
}

/* Partenaires Section */
.partenaires-section {
  padding: 60px 0;
  background: white;
}

.page-header {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #1a237e;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

.page-header::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #ff6600;
}

.partenaires-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.partenaire-card {
  background: white;
  border: 1px solid #e0e0e0;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.partenaire-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-color: #ff6600;
}

.partenaire-card a {
  text-decoration: none;
  display: block;
}

.partenaire-logo {
  width: 100%;
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
  filter: grayscale(30%);
  transition: filter 0.3s ease;
}

.partenaire-card:hover .partenaire-logo {
  filter: grayscale(0%);
}

.partenaire-name {
  color: #2c3e50;
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
}

/* CTA Section */
.cta-section {
  text-align: center;
}

.cta-button {
  display: inline-block;
  background: #e8491d;
  color: white;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover,
.cta-button:focus {
  background: #c73d17;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 73, 29, 0.3);
  color: white;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ACCESSIBILITÉ / FOCUS ===== */
a:focus,
button:focus,
.cta-button:focus {
  outline: 3px solid rgba(242, 140, 40, 0.14);
  outline-offset: 4px;
}

/* ===== RESPONSIVE SPÉCIFIQUE PAGE PARTENAIRES ===== */
@media (max-width: 768px) {
  .page-hero {
    padding: 60px 0;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .page-hero p {
    font-size: 16px;
  }

  .partenaires-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .page-header {
    font-size: 28px;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .partenaires-grid {
    grid-template-columns: 1fr;
  }

  .partenaire-card {
    padding: 20px;
  }

  .cta-button {
    padding: 14px 30px;
    font-size: 14px;
  }
}