/* =============================================
   NAVBAR STYLES
   Header + Mobile Menu
   ============================================= */

/* HEADER - ALWAYS VISIBLE */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
    transform: translateY(0) !important;
    transition: background 0.3s ease;
}

.main-header.scrolled {
    background: rgba(0,0,0,0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: auto;
    width: auto;
    max-height: 50px;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

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

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.8);
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: var(--bg-dark);
    transform: translateX(100%);
    transition: 0.3s;
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #333;
}

.mobile-logo {
    font-size: 20px;
    font-weight: 900;
    color: var(--primary);
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 24px;
    cursor: pointer;
}

.mobile-nav-links {
    list-style: none;
    padding: 20px 0;
}

.mobile-nav-links a {
    display: block;
    padding: 15px 20px;
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    border-left: 3px solid transparent;
    transition: 0.2s;
}

.mobile-nav-links a:hover {
    background: rgba(255,68,0,0.1);
    border-left-color: var(--primary);
}

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
}