/* Hamburger menu styles */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 1100;
}
.hamburger span {
    display: block;
    height: 4px;
    width: 100%;
    background: var(--primary);
    margin: 5px 0;
    border-radius: 2px;
    transition: 0.3s;
}

@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100vw;
        height: 100vh;
        width: 70vw;
        max-width: 320px;
        background: rgba(10,10,10,0.98);
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
        padding: 5rem 2rem 2rem 2rem;
        box-shadow: -2px 0 12px rgba(0,0,0,0.15);
        transition: right 0.3s;
    }
    .nav-links.open {
        right: 0;
    }
    nav {
        padding: 1rem 5%;
    }
}

@media (max-width: 900px) {
    .nav-links li {
        width: 100%;
    }
    .nav-links a {
        display: block;
        width: 100%;
        padding: 1rem 0;
        font-size: 1.1rem;
    }
}
/* ==========================================
   NAVIGATION STYLES
   ========================================== */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--primary);
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--primary);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

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

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
    }
}
