/**
 * OrangeFiles - Navbar Styles (Dark Glassmorphism)
 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 20, 40, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    padding: 8px 0;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF512F;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img {
    height: 32px;
    width: auto;
}

.navbar-menu {
    display: flex;
    gap: 6px;
    list-style: none;
}

.navbar-item {
    padding: 9px 22px;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.65);
    cursor: pointer;
    font-weight: 500;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-family: 'Outfit', sans-serif;
}

.navbar-item svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.navbar-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.navbar-item.active {
    background: linear-gradient(135deg, #FF512F 0%, #F09819 100%);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 81, 47, 0.4);
}

.navbar-item.active svg {
    transform: scale(1.1);
}

/* Central Navbar Item */
.navbar-item-central .mobile-only-logo {
    display: none !important;
}

.navbar-item-central .pc-only-icon {
    display: flex;
}

/* Mobile Menu Toggle */
.navbar-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
}

/* Mobile styling is handled exclusively by mobile-navbar.css */