
/* Mobile Navigation Menu */
.top-bar-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    padding: 0;
    margin: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    visibility: visible;
    opacity: 1;
    pointer-events: none;
}

.mobile-nav-list {
    position: absolute;
    top: 0;
    left: -70vw;
    right: auto;
    width: 70vw;
    height: 100vh;
    z-index: 2001;
    background: #ffffff;
    flex-direction: column;
    gap: 0;
    padding: 80px 0 20px 0;
    margin: 0;
    list-style: none;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.top-bar-links.active .mobile-nav-list {
    left: 0;
}

.mobile-nav-list li:last-child {
    border-bottom: none;
    margin-top: 20px;
}

.nav-scrolled {
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 1rem;
    border-radius: 1rem;
    padding: 0.5rem 0;
}

.nav-scrolled:first-child {
    padding-top: 0;
    padding-bottom: 0;
}

nav {
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(50deg) translate(8px, 8px);
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-50deg) translate(5px, -5px);
}

.mobile-nav-list {
    padding-top: 50px;
}

.top-bar-links.active {
    pointer-events: auto;
}