/* =============================================
   NAVBAR STYLES — JeshuuuPDF
   ============================================= */

/* Nav link base */
.nav-link {
    white-space: nowrap;
    cursor: pointer;
}

/* Mega dropdown container */
.nav-mega-dropdown {
    pointer-events: none;
}
.nav-dropdown-wrap:hover .nav-mega-dropdown,
.nav-dropdown-wrap:focus-within .nav-mega-dropdown {
    pointer-events: auto;
}

/* keep the dropdown open when hovering over it */
.nav-mega-dropdown {
    /* extend hover area upward to bridge the gap */
    margin-top: 0;
    padding-top: 8px;
}
.nav-dropdown-wrap > button {
    position: relative;
}
/* invisible bridge so the gap between button and dropdown doesn't close it */
.nav-dropdown-wrap::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 8px;
    z-index: 49;
}

/* Scrollable dropdown on short screens */
@media (max-height: 700px) {
    .nav-mega-dropdown {
        max-height: 70vh;
        overflow-y: auto;
    }
}

/* Mobile menu section grid fix */
.mobile-section-content {
    display: grid !important;
}
.mobile-section-content.hidden {
    display: none !important;
}

/* Active page highlight */
.current-menu-item > a,
.current_page_item > a {
    color: #9333ea !important;
}
