/* NAVIGATION */
nav {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    padding: 3px 0;
    background: #0000008c;
    transition: padding 0.5s var(--ease-out), background 0.5s var(--ease-out);
}
nav.scrolled {
    background: #000000;
    padding: 5px 0;
}
nav .container { display: flex; justify-content: space-between; align-items: center; }

.logo { display: flex; align-items: center; text-decoration: none; color: inherit; }
.logo-img { height: 14px; width: auto; object-fit: contain; }

.nav-links { display: flex; gap: 8px; align-items: center; }
.nav-links a {
    text-decoration: none; color: #ffffff;
    font-family: var(--font-display);
    font-size: 10px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 2px;
    transition: color 0.3s ease; position: relative;
    padding: 15px 12px; margin-left: 4px;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: 8px; right: 0;
    width: 0; height: 1px; background: #ffffff;
    transition: all 0.3s var(--ease-spring);
}
.nav-links a::before {
    content: ''; position: absolute; top: 8px; left: 0;
    width: 0; height: 1px; background: #ffffff;
    transition: all 0.3s var(--ease-spring);
}
.nav-links a:hover { color: rgba(255,255,255,0.7); }
.nav-links a:hover::after { width: 40px; right: calc(50% - 20px); }
.nav-links a.active::after { width: 20px; right: calc(50% - 10px); }
.nav-links a.active::before { width: 20px; left: calc(50% - 10px); }

/* MOBILE MENU */
.mobile-menu-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001;
}
.mobile-menu-toggle span { display: block; width: 22px; height: 1.5px; background: var(--text-primary); transition: all 0.3s ease; }
.mobile-menu-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
