/* ==========================================================================
   CSS DÉDIÉ À LA PAGE À PROPOS (apropos.html)
   Contient : bandeau de repères chiffrés, grille de valeurs et frise
   chronologique. S'appuie exclusivement sur les variables déjà définies
   dans css/style.css (--un, --deux, --trois, --quatre, --cinq, --transition).
   ========================================================================== */

/* ==========================================================================
   REPÈRES CHIFFRÉS
   ========================================================================== */
.story-stats-section {
    background: var(--trois);
    padding: 0 8% 100px;
    transition: var(--transition);
}

.story-stats-bar {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(35, 75, 94, 0.08);
}

.story-stat {
    padding: 34px 20px;
    text-align: center;
    border-right: 1px solid rgba(35, 75, 94, 0.08);
}

.story-stat:last-child {
    border-right: none;
}

.story-stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--quatre);
    margin-bottom: 6px;
}

.story-stat span {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--un);
    opacity: 0.7;
}

@media (max-width: 640px) {
    .story-stats-section {
        padding: 0 6% 70px;
    }

    .story-stats-bar {
        grid-template-columns: 1fr;
    }

    .story-stat {
        border-right: none;
        border-bottom: 1px solid rgba(35, 75, 94, 0.08);
    }

    .story-stat:last-child {
        border-bottom: none;
    }
}

/* ==========================================================================
   NOS VALEURS
   ========================================================================== */
.values-section {
    padding: 120px 8%;
    background-color: var(--cinq);
    transition: var(--transition);
}

.values-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    background-color: var(--trois);
    border: 1px solid rgba(35, 75, 94, 0.06);
    padding: 34px 30px;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.06);
    border-color: rgba(157, 145, 113, 0.3);
}

.value-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(157, 145, 113, 0.35);
    color: var(--quatre);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.value-card h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--un);
}

.value-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.7;
    font-weight: 300;
}

@media (max-width: 900px) {
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .values-section {
        padding: 80px 6%;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   FRISE CHRONOLOGIQUE (dates réelles, ordre significatif)
   ========================================================================== */
.timeline-section {
    padding: 120px 8%;
    background-color: var(--un);
    color: var(--trois);
    transition: var(--transition);
}

.timeline-section .section-title {
    color: var(--quatre);
}

.timeline-section .section-lead {
    color: var(--trois);
}

.timeline-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.timeline-row {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-row:first-child {
    padding-top: 0;
}

.timeline-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.timeline-year {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--quatre);
    min-width: 90px;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.88rem;
    line-height: 1.6;
    opacity: 0.75;
    font-weight: 300;
    max-width: 600px;
}

@media (max-width: 576px) {
    .timeline-section {
        padding: 80px 6%;
    }

    .timeline-row {
        gap: 16px;
    }

    .timeline-year {
        font-size: 1.1rem;
        min-width: 60px;
    }
}
