.navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 150px;
    background: #111;
    transition: right 0.3s ease;
    padding: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-logo-container:hover {
    cursor: pointer;
}

/* Hide checkbox */
.nav-toggle {
    display: none;
}

/* Hamburger icon (☰) */
.nav-toggle-label {
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
    display: block;
    padding: 0.5rem;
}

/* Show menu when checkbox is checked */
.nav-toggle:checked~.navbar-menu {
    right: 0;
}

/* === Desktop Overrides === */
@media (min-width: 992px) {
    .nav-toggle-label {
        display: none;
    }

    .navbar-menu {
        position: static;
        height: auto;
        width: auto;
        background: none;
        padding: 0;
        flex-direction: row;
        justify-content: flex-end;
        transform: none;
        transition: none;
    }
}
