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

.site-footer {
    background: #192130;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Open Sans', sans-serif;
}

.site-footer a {
    text-decoration: none;
    transition: color 0.2s ease;
}

/* ── MAIN ROW ── */
.footer-main__inner {
    padding-top: 2rem;
    padding-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

/* Logo */
.footer-logo img {
    height: 52px;
    width: auto;
    display: block;
}

/* Socials */
.footer-socials {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    transition: background 0.2s ease, transform 0.2s ease;
}

.footer-socials a:hover {
    background: #b85619;
    transform: translateY(-2px);
}

/* ── BOTTOM BAR ── */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom__inner {
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-bottom__copy {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom__links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom__links a {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom__links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* ── MOBILE ── */
@media (max-width: 600px) {
    .footer-main__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-bottom__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-bottom__links {
        gap: 1rem;
    }
}