/* ==========================================================================
   PVM West - Menu Overlay & Panel Styles
   ========================================================================== */

/* ==========================================================================
   MENU OVERLAY & PANEL
   ========================================================================== */

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(16, 24, 39, 0.48);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 20;
}

.menu-overlay[data-open="true"] {
    opacity: 1;
    pointer-events: auto;
}

.menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(42rem, 100vw);
    height: 100vh;
    background: var(--menu-blue);
    color: #ffffff;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    z-index: 30;
    overflow-y: auto;
    padding: 1.3rem 5rem 1.8rem;
}

.menu-panel[data-open="true"] {
    transform: translateX(0);
}

.menu-list {
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.65rem;
}

.menu-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 0.45rem 0;
}

.menu-shortcuts {
    margin-top: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    padding-top: 1.2rem;
}

.menu-shortcuts .pill-row a,
.menu-shortcuts .pill-row span {
    border-color: rgba(255, 255, 255, 0.55);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.menu-social {
    margin-top: 1.4rem;
    display: flex;
    gap: 0.6rem;
}

.menu-social a {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.75);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

@media (max-width: 640px) {
    .menu-panel{
        padding: 1rem 2rem 1rem;
    }
}