.footer {
    min-height: 200px;
    padding: 20px 30px;

    display: grid;
    grid-template-columns: 320px 1fr 320px;
    grid-template-columns: 250px 1fr 250px;
    align-items: center;

    background-color: #7f1d1d;
    color: #fff8f3;

    box-sizing: border-box;
}

/* =========================
   PARTIE GAUCHE
========================= */

.footer-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 12px;

    width: fit-content;

    color: #fff8f3;
    text-decoration: none;

    font-family: "Cormorant Garamond", serif;
    font-size: 21px;
        font-size: 1rem;
    font-weight: 400;
    line-height: 1;
}

.footer-icon {
    width: 28px;
    min-width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;
    color: #fff8f3;
}

.footer-icon-facebook {
    width: 28px;
    height: 28px;

    border-radius: 50%;
    background-color: #fff8f3;
    color: #7f1d1d;

    font-size: 22px;
}

.footer-icon-facebook i {
    transform: translateY(1px);
}

/* =========================
   PARTIE CENTRALE
========================= */

.footer-center {
    align-self: center;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding-bottom: 25px;
    text-align: center;
}

.footer-slogan {
    margin: 0 0 15px;

    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 500;

    letter-spacing: 5px;
    line-height: 1.4;

    color: #fff8f3;
}

.footer-website {
    color: #fff8f3;
    text-decoration: none;

    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    font-weight: 400;
}

/* =========================
   PARTIE DROITE
========================= */

.footer-right {
    align-self: end;

    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 18px;

    padding-bottom: 8px;
}

.footer-right a {
    color: #fff8f3;
    text-decoration: none;

    font-family: "Cormorant Garamond", serif;
    font-size: 21px;
    font-size:1rem;
    font-weight: 400;
    white-space: nowrap;
}
.footer-right a,
.footer-right a:visited {
    color: #fff8f3;
}

/* =========================
   SURVOL DES LIENS
========================= */

.footer a {
    transition:
        opacity 0.2s ease,
        color 0.2s ease;
}

.footer a,
.footer a:visited {
    color: #fff8f3;
}

.footer a:visited:hover,
.footer a:hover {
    color: #ffd7d2;
    opacity: 0.85;
}

/* =========================
   TABLETTE
========================= */

@media screen and (max-width: 1100px) {

    .footer {
        grid-template-columns: 280px 1fr 250px;
        grid-template-columns: 250px 1fr 250px;
    }

    .footer-contact {
        gap: 12px;
        font-size: 19px;
        font-size: 1rem;
    }

    .footer-slogan {
        font-size: 19px;
        letter-spacing: 6px;
    }

    .footer-right a {
        font-size: 18px;
        font-size:1rem;
    }
}

/* =========================
   MOBILE
========================= */

@media screen and (max-width: 850px) {

    .footer {
        min-height: auto;
        padding: 45px 25px;

        grid-template-columns: 1fr;
        gap: 45px;
    }

    .footer-left {
        align-items: center;
    }

    .footer-contact {
        width: 290px;
        max-width: 100%;
        gap: 12px;
    }

    .footer-center {
        order: -1;
        padding-bottom: 0;
    }

    .footer-slogan {
        max-width: 500px;

        font-size: 18px;
        letter-spacing: 5px;
        line-height: 1.8;
    }

    .footer-right {
        align-self: auto;

        justify-content: center;
        flex-wrap: wrap;

        padding-bottom: 0;
    }
}

/* =========================
   PETITS ÉCRANS
========================= */

@media screen and (max-width: 480px) {

    .footer {
        padding: 40px 20px;
    }

    .footer-slogan {
        font-size: 15px;
        letter-spacing: 4px;
    }

    .footer-website {
        font-size: 20px;
    }

    .footer-contact {
        width: 100%;
        font-size: 18px;
        font-size: 1rem;
    }

    .footer-icon {
        width: 40px;
        min-width: 40px;
        height: 40px;
        font-size: 36px;
    }

    .footer-icon-facebook {
        font-size: 29px;
    }

    .footer-right {
        flex-direction: column;
        gap: 10px;
    }
}