/* ===== STYLES SPÉCIFIQUES PAGE À PROPOS ===== */

.contact-infos {
  color: #2c3e50;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive spécifique */
@media (max-width: 768px) {
  .topbar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .header-content {
    flex-direction: column;
    gap: 20px;
  }

  .nav {
    flex-direction: column;
    gap: 10px;
  }

  .hero-content h2 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .director-message {
    flex-direction: column;
    text-align: center;
  }

  .director-text {
    order: 2;
  }

  .director-photo {
    order: 1;
  }

  .objectives-grid,
  .activities-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== 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;
}

/* ===== MAIN CONTENT ===== */

.main-content {
  background: #f5f5f5;
  max-width: 900px;
  margin: 40px auto;
  padding: 60px 80px;
}

/* ===== LEGAL CONTENT ===== */

.legal-content {
  text-align: justify;
  line-height: 1.8;
}

.legal-content h2 {
  color: #ff6600;
  font-size: 1.8em;
  font-weight: 600;
  margin: 40px 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #ff6600;
}

.legal-content h2:first-of-type {
  margin-top: 20px;
}

.legal-content h3 {
  color: #2c3e50;
  font-size: 1.2em;
  font-weight: 600;
  margin: 25px 0 15px 0;
}

.legal-content p {
  margin-bottom: 15px;
  color: #555;
}

.legal-content strong {
  color: #2c3e50;
  font-weight: 600;
}

.legal-content a {
  color: #ff6600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-content a:hover {
  color: #cc5200;
  text-decoration: underline;
}

.info-block {
  background: #f8f9fa;
  border-left: 4px solid #ff6600;
  padding: 20px 25px;
  margin: 25px 0;
  border-radius: 4px;
}

.info-block p {
  margin-bottom: 8px;
  color: #2c3e50;
}

.info-block p:last-child {
  margin-bottom: 0;
}

.separator {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 30px 0;
}

/* ===== VARIABLES POUR PAGE À PROPOS ===== */

:root {
  --accent: #f28c28;
  --accent-2: #2d9cdb;
  --bg-soft: #f6f7f9;
  --card-bg: #ffffff;
  --muted: #58606b;
  --text: #111217;
}

/* ===== INTRO SECTION ===== */

.intro-section {
  background: var(--card-bg);
  padding: 56px 0;
}

.intro-content {
  max-width: 980px;
  margin: 0 auto;
  color: var(--text);
  font-size: 18px;
  line-height: 1.8;
}

.intro-content p + p {
  margin-top: 14px;
}

.lead {
  font-weight: 800;
  color: var(--text);
  font-size: 28px;
  margin-bottom: 24px;
  text-align: center;
}

/* ===== COMPANY INFO SECTION ===== */

.company-info-section {
  background: var(--bg-soft);
  padding: 60px 0;
}

.company-info {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.info-card {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 4px;
  border: 1px solid rgba(17, 18, 23, 0.06);
  transition: transform 0.3s;
}

.info-card:hover {
  transform: translateY(-3px);
}

.info-card h3 {
  color: var(--text);
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 700;
  border-bottom: 2px solid #3f51b5;
  padding-bottom: 10px;
}

.info-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

/* ===== VALUES SECTION ===== */

.values-section {
  background: var(--card-bg);
  padding: 80px 0;
}

.values-section h2 {
  text-align: center;
  color: var(--text);
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 50px;
  font-weight: 800;
}

.values-wrapper {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
  align-items: stretch;
}

.value-card {
  background: var(--bg-soft);
  border-radius: 4px;
  padding: 26px 22px;
  border: 1px solid rgba(17, 18, 23, 0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.value-card .value-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.value-card .value-content p {
  flex: 1;
}

.value-card:hover {
  transform: translateY(-3px);
}

.value-content h4 {
  margin: 0 0 12px 0;
  font-size: 20px;
  color: var(--text);
  font-weight: 700;
  border-bottom: 2px solid #3f51b5;
  padding-bottom: 8px;
}

.value-content p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ===== TWO COLUMN SECTION ===== */

.two-column-section {
  background: var(--bg-soft);
  padding: 60px 0;
}

.two-column-content {
  max-width: 980px;
  margin: 0 auto;
}

.column-text h2 {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--text);
  margin-bottom: 24px;
  font-weight: 800;
  text-align: center;
}

.column-text p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 16px;
}

/* ===== CTA SECTION ===== */

.cta-section {
  background: var(--card-bg);
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid rgba(17, 18, 23, 0.03);
}

.cta-content h2 {
  font-size: clamp(24px, 3.4vw, 32px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}

.cta-content p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 24px;
}

.cta-button {
  display: inline-block;
  background: #e8491d;
  color: white;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  background: #c73d17;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 73, 29, 0.3);
}

/* ===== ANIMATIONS ===== */

@keyframes appearUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.info-card,
.value-card,
.intro-content {
  animation: appearUp 0.45s ease both;
}

/* ===== RESPONSIVE SPÉCIFIQUE PAGE À PROPOS ===== */

@media (max-width: 768px) {
  .values-section {
    padding: 60px 0;
  }

  .values-wrapper {
    gap: 20px;
  }

  .value-card {
    padding: 20px;
  }

  .cta-button {
    width: 100%;
    padding: 14px;
  }
}