/* ==========================================
   FOOTER STYLES
   ========================================== */

.site-footer {
    background: var(--purple);
    color: var(--text-light);
    padding: 60px var(--section-padding-x) 40px;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2.5rem;
}

/* Footer Column */
.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
    font-family: var(--font-body);
    color: var(--text-light);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--text-light);
    text-decoration: underline;
}

/* Footer Divider */
.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 1100px;
    margin: 0 auto 1.5rem;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .site-footer {
        padding: 48px var(--section-padding-x) 32px;
    }
}
