/* ===== PAGE "À PROPOS DE NOUS" ===== */

/* Section d'introduction */
.about-intro {
  background: linear-gradient(135deg, #ad6fda 0%, #d8b3ff 100%);
  padding: 60px 20px;
  text-align: center;
}

.about-intro-title {
  color: white;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.4;
  max-width: 1000px;
  margin: 0 auto;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Conteneur principal */
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Contenu des sections */
.about-content {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 20px 0;
}

.about-content:nth-child(even) {
  flex-direction: row-reverse;
}

/* Images */
.about-image {
  width: 400px;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

/* Textes */
.about-subtitle {
  color: #3a0ca3;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.about-subtitle::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: #478ac9;
  border-radius: 2px;
}

.about-description {
  color: #333;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 0;
}

.highlight {
  color: #3a0ca3;
  font-weight: 700;
  font-size: 1.2rem;
}

/* Section CTA */
.about-cta {
  background: #f8f9fa;
  padding: 20px 0;
  text-align: center;
}

.cta-container {
  max-width: 600px;
  margin: 0 auto;
}

.cta-button.large {
  padding: 16px 40px;
  font-size: 1.2rem;
  border-radius: 8px;
  background: #3a0ca3;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-button.large:hover {
  background: #478ac9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(58, 12, 163, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .about-content {
    flex-direction: column !important;
    text-align: center;
    gap: 40px;
    padding: 60px 0;
  }

  .about-image {
    width: 100%;
    max-width: 500px;
    height: 250px;
  }

  .about-subtitle::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 767px) {
  .about-intro {
    padding: 20px 20px;
  }

  .about-intro-title {
    font-size: 1.8rem;
  }

  .about-subtitle {
    font-size: 1.6rem;
  }

  .about-content {
    padding: 20px 0;
    gap: 30px;
  }

  .about-cta {
    padding: 20px 0;
  }
}

/* Animations */
.about-content {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.about-content:nth-child(1) {
  animation-delay: 0.1s;
}
.about-content:nth-child(2) {
  animation-delay: 0.3s;
}
.about-content:nth-child(3) {
  animation-delay: 0.5s;
}
.about-content:nth-child(4) {
  animation-delay: 0.7s;
}
.about-content:nth-child(5) {
  animation-delay: 0.9s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
