/* Botón hamburguesa */
.menu-toggle {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
}

/* Menú oculto por defecto */
.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100vh;
    background-color: #1b1b1b;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 60px 20px;
    z-index: 1000;
}

/* Mostrar menú */
.menu.open {
    transform: translateX(0);
}

/* Enlaces del menú */
.menu button {
    text-decoration: none;
    color: aliceblue;
    font-size: 18px;
}

/* Fondo oscuro */
.backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 999;
}

/* Mostrar fondo */
.backdrop.show {
    display: block;
}