/* =========================================
   FOOTER STYLES
   ========================================= */

.site-footer {
    padding: 2.5rem 0;
    border-top: 1px solid #eee;
    margin-top: auto;
    background: var(--white, #ffffff);
}

.footer-wrapper {
    /* Container utility already handles width */
}

.footer-links {
    display: flex;
    gap: 1.25rem;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-links a {
    color: var(--dark, #1D1D1F);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary, #F4A261);
}

.social-icons {
    margin-left: auto;
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #333;
    font-size: 1.2rem;
    transition: transform 0.2s ease, color 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    color: var(--primary, #F4A261);
    transform: translateY(-2px);
}

.site-info {
    color: #888;
    font-size: 0.9rem;
    border-top: 1px solid #f5f5f5;
    padding-top: 20px;
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .social-icons {
        margin-left: 0;
        margin-top: 10px;
    }
}