#navbar {
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: all 0.4s ease;
}

#navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 45px; }
.nav-logo span {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.nav-links { list-style: none; display: flex; gap: 35px; }
.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
}
.nav-links a:hover { color: var(--brand-red); }

@media (max-width: 767px) {

    .nav-links {
        display: none !important;
    }
}

@media (min-width: 768px) {

    .nav-links {
        display: flex !important;
        position: static;
        background: transparent;
        height: auto;
        width: auto;
        flex-direction: row;
        gap: 20px;
    }

    .nav-links li a {
        font-size: 1rem !important;
        color: white;
    }
}
