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

.footer {
    width: 100%;

    background:
        linear-gradient(
            180deg,
            #141618 0%,
            #111214 100%
        );

    color: #ffffff;

    font-family: "Manrope", Arial, sans-serif;
}

.footer__container {
    width: 100%;
    max-width: 1220px;

    margin: 0 auto;

    padding: 28px 24px 18px;

    box-sizing: border-box;
}


/* ========================================
   ЛОГОТИП
======================================== */

.footer__logo {
    width: fit-content;

    margin: 0 auto 25px;

    display: flex;
    align-items: center;

    gap: 10px;

    color: #ffffff;

    text-decoration: none;
}


/* Иконка */

.footer__logo-icon {
    width: 43px;
    height: 49px;

    flex: 0 0 43px;

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

.footer__logo-icon img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}


/* Текст */

.footer__logo-text {
    display: flex;
    flex-direction: column;
}

.footer__logo-name {
    color: #eeeeee;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 19px;
    line-height: 1.1;

    font-weight: 400;

    white-space: nowrap;
}

.footer__logo-description {
    margin-top: 4px;

    color: #898989;

    font-size: 9px;
    line-height: 1.2;

    white-space: nowrap;
}


/* ========================================
   НАВИГАЦИЯ
======================================== */

.footer__nav {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 20px 47px;

    margin-bottom: 18px;
}

.footer__link {
    position: relative;

    color: #a7a7a7;

    font-size: 11px;
    line-height: 1.2;

    font-weight: 400;

    text-decoration: none;

    transition:
        color 0.2s ease;
}

.footer__link:hover {
    color: #bd895f;
}


/* ========================================
   ЛИНИЯ
======================================== */

.footer__line {
    width: 100%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(164, 116, 78, 0.15) 0%,
            rgba(164, 116, 78, 0.6) 50%,
            rgba(164, 116, 78, 0.15) 100%
        );
}


/* ========================================
   НИЖНЯЯ ЧАСТЬ
======================================== */

.footer__bottom {
    min-height: 56px;

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

    gap: 30px;
}


/* Копирайт */

.footer__copyright {
    color: #747474;

    font-size: 10px;
    line-height: 1.4;

    font-weight: 400;
}


/* ========================================
   СОЦИАЛЬНЫЕ СЕТИ
======================================== */

.footer__socials {
    display: flex;
    align-items: center;

    gap: 27px;
}

.footer__social {
    width: 28px;
    height: 28px;

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

    color: #9f704b;

    text-decoration: none;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer__social:hover {
    color: #c18a5c;

    transform: translateY(-2px);
}

.footer__social svg {
    width: 25px;
    height: 25px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.45;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ========================================
   ПЛАНШЕТ
======================================== */

@media (max-width: 900px) {

    .footer__container {
        padding-top: 30px;
    }

    .footer__nav {
        gap: 18px 28px;
    }

}


/* ========================================
   МОБИЛЬНЫЕ
======================================== */

@media (max-width: 650px) {

    .footer__container {
        padding:
            28px
            16px
            20px;
    }


    /* Логотип */

    .footer__logo {
        margin-bottom: 25px;
    }

    .footer__logo-icon {
        width: 40px;
        height: 46px;

        flex-basis: 40px;
    }

    .footer__logo-name {
        font-size: 17px;
    }


    /* Навигация */

    .footer__nav {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 15px 25px;

        margin-bottom: 23px;
    }

    .footer__link {
        font-size: 12px;

        text-align: center;
    }


    /* Низ */

    .footer__bottom {
        padding-top: 18px;

        flex-direction: column-reverse;
        justify-content: center;

        gap: 17px;
    }

    .footer__copyright {
        width: 100%;

        text-align: center;

        font-size: 9px;
    }


    /* Соцсети */

    .footer__socials {
        justify-content: center;

        gap: 28px;
    }

    .footer__social {
        width: 32px;
        height: 32px;
    }

    .footer__social svg {
        width: 27px;
        height: 27px;
    }

}


/* ========================================
   ОЧЕНЬ МАЛЕНЬКИЕ ЭКРАНЫ
======================================== */

@media (max-width: 400px) {

    .footer__nav {
        grid-template-columns: 1fr;

        gap: 13px;
    }

}