@charset "utf-8";

/* ==========================================================
   FOOTER
   ========================================================== */

.ba-footer {
    width: 100%;
    color: #203f47;
    background-color: #6fc1ae;
    font-family: Arial, Helvetica, sans-serif;
}

.ba-footer *,
.ba-footer *::before,
.ba-footer *::after {
    box-sizing: border-box;
}

.ba-footer__inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.ba-footer__grid {
    display: grid;
    grid-template-columns: 1.35fr 0.8fr 0.95fr 1.1fr;
    gap: 55px;
    padding: 70px 0 55px;
}

/* ==========================================================
   IDENTITÉ
   ========================================================== */

.ba-footer__brand {
    max-width: 340px;
}

.ba-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    width: auto;
    max-width: 100%;
    margin-bottom: 20px;
    color: #fff;
    text-decoration: none;
}

.ba-footer__logo img {
    display: block;
    width: 285px;
    max-width: 100%;
    height: auto;
}

.ba-footer__monogram {
    font-family:
        "Arial Rounded MT Bold",
        "Arial Rounded MT",
        Arial,
        sans-serif;
    font-size: 70px;
    font-weight: 800;
    letter-spacing: -0.12em;
    line-height: 0.8;
}

.ba-footer__brand-name {
    color: #fff;
    font-family:
        "Arial Rounded MT Bold",
        "Arial Rounded MT",
        Arial,
        sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.05;
}

.ba-footer__brand p {
    margin: 0;
    color: #294b55;
    font-size: 15px;
    line-height: 1.65;
}

/* ==========================================================
   COLONNES ET LIENS
   ========================================================== */

.ba-footer__column h2 {
    margin: 5px 0 22px;
    color: #203f47;
    font-family:
        "Arial Rounded MT Bold",
        "Arial Rounded MT",
        Arial,
        sans-serif;
    font-size: 18px;
    line-height: 1.2;
}

.ba-footer__column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ba-footer__column li + li {
    margin-top: 11px;
}

.ba-footer__column a {
    color: #294b55;
    font-size: 14px;
    line-height: 1.5;
    text-decoration: none;
    transition: color 180ms ease;
}

.ba-footer__column a:hover,
.ba-footer__column a:focus-visible {
    color: #fff;
}

.ba-footer__column a:focus-visible {
    outline: 3px solid rgba(113, 194, 174, 0.4);
    outline-offset: 4px;
    border-radius: 3px;
}

.ba-footer__meeting {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin-top: 24px;
    padding: 0 17px;
    border: 1px solid #294b55;
    border-radius: 24px;
    color: #fff !important;
    background: #294b55;
    font-family:
        "Arial Rounded MT Bold",
        "Arial Rounded MT",
        Arial,
        sans-serif;
    font-size: 12px !important;
    font-weight: 700;
    text-transform: uppercase;
}

.ba-footer__meeting:hover,
.ba-footer__meeting:focus-visible {
    color: #294b55 !important;
    background: #fff;
}

/* ==========================================================
   RÉSEAUX SOCIAUX
   ========================================================== */

.ba-footer__contact > a {
    overflow-wrap: anywhere;
}

.ba-footer__antenna-name {
    margin: 0 0 7px;
    color: #294b55;
    font-size: 13px;
    font-weight: 700;
}

.ba-footer__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.ba-footer__socials a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 13px;
    border-radius: 20px;
    color: #294b55;
    background: rgba(255, 255, 255, 0.34);
}

.ba-footer__socials a:hover,
.ba-footer__socials a:focus-visible {
    color: #fff;
    background: #294b55;
}

.ba-footer__socials svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* ==========================================================
   BANDE INFÉRIEURE
   ========================================================== */

.ba-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 22px 0;
    border-top: 1px solid rgba(41, 75, 85, 0.22);
}

.ba-footer__bottom p {
    margin: 0;
    color: #294b55;
    font-size: 12px;
    line-height: 1.6;
}

.ba-footer__bottom span {
    margin: 0 7px;
    color: #fff;
}

/* ==========================================================
   TABLETTES
   ========================================================== */

@media screen and (max-width: 950px) {
    .ba-footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px;
    }
}

/* ==========================================================
   SMARTPHONES
   ========================================================== */

@media screen and (max-width: 600px) {
    .ba-footer__inner {
        width: min(calc(100% - 28px), 1180px);
    }

    .ba-footer__grid {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 52px 0 42px;
    }

    .ba-footer__brand {
        max-width: none;
    }

    .ba-footer__column h2 {
        margin-bottom: 16px;
    }

    .ba-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}

/* ==========================================================
   ACCESSIBILITÉ
   ========================================================== */

@media (prefers-reduced-motion: reduce) {
    .ba-footer__column a {
        transition: none;
    }
}
