/* Footer CSS — V3 — 3 colonnes : logo+nav | contact | infos */

.footer-v3__spacer {
    height: 3rem;
    background: #fff;
}

.footer-v3 {
    background: var(--lbe-bleu);
    color: #fff;
    margin-top: 0;
}

/* ── Grille 3 colonnes égales ── */

.footer-v3__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    min-height: 200px;
}

/* ── COL 1 : logo + vague en haut, nav en dessous ── */

.footer-v3__left {
    display: flex;
    flex-direction: column;
}

/* Zone logo blanche + vague */
.footer-v3__logo-wrap {
    display: flex;
    align-items: stretch;
    background: #fff;
}

.footer-v3__logo-inner {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex: 1;
}

.footer-v3__logo-img {
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    max-width: 100%;
}


.footer-v3__brand {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.25;
    color: var(--lbe-bleu);
    text-align: center;
}

/* Vague SVG — transition blanc → bleu */
.footer-v3__wave {
    width: 150px;
    height: auto;
    display: block;
    flex-shrink: 0;
    margin-left: -1px;
}

/* Nav sous le logo */
.footer-v3__nav-wrap {
    padding: 1rem 1.5rem 1.5rem;
    flex: 1;
}

/* ── COL 2 & 3 ── */

.footer-v3__col {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 2rem 1.5rem;
}

.footer-v3__titre {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--lbe-turquoise);
    margin: 0 0 0.25rem 0;
}

/* ── Nav footer ── */

.footer-v3__nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-v3__nav li {
    margin-bottom: 0.25rem;
}

.footer-v3__nav li a {
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-v3__nav li a:hover {
    color: #fff;
}

/* ── Contact avec icônes ── */

.footer-v3__info {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.footer-v3__info svg {
    flex-shrink: 0;
    margin-top: 0.15rem;
    color: var(--lbe-turquoise);
}

.footer-v3__addr {
    font-style: normal;
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.9);
    margin: 0;
}

/* ── Liens ── */

.footer-v3__link {
    display: inline;
    color: rgba(255,255,255,0.9);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s ease;
    line-height: 1.5;
}

a.footer-v3__link:hover {
    color: #fff;
}

.footer-v3__link--muted {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
}

/* ── LinkedIn ── */

.footer-v3__linkedin {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.5rem;
    padding: 0.4rem 0.9rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--lbe-radius-pill, 50px);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    width: fit-content;
    transition: background 0.2s ease;
}

.footer-v3__linkedin:hover {
    background: rgba(255,255,255,0.18);
    color: #fff;
}

/* ── Copyright ── */

.footer-v3__copy {
    background: var(--lbe-bleu);
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-v3__copy small {
    color: rgba(255,255,255,0.45);
    font-size: 0.75rem;
}

/* ── Responsive ── */

@media (max-width: 991px) {
    .footer-v3__logo-inner {
        padding: 0.6rem 1rem;
    }

    .footer-v3__logo-img {
        width: 80px;
    }

    .footer-v3__col {
        padding: 1.5rem 1rem;
    }

    .footer-v3__wave {
        width: 100px;
    }
}

@media (max-width: 768px) {
    .footer-v3__grid {
        grid-template-columns: 1fr;
    }

    .footer-v3__logo-wrap {
        justify-content: center;
    }

    .footer-v3__wave {
        display: none;
    }

    .footer-v3__logo-inner {
        width: 100%;
        padding: 1rem;
    }

    .footer-v3__logo-img {
        width: auto;
        height: 80px;
    }

    .footer-v3__col {
        padding: 1rem 1.5rem;
    }

    .footer-v3__nav-wrap {
        padding: 1rem 1.5rem;
    }
}
