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

.amor-footer {

    margin-top: 0;

    color: #ffffff;

    background: #111111;

}


/* =========================================================
   PARTIE PRINCIPALE
   ========================================================= */

.amor-footer-main {

    padding: 70px 0 55px;

}


.amor-footer-container {

    width: 90%;

    max-width: 1250px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1.3fr;

    gap: 55px;

}


/* =========================================================
   LOGO
   ========================================================= */

.amor-footer-logo {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: #ffffff;

    text-decoration: none;

}


.amor-footer-logo:hover {

    color: #ffffff;

    text-decoration: none;

}


.amor-footer-logo img {

    width: 55px;

    height: 55px;

    object-fit: contain;

}


.amor-footer-logo span {

    font-size: 25px;

    font-weight: 700;

    letter-spacing: 1px;

}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.amor-footer-brand p {

    max-width: 330px;

    margin-top: 22px;

    color: rgba(255,255,255,.65);

    font-size: 13px;

    line-height: 1.8;

}


/* =========================================================
   TITRES
   ========================================================= */

.amor-footer h3 {

    position: relative;

    margin: 0 0 25px;

    padding-bottom: 12px;

    color: #ffffff;

    font-size: 15px;

    font-weight: 700;

}


.amor-footer h3::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 30px;

    height: 2px;

    background: var(--amor-red);

}


/* =========================================================
   LIENS
   ========================================================= */

.amor-footer-links {

    display: flex;

    flex-direction: column;

}


.amor-footer-links a {

    display: inline-block;

    margin-bottom: 12px;

    color: rgba(255,255,255,.65);

    font-size: 13px;

    text-decoration: none;

    transition: all .25s ease;

}


.amor-footer-links a:hover {

    padding-left: 5px;

    color: #ffffff;

}


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

.amor-footer-social p {

    margin: 0 0 20px;

    color: rgba(255,255,255,.65);

    font-size: 13px;

    line-height: 1.7;

}


.amor-social-list {

    display: flex;

    align-items: center;

    gap: 10px;

}


.amor-social-list a {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #ffffff;

    border-radius: 50%;

    transition: all .25s ease;

}


.amor-social-list a:hover {

    transform: translateY(-4px);

    background: var(--amor-red);

}


.amor-social-list img {

    width: 25px;

    height: 25px;

    object-fit: contain;

}


/* =========================================================
   BAS DU FOOTER
   ========================================================= */

.amor-footer-bottom {

    border-top:
        1px solid rgba(255,255,255,.10);

}


.amor-footer-bottom-inner {

    width: 90%;

    max-width: 1250px;

    min-height: 75px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.amor-footer-bottom p {

    margin: 0;

    color: rgba(255,255,255,.45);

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: .5px;

}


/* =========================================================
   RETOUR EN HAUT
   ========================================================= */

.amor-back-top {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ffffff;

    background: var(--amor-red);

    border-radius: 2px;

    text-decoration: none;

    transition: all .25s ease;

}


.amor-back-top:hover {

    color: var(--amor-red);

    background: #ffffff;

    text-decoration: none;

}


.amor-back-top span {

    font-size: 22px;

    line-height: 1;

}

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

@media (max-width: 767px) {

    .amor-footer-main {

        padding: 45px 0 35px;

    }


    .amor-footer-container {

        width: 88%;

        display: grid;

        grid-template-columns: 1fr;

        gap: 35px;

    }


    .amor-footer-brand p {

        max-width: 100%;

    }


    .amor-footer h3 {

        margin-bottom: 18px;

    }


    .amor-footer-bottom-inner {

        width: 88%;

        min-height: 90px;

        flex-direction: column;

        justify-content: center;

        gap: 18px;

        text-align: center;

    }


    .amor-footer-bottom p {

        font-size: 10px;

    }

}