/* ========================================
   MINIMAL HEADER - NO ANIMATIONS
   Clean and sleek navigation
   ======================================== */

.premium-header {
    position: relative;
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid rgba(184, 134, 11, 0.2);
    z-index: 1000;
}

.header-glow {
    display: none;
}

.header-stars {
    display: none;
}

.premium-header nav {
    padding: calc(var(--space-sm) * 0.3) 0;
}

.premium-header .logo span {
    font-size: var(--text-lg);
    background: linear-gradient(135deg, #FFF 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.premium-header .ai-text {
    color: #E0F7FF;
}

.premium-nav {
    display: flex;
    gap: var(--space-lg);
}

.premium-nav li {
    list-style: none;
}

.premium-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: var(--space-xs) var(--space-sm);
    position: relative;
    z-index: 10;
}

.premium-nav a:hover {
    color: var(--gold);
}

.premium-nav a.active {
    color: var(--black) !important;
    background-color: var(--gold);
}

.premium-nav a::before,
.premium-nav a::after {
    display: none;
}

/* MOBILE MENU TOGGLE */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: var(--gold);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* RESPONSIVE HEADER */
@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        transform: translateX(100%);
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
        z-index: 1000;
        padding: var(--space-xl);
    }

    .nav-links.active {
        right: 0;
        transform: translateX(0);
    }

    .nav-links li {
        margin: var(--space-md) 0;
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered animation for menu items */
    .nav-links.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-links.active li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-links.active li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-links.active li:nth-child(5) {
        transition-delay: 0.5s;
    }

    .nav-links.active li:nth-child(6) {
        transition-delay: 0.6s;
    }

    .nav-links.active li:nth-child(7) {
        transition-delay: 0.7s;
    }

    .nav-links.active li:nth-child(8) {
        transition-delay: 0.8s;
    }

    .nav-links a {
        font-size: var(--text-2xl);
        font-family: var(--font-heading);
        display: block;
        width: 100%;
        padding: var(--space-md);
        color: var(--white);
        border-bottom: 1px solid rgba(184, 134, 11, 0.1);
    }

    .nav-links a.active {
        background: transparent !important;
        color: var(--gold) !important;
        border-bottom: 2px solid var(--gold);
    }

    /* Toggle Animation */
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .menu-toggle.active::after {
        content: 'CLOSE';
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        font-family: var(--font-mono);
        font-size: 8px;
        color: var(--gold);
        letter-spacing: 2px;
    }

    /* Add a brand indicator in the mobile menu */
    .nav-links::before {
        content: 'HYENAI';
        position: absolute;
        top: 10%;
        font-family: var(--font-heading);
        font-size: 5rem;
        color: rgba(184, 134, 11, 0.03);
        z-index: -1;
        letter-spacing: 15px;
    }
}