.site-footer {
    background: #0a0a0a;
    border-top: 1px solid #1a1a1a;
    padding: 60px 0;
}
.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
}
.footer-right {
    text-align: right;
}
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.footer-logo {
    font-family: "Lexend";
    font-size: 24px;
    font-weight: 600;
    color: white;
    letter-spacing: 2px;
}
.footer-tagline {
    font-size: 14px;
}
.footer-socials {
    display: flex;
    gap: 20px;
}
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #919191;
    transition: color 0.2s ease, transform 0.2s ease;
}
.social-link:hover {
    color: white;
    transform: translateY(-2px);
}
.footer-copyright {
    font-size: 14px;
}
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-left {
        align-items: center;
    }
    .footer-socials {
        justify-content: center;
    }
    .footer-right {
        text-align: center;
    }
}
