/* ================= NAVBAR ================= */

.bss-navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1300px;
    margin: auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo img {
    height: 38px;
}

.nav-logo span {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    color: #f5f5f5;
}

/* Links */
.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #cfcfcf;
    text-decoration: none;
    position: relative;
    transition: 0.3s;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: #6b8e23;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-links a:hover::after {
    width: 100%;
}

/* CTA */
.nav-cta {
    padding: 8px 16px;
    border: 1px solid #6b8e23;
    border-radius: 6px;
    color: #6b8e23 !important;
}

.nav-cta:hover {
    background: #6b8e23;
    color: #000 !important;
}

/* Mobile */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    height: 2px;
    width: 24px;
    background: #fff;
    margin: 4px 0;
}

/* Responsive */
@media (max-width: 900px) {
    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        background: #000;
        flex-direction: column;
        width: 100%;
        display: none;
        padding: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }
}
