/* --- NAVIGATION CONTAINER --- */
.glass-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    height: 70px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    z-index: 1000;
}

/* --- LOGO --- */
.nav-logo-img {
    height: 45px;
    width: auto;
    display: block;
}

/* --- DESKTOP LINKS --- */
.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--magenta);
}

/* --- LANGUAGE CONTROLS (Desktop & Shared) --- */
.lang-control {
    display: flex;
    gap: 10px;
    border-left: 1px solid var(--glass-border);
    padding-left: 20px;
}

.lang-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.8rem;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.lang-btn.active-lang {
    opacity: 1;
    color: var(--magenta);
}

/* --- HAMBURGER --- */
.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
}

/* --- MOBILE MENU SLIDE-OUT --- */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(35, 31, 32, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 2000;
}

.mobile-menu.active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    cursor: pointer;
    color: white;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
}

.mobile-nav-links li {
    margin: 20px 0;
}

.mobile-nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

/* --- MOBILE LANGUAGE SWITCHER --- */
.mobile-lang-switcher {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}

.mobile-lang-switcher .lang-btn {
    font-size: 1.1rem;
    letter-spacing: 2px;
}

/* --- RESPONSIVE BREAKPOINT --- */
@media (max-width: 900px) {
    .nav-links, .lang-control.desktop-only {
        display: none !important;
    }
    
    .hamburger {
        display: block;
    }
}