/* ===================================================================
   A-PROPOS.CSS — Page À propos de l'association
   =================================================================== */

/* --- Layout pleine page --- */
.apropos-page {
    min-height: calc(100vh - 70px);
    background: var(--rbb-page-bg);
    padding-bottom: 64px;
}

/* --- Hero ---------------------------------------------------------- */
.apropos-hero {
    text-align: center;
    padding: 52px 20px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.apropos-logo {
    width: 80px;
    height: auto;
    margin-bottom: 16px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.13));
}

.apropos-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2.2rem;
    font-style: italic;
    font-weight: 700;
    color: var(--rbb-navy);
    margin: 0 0 10px;
    line-height: 1.2;
}

.apropos-subtitle {
    font-size: 1.05rem;
    color: #666;
    margin: 0 0 36px;
}

/* --- Chiffres clés --- */
.apropos-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.apropos-stat {
    background: rgba(255, 255, 255, 0.75);
    border-radius: 14px;
    padding: 18px 28px;
    min-width: 120px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(26, 42, 74, 0.08);
    border: 1px solid rgba(26, 42, 74, 0.08);
}

.apropos-stat-value {
    display: block;
    font-family: Georgia, serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--rbb-navy);
    line-height: 1;
    margin-bottom: 6px;
}

.apropos-stat-label {
    display: block;
    font-size: 0.76rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- Zone de contenu --- */
.apropos-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* --- Cartes de section --- */
.apropos-card {
    background: #fff;
    border-radius: var(--rbb-radius-card);
    box-shadow: var(--rbb-shadow-card);
    padding: 36px 40px;
}

.apropos-card h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--rbb-navy);
    margin: 0 0 20px;
    padding-left: 16px;
    border-left: 4px solid var(--rbb-navy);
    line-height: 1.3;
}

.apropos-card p {
    color: #444;
    line-height: 1.75;
    margin: 0 0 14px;
    font-size: 0.97rem;
}

.apropos-card p:last-child { margin-bottom: 0; }

.apropos-card ul {
    margin: 0 0 16px 0;
    padding-left: 20px;
    color: #444;
    line-height: 1.75;
    font-size: 0.97rem;
}

.apropos-card ul li {
    margin-bottom: 6px;
}

.apropos-card strong { color: var(--rbb-navy); }

/* --- Citation mise en avant --- */
.apropos-quote {
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 1.05rem !important;
    color: var(--rbb-navy) !important;
    border-left: 3px solid var(--rbb-gold);
    padding-left: 16px !important;
    margin-top: 20px !important;
}

/* --- CTA final --- */
.apropos-cta {
    background: var(--rbb-navy);
    border-radius: var(--rbb-radius-card);
    padding: 40px;
    text-align: center;
    color: #fff;
}

.apropos-cta p {
    font-size: 1.1rem;
    margin: 0 0 20px;
    color: rgba(255,255,255,0.88);
}

.apropos-cta-btn {
    display: inline-block;
    background: #fff;
    color: var(--rbb-navy);
    font-weight: 700;
    font-size: 1rem;
    padding: 13px 32px;
    border-radius: var(--rbb-radius-pill);
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.apropos-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    text-decoration: none;
    color: var(--rbb-navy);
}

/* --- Responsive --- */
@media (max-width: 600px) {
    .apropos-title   { font-size: 1.65rem; }
    .apropos-card    { padding: 28px 20px; }
    .apropos-cta     { padding: 28px 20px; }
    .apropos-stats   { gap: 14px; }
    .apropos-stat    { padding: 14px 18px; min-width: 100px; }
    .apropos-stat-value { font-size: 1.4rem; }
}
