/* Main CSS — V3 Stitch — Layout partagé — La Baule Entreprises */

/* Section wrapper standard */
.lbe-section {
    padding: 4.5rem 0;
}

.lbe-section-sm {
    padding: 2rem 0;
}

/* Titres de section */
.lbe-section-title {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--lbe-bleu);
    margin-bottom: 1rem;
}

.lbe-section-title--centered {
    text-align: center;
}

.lbe-section-subtitle {
    font-size: 1rem;
    color: var(--lbe-gris);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.lbe-section-subtitle--centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Zone principale du contenu */
main.site-main {
    min-height: 60vh;
}

/* Bouton primaire réutilisable */
.btn-lbe {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    background-color: var(--lbe-bleu);
    color: var(--lbe-blanc);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--lbe-radius);
    border: 2px solid var(--lbe-bleu);
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
    text-align: center;
    min-height: 44px;
    text-decoration: none;
}

.btn-lbe:hover {
    background-color: transparent;
    color: var(--lbe-bleu);
    transform: translateY(-1px);
}

.btn-lbe-outline {
    background-color: transparent;
    color: var(--lbe-bleu);
}

.btn-lbe-outline:hover {
    background-color: var(--lbe-bleu);
    color: var(--lbe-blanc);
}

/* Pill variant (Stitch CTA) */
.btn-lbe--pill {
    border-radius: var(--lbe-radius-pill, 50px);
    padding: 0.85rem 2.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* CTA variant (doré) */
.btn-lbe--cta {
    background-color: var(--lbe-dore);
    border-color: var(--lbe-dore);
    color: #fff;
}

.btn-lbe--cta:hover {
    background-color: transparent;
    color: var(--lbe-dore);
}

/* Blanc variant (sur fond bleu) */
.btn-lbe--blanc {
    background-color: #fff;
    border-color: #fff;
    color: var(--lbe-bleu);
    font-size: 1.15rem;
    padding: 1rem 3rem;
}

.btn-lbe--blanc:hover {
    background-color: transparent;
    color: #fff;
}

/* Séparateur */
.lbe-divider {
    height: 3px;
    width: 60px;
    background-color: var(--lbe-dore);
    margin: 1rem 0 1.5rem;
    border: none;
}

.lbe-divider--centered {
    margin-left: auto;
    margin-right: auto;
}

.lbe-divider--blanc {
    background-color: rgba(255,255,255,0.4);
    margin-top: 0.75rem;
    margin-bottom: 1rem;
}

/* Fond alterné pour sections */
.lbe-bg-light {
    background-color: var(--lbe-gris-clair);
}

.lbe-bg-bleu-clair {
    background-color: var(--lbe-bleu-clair);
}

@media screen and (max-width: 768px) {
    .lbe-section {
        padding: 2.5rem 0;
    }

    .btn-lbe--pill {
        padding: 0.75rem 2rem;
        font-size: 0.9rem;
    }

    .btn-lbe--blanc {
        padding: 0.85rem 2rem;
        font-size: 1rem;
    }
}
