/* css/footer.css */
.footer {
    background-color: var(--footer-bg);
    color: var(--footer-color);
    margin-top: auto;
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    text-align: center;

    max-width: var(--container-width);
    margin: 0 auto;
    padding: 5px 40px;
}

.footer__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.footer__logo-link {
    display: block;
    text-decoration: none;
}

.footer__logo-link img {
    max-width: 304px;
    max-height: 60px;
}

.footer__copyright {
    font-size: 14px;
    color: rgba(248, 248, 248, 0.75);
}

.footer__socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid rgba(248, 248, 248, 0.25);
    color: var(--footer-color);
    transition: var(--transition);
}

.footer__social-link:hover {
    background-color: var(--accent-light);
    border-color: var(--accent-light);
    transform: translateY(-3px);
}

.footer__social-link svg {
    width: 20px;
    height: 20px;
}

/*===================RESPONSIVE========================*/
@media (max-width: 1200px) {
    .footer__inner {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;

        padding: 30px 40px;
    }

    .footer__logo {
        display: flex;
        justify-content: start;
        width: 100%;
    }

    .footer__copyright {
        order: 3;
    }

    .footer__socials {
        display: flex;
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 900px) {
    .footer__inner {
        padding: 14px 20px;
    }
}


@media (max-width: 550px) {
    .footer__logo-link img {
        max-width: 250px;
    }

    .footer__inner {
        padding: 30px 10px;
    }
}