/* ==========================================
   MangaStudio - Navbar Component
   ========================================== */

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 52px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

/* Logo */
.nav-logo {
    font-weight: 600;
    font-size: 18px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo svg {
    width: 24px;
    height: 24px;
}

/* Navigation Steps */
.nav-steps {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-step {
    font-size: 13px;
    color: var(--text-tertiary);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    padding: 4px 0;
}

.nav-step:hover {
    color: var(--text-secondary);
}

.nav-step.active {
    color: var(--text-primary);
    font-weight: 500;
}

.nav-step.active::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
