/* --- Burger Menu Styles --- */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 4000;
    margin-left: 8px;
    position: absolute;
    right: 16px;
    top: 12px;
}
.burger-menu span {
    display: block;
    width: 28px;
    height: 3.5px;
    background: var(--primary, #00ffe7);
    margin: 4.3px 0;
    border-radius: 2.5px;
    transition: all 0.25s cubic-bezier(.7,1.7,.4,.9);
}
.burger-menu.open span:nth-child(1) { transform: translateY(7px) rotate(45deg);}
.burger-menu.open span:nth-child(2) { opacity: 0;}
.burger-menu.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg);}

/* --- Studio Logo Styles --- */
.studio-logo-link {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 4100;
    height: 40px;
    width: auto;
    display: flex;
    align-items: center;
}
.studio-logo {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 4px var(--primary));
    transition: height 0.2s;
}
.studio-logo-link:hover .studio-logo,
.studio-logo-link:focus .studio-logo {
    filter: drop-shadow(0 0 10px var(--primary));
    opacity: 0.93;
}

/* --- Nav Styles --- */
.nav-wrapper {
    display: flex;
    align-items: center;
    transition: all 0.19s;
    position: relative;
    z-index: 3500;
}
.nav-wrapper ul {
    display: flex;
    gap: 2em;
    padding: 0;
    margin: 0;
    list-style: none;
}
.nav-wrapper ul li {
    margin: 0;
}
nav a {
    color: var(--primary, #00ffe7);
    font-family: var(--font-title, 'Bebas Neue', Impact, sans-serif);
    font-size: 1.2rem;
    letter-spacing: 1px;
    transition: color 0.2s;
    padding: 8px 18px;
    border-radius: 7px;
}
nav a:hover, nav a.active { color: var(--accent, #ff009d); background: #191b24; }

/* --- Responsive --- */
@media (max-width: 700px) {
    .burger-menu { display: flex; }
    .nav-wrapper {
        display: none;
        position: fixed;
        top: 0; right: 0; left: 0;
        background: rgba(18,20,32,0.98);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100vw;
        min-height: 100vh;
        padding: 90px 0 0 28px;
        box-shadow: 0 10px 70px #000e;
    }
    .nav-wrapper.open { display: flex; }
    .nav-wrapper ul {
        flex-direction: column;
        width: 100%;
        gap: 2.1em;
    }
    .nav-wrapper ul li {
        margin-bottom: 1em;
    }
    .studio-logo-link {
        position: absolute !important;
        left: 10px;
        top: 10px;
        height: 26px;
    }
    .studio-logo {
        height: 26px;
        max-width: 110px;
    }
}
@media (max-width: 700px) {
    .studio-logo-link {
        position: absolute !important;
        left: 10px;
        top: 10px;
        height: 32px;
    }
    .studio-logo {
        height: 40px;
        max-width: 160px;
    }
}

@media (min-width: 701px) {
    .burger-menu { display: none !important; }
    .nav-wrapper {
        display: flex !important;
        position: static;
        background: none;
        box-shadow: none;
        padding: 0;
        min-height: 0;
    }
    .nav-wrapper ul {
        flex-direction: row;
        gap: 2em;
    }
}

