/* ======= FOOTER ======= */
.footer {
    background-color: var(--black--color-alt);
    width: 100%;
    padding: 4rem 0 3rem;
    margin: 0;
}

.footer__container {
    max-width: 968px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    justify-items: center;
    text-align: center;
}

.footer__title {
    font-family: var(--luxury-font);
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--white-color);
    font-size: var(--h2-font-size);
    margin-bottom: var(--mb-2);
}
.footer__links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 1.5rem;
}
.footer__link {
    font-family: var(--luxury-font);
    font-weight: var(--font-medium);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    color: var(--white-color) !important;
    position: relative;
    transition: .4s ease;
    display: inline-block;
}

.footer__links::after {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 50%;
    background-color: var(--first-color);
    transition: all 0.4s ease-in-out;
    transform: translateX(-50%);
}

.footer__link:hover {
    color: var(--first-color) !important;
    letter-spacing: 3px;
}

.footer__copy {
    display: block;
    margin-top: 3.5rem;
    color: var(--text-color-light);
    font-size: var(--smaller-font-size);
    text-align: center;
}

/* Desktop adjustments */
@media screen and (min-width: 767px) {
    .footer__container {
        grid-template-columns: 1fr;
    }

    .footer__links {
        flex-direction: row;
        column-gap: 3rem;
        justify-content: center;
    }
}