/* Level 2 Overlay - Style Selection */
.level2-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 13, 13, .98);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s;
    overflow-y: auto;
}

.level2-overlay.active {
    opacity: 1;
    visibility: visible;
}

.level2-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px 60px;
    animation: fadeUp .5s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.level2-close {
    position: fixed;
    top: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--brass);
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all .3s;
}

.level2-close:hover {
    background: var(--brass);
    transform: rotate(90deg);
}

.level2-header {
    text-align: center;
    margin-bottom: 40px;
}

.level2-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 12px;
}

.level2-header p {
    font-size: 1.125rem;
    color: rgba(245, 242, 237, .7);
    font-style: italic;
    margin-bottom: 0;
}

.level2-intro {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 2px;
    border-left: 4px solid var(--brass);
    color: rgba(245, 242, 237, .9);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 40px;
}

.level2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.level2-card {
    background: var(--bg-card);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    transition: all .3s;
    position: relative;
}

.level2-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(184, 149, 106, .3);
}

.level2-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.level2-card-content {
    padding: 24px;
}

.level2-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 8px;
}

.level2-card p {
    color: rgba(245, 242, 237, .7);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.level2-card .meta {
    font-size: .75rem;
    color: var(--brass);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
    .level2-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .level2-grid {
        grid-template-columns: 1fr;
    }
    
    .level2-content {
        padding: 80px 20px 40px;
    }
    
    /* Back arrow - no background shape */
    .level2-close {
        top: 20px;
        right: auto;
        left: 20px;
        width: auto;
        height: auto;
        background: none;
        border: none;
        border-radius: 0;
        font-size: 0; /* Hide X */
        padding: 8px;
    }
    
    .level2-close:hover {
        background: none;
        transform: none;
    }
    
    /* Show only the arrow with text shadow */
    .level2-close::before {
        content: '←';
        font-size: 32px;
        font-weight: normal;
        color: var(--brass);
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    }
    
    .level2-card img {
        height: 200px;
    }
}


