/* ============================
   Styles spécifiques de sections
   (variantes optionnelles)
   ============================ */

/* Variante “section étroite” pour de courts blocs de texte */
.section--narrow {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Variante avec fond doré très léger */
.section--soft-gold {
    background: radial-gradient(
        circle at top,
        rgba(255, 215, 0, 0.12),
        transparent 60%
    );
}

/* Variante avec bordure supérieure décorative */
.section--bordered-top {
    border-top: 3px solid var(--gold);
}

/* Bloc “timeline” (par ex. parcours, étapes de projet) */
.timeline {
    position: relative;
    padding-left: 2rem;
    margin: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0.7rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
        to bottom,
        var(--gold),
        var(--red)
    );
    opacity: 0.6;
}

.timeline-item {
    position: relative;
    margin-bottom: 1.5rem;
}

.timeline-marker {
    position: absolute;
    left: -0.1rem;
    top: 0.3rem;
    width: 0.9rem;
    height: 0.9rem;
    border-radius: 999px;
    background: var(--white);
    border: 2px solid var(--gold);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

.timeline-title {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.timeline-subtitle {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

/* Encadré “FAQ” si vous ajoutez une section de questions/réponses */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
    padding: 1rem 0;
}

.faq-question {
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}

.faq-icon {
    font-size: 1.25rem;
    color: var(--gold);
}

.faq-answer {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: var(--gray);
}

/* Bandeau de section “appel à l’action” */
.section-cta {
    border-radius: 12px;
    padding: 2rem;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 128, 0.94),
        rgba(255, 215, 0, 0.95)
    );
    color: var(--white);
    text-align: center;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
}

.section-cta__title {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
}

.section-cta__subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1.25rem;
}

.section-cta__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}
