/* =========================================================================
   FOOTER.CSS
   ========================================================================= */
.site-footer {
    background: var(--dark);
    color: var(--bg);
    padding: 90px 0 30px;
    margin-top: 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 70px;
    border-bottom: 1px solid rgba(250, 247, 237, 0.12);
}
.footer-brand {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    line-height: 0.92;
    margin-bottom: 18px;
    font-weight: 600;
    color: var(--bg);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.35em;
}
.footer-brand::before {
    content: "";
    width: 0.38em;
    height: 0.38em;
    background: var(--accent);
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
    transform: translateY(-0.05em);
}
/* SPELLEN in same green/yellow as header, WIEL in accent */
.footer-brand em { font-style: normal; color: var(--accent); }
.footer-tag { opacity: 0.7; max-width: 360px; font-size: 0.95rem; }

.footer-col h4 {
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    opacity: 0.55;
    margin-bottom: 22px;
    font-weight: 600;
}
.footer-col a {
    color: var(--bg);
    text-decoration: none;
    display: block;
    padding: 7px 0;
    font-size: 0.95rem;
    opacity: 0.85;
    transition: color 0.2s;
}
/* No position shift on hover — color change only */
.footer-col a:hover { color: var(--accent); }
.footer-col a.footer-logout-btn { cursor: pointer; background: none; border: none; font-family: inherit; }

.footer-bottom {
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    letter-spacing: 1.8px;
    opacity: 0.55;
    text-transform: uppercase;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom .dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    margin: 0 10px;
    vertical-align: middle;
}
.footer-privacy-link {
    color: var(--bg);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-privacy-link:hover { color: var(--accent); }
