/* Footer Styles - Matching template classes */
.nv-footer {
    background-color: var(--bg-card);
    padding: 20px;
    border-top: 2px solid var(--primary-red);
}

.nv-footer__inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    color: #888;
    font-size: 0.9rem;
    padding: 0 15px;
}

.nv-footer__brand .brand-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
}

.nv-footer__brand .brand-red {
    color: var(--primary-red);
}

.nv-footer__links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-end;
    flex: 1;
}

.nv-footer__links a {
    color: var(--text-muted);
    transition: color 0.2s;
}

.nv-footer__links a:hover {
    text-decoration: underline;
    color: #fff;
}

@media (max-width: 991px) {
    .nv-footer__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .nv-footer__links {
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .nv-footer__links a {
        font-size: 0.85rem;
        padding: 6px 0;
    }
}
