/* ==========================================================================
   Footer — single-line minimal bar
   ========================================================================== */

.site-footer {
    background-color: var(--footer-bg, #1a1a1a);
    border-top: 2px solid var(--primary-color);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    min-height: 44px;
}

/* Copyright */
.footer-copy {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    white-space: nowrap;
    flex-shrink: 0;
}

/* Nav menu */
.footer-nav #footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 20px;
}

.footer-nav #footer-menu a {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: color 0.15s ease;
    white-space: nowrap;
}

.footer-nav #footer-menu a:hover {
    color: #fff;
}

/* Credit */
.footer-credit {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    white-space: nowrap;
    flex-shrink: 0;
}

.footer-credit a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.15s ease;
}

.footer-credit a:hover {
    color: #fff;
}

/* Mobile: stack copy + credit, keep menu centred */
@media ( max-width: 600px ) {
    .footer-inner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px 16px;
        padding: 10px 0;
        text-align: center;
    }

    .footer-copy,
    .footer-credit {
        flex-basis: 100%;
        text-align: center;
    }
}
