/* =========================
   NAVBAR BASE
   ========================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
}

/* =========================
   LOGO
   ========================= */

.nav-logo {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-dot {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
}

/* =========================
   LINKS
   ========================= */

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}

.nav-link:hover {
    color: #fff;
}

/* =========================
   ACTIONS
   ========================= */

.nav-actions {
    display: flex;
    align-items: center;
}

/* =========================
   MOBILE MENU
   ========================= */

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(15, 23, 42, 0.97);
        backdrop-filter: blur(16px);
        display: none;
        padding: 1rem 1.5rem 1.5rem;
        gap: 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-link {
        padding: 0.85rem 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .nav-toggle {
        display: block;
        padding: 0.5rem;
    }
}