/**
 * ACM Chapter Theme — Footer
 */

.site-footer {
    background: var(--blue-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: var(--space-12) var(--space-8) var(--space-8);
    font-family: var(--font-sans);
}

.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-12);
    padding-bottom: var(--space-10);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    margin-bottom: var(--space-6);
}

/* ── Brand Column ── */
.footer-logo {
    height: 52px;
    width: auto;
    display: block;
    margin-bottom: var(--space-4);
}

.footer-desc {
    font-size: var(--text-sm);
    line-height: 1.7;
    margin-bottom: var(--space-5);
    color: rgba(255, 255, 255, 0.65);
}

/* ── Social Icons ── */
.social-row {
    display: flex;
    gap: var(--space-2);
    flex-wrap: wrap;
}

.social-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: border-color var(--transition), background var(--transition);
}
.social-btn:hover {
    border-color: var(--gold);
    background: rgba(247, 168, 0, 0.12);
}
.social-btn img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

/* ── Link Columns ── */
.footer-col h4 {
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-4);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.60);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--white); }

/* ── Bottom Bar ── */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.35);
}
.footer-bottom a {
    color: var(--gold);
    text-decoration: none;
}
.footer-bottom a:hover { color: var(--gold-dark); }