/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #01203D;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 50;
    padding-top: 5rem;
}

/* Show mobile menu when checkbox is checked */
#mobile-menu-toggle:checked~.mobile-menu {
    transform: translateX(0);
}

.mobile-menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .desktop-menu {
        display: none;
    }
}

/* Prevent body scroll when menu is open */
html.menu-open {
    overflow: hidden;
}