/* ============================================================================
   Shared site footer styles — the companion to /css/site-footer partial markup
   (views/partials/site-footer.html, spliced server-side into {{SITE_FOOTER}}).

   Lifted out of cosmic_homepage.html on 2026-08-23. They lived inline in the
   homepage, which is why the footer could only ever look right on ONE page:
   the calculator hand-rolled its own, the free tax filing tool had no footer at
   all, and privacy-policy had neither. Same split site-header.css already fixed
   for the nav.
   ============================================================================ */

.site-footer {
    padding: 40px 50px;
    margin-top: 72px;               /* breathing room from whatever ends above it */
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

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

/* COLUMNS, not a single link row (owner, 2026-08-23). The row carried seven
   destinations and read as a jumble; the homepage sections it linked to
   (pricing, features) and the two tools all live on the home page anyway, so
   Home stands in for them. */
.footer-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(140px, 200px));
    gap: 28px 64px;
    justify-content: start;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column-title {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 2px;
}

/* Kept as a <nav>-free block so it cannot be captured by the bare `nav` rule in
   site-header.css the way the old link row was. */
.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 32px 0 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-link {
    color: #667eea;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 30px 30px;
        margin-top: 48px;
    }
    .footer-columns {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
        gap: 24px 24px;
    }
    .footer-copyright {
        margin-top: 24px;
        text-align: center;
    }
}

html[data-theme="light"] .site-footer {
    background: rgba(220, 239, 246, 0.6);
    border-top-color: rgba(24, 72, 104, 0.12);
}
html[data-theme="light"] .footer-copyright {
    color: #46606E;
    border-top-color: rgba(24, 72, 104, 0.12);
}
html[data-theme="light"] .footer-column-title { color: #6B8091; }
html[data-theme="light"] .footer-link { color: #6C5AE0; }
html[data-theme="light"] .footer-link:hover { color: #7E6CF2; }
