/* ─────────────────────────────────────────────────────────── 
   NEO-BRUTALIST NAV (User Requested)
   ─────────────────────────────────────────────────────────── */

.neo-nav-container {
    background: #fff;
    color: #000;
    padding: 2rem 4rem;
    position: relative;
    border-bottom: 2px solid #000;
    /* Optional separator */
    margin-bottom: 4rem;
    overflow: hidden;
    /* Handle slide-out bar clipping */
}

/* TOP BAR: HOME & QR */
.neo-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    font-family: 'Inter', sans-serif;
}

.neo-home-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.neo-qr-code {
    width: 60px;
    height: 60px;
    background: #000;
    /* Placeholder for QR Code */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="white"><rect width="100" height="100" fill="black"/><path d="M10 10h30v30h-30zM60 10h30v30h-30zM10 60h30v30h-30zM60 60h10v10h-10zM70 70h10v10h-10z" fill="white"/></svg>');
    background-size: cover;
}

/* MAIN LAYOUT: STACKED NAV + CONTENT */
.neo-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* STACKED NAV */
.neo-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.neo-nav-item {
    position: relative;
    line-height: 0.9;
    width: fit-content;
    /* Fit to text width */
    margin-bottom: 0.5rem;
}

.neo-nav-link {
    display: block;
    font-family: 'Inter Tight', sans-serif;
    /* or font-display var */
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 800;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    position: relative;
    z-index: 2;
    /* Content above bar */
    padding: 0.5rem 1rem 0.5rem 0;
    /* Minimal padding */
    transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* If item has arrow, we need space. */
.neo-nav-item:has(.neo-nav-arrow) .neo-nav-link {
    padding-right: 3.5rem;
    /* Space for arrow */
}


/* HOVER EFFECT: ORANGE BAR */
.neo-nav-bar {
    position: absolute;
    top: 50%;
    left: 0%;
    width: 100%;
    /* Match text width */
    height: 100%;
    background-color: var(--color-accent);
    transform: translateY(-50%) translateX(-105%);
    /* Hide off-left */
    z-index: 1;
    /* Behind text */
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* Align content to end */
    padding-right: 1rem;
    /* Padding for arrow */
    pointer-events: none;
}

/* ARROW ICON */
.neo-nav-arrow {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: white;
    stroke-width: 3;
    position: relative;
    /* Normal flow in flex bar */
    opacity: 0;
    transition: opacity 0.2s 0.2s;
}

/* Interaction Logic */
.neo-nav-item:hover .neo-nav-bar {
    transform: translateY(-50%) translateX(0);
    /* Slide in to match position */
}

/* Interaction Logic */
.neo-nav-item:hover .neo-nav-bar {
    transform: translateY(-50%) translateX(0);
    /* Slide in naturally */
}

.neo-nav-item:hover .neo-nav-link {
    color: #fff;
    /* Knockout white */
}

.neo-nav-item:hover .neo-nav-arrow {
    opacity: 1;
}

/* RIGHT CONTENT BLOCK */
.neo-content-block {
    max-width: 400px;
    font-family: 'Inter', sans-serif;
    color: #000;
}

.neo-headline {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.neo-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

/* BOTTOM RIGHT GRAPHIC */
.neo-graphic {
    position: absolute;
    bottom: 2rem;
    right: 4rem;
    width: 50px;
    height: 50px;
    background: var(--color-accent);
    transform: rotate(15deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.neo-chevron {
    width: 16px;
    height: 10px;
    border-bottom: 3px solid white;
    border-right: 3px solid white;
    transform: rotate(45deg);
}


@media (max-width: 768px) {
    .neo-main-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .neo-content-block {
        display: none;
        /* Hide on mobile to save space or adjust */
    }

    .neo-nav-container {
        padding: 1.5rem;
    }

    .neo-nav-link {
        font-size: 3rem;
        /* Smaller font for mobile */
    }

    .neo-graphic {
        display: none;
    }
}