/* Page À propos */

/* Hero */
.apropos-hero {
  background: #1A1A1A;
  color: #fff;
  padding-top: 100px;
  padding-bottom: 4rem;
  text-align: center;
  position: relative;
}

.apropos-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.apropos-hero h1 em {
  color: #E87722;
  font-style: normal;
}

.apropos-hero__lead {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.apropos-breadcrumb {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* Section Histoire */
.section-histoire {
  background: #fff;
}

.histoire-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.histoire-text h2 {
  margin-bottom: 1.5rem;
}

.histoire-text p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.histoire-visual {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.histoire-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4 / 3;
}

/* Timeline verticale alternée */
.section-timeline {
  background: var(--color-gray-light);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, #E87722, transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 2rem);
  margin-bottom: 3rem;
  position: relative;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}

.timeline-item.right {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 2rem);
  transform: translateX(30px);
}

.timeline-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 16px;
  height: 16px;
  background: #E87722;
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px rgba(232, 119, 34, 0.2);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 4px rgba(232, 119, 34, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(232, 119, 34, 0.1); }
  100% { box-shadow: 0 0 0 4px rgba(232, 119, 34, 0.2); }
}

.timeline-content {
  background: #fff;
  border: 0.5px solid #E5E3DE;
  border-radius: 12px;
  padding: 1.5rem;
  max-width: 320px;
}

.timeline-year {
  color: #E87722;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.timeline-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  font-size: 14px;
  color: #6B6966;
  line-height: 1.6;
}

/* Section Fondateur */
.section-fondateur {
  background: #F7F6F4;
}

.fondateur-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.fondateur-photo {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.fondateur-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.fondateur-text h2 {
  margin-bottom: 0.25rem;
}

.fondateur-titre {
  color: #E87722;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.fondateur-text p {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.fondateur-quote {
  border-left: 3px solid #E87722;
  padding-left: 1.5rem;
  margin-top: 1.5rem;
}

.fondateur-quote p {
  color: #6B6966;
  font-style: italic;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Animations */
.apropos-page [data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.apropos-page [data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 960px) {
  .histoire-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    padding-right: 0;
    padding-left: 3.5rem;
    justify-content: flex-start;
  }

  .timeline-item.right {
    padding-left: 3.5rem;
    padding-right: 0;
  }

  .timeline-dot {
    left: 20px;
  }

  .timeline-content {
    max-width: none;
  }

  .fondateur-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .fondateur-photo {
    max-width: 280px;
    margin: 0 auto;
  }

  .fondateur-quote {
    border-left: none;
    padding-left: 0;
    border-top: 3px solid #E87722;
    padding-top: 1rem;
  }
}
