/* ==============================
   FOOTER
============================== */

.site-footer {
    background: #1f1f1f;
    padding: 60px 20px 30px;
    color: #aaa;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Logo */
.footer-logo img {
    max-width: 180px;
    margin-bottom: 24px;
}

/* Social Icons */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: #2b2b2b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: background .3s ease, transform .3s ease;
}

.footer-social a:hover {
    background: #a00000;
    transform: translateY(-3px);
}

/* Divider */
.footer-divider {
    height: 1px;
    background: rgba(255,255,255,.1);
    margin: 30px 0 20px;
}

/* Copyright */
.footer-copy {
    font-size: 13px;
    color: #888;
}

/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 576px) {
    .footer-logo img {
        max-width: 150px;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
