/* Bouton hamburger mobile */
.hamburger {
    display: none; /* caché sur desktop */
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 1000;
    width: 25px;
    height: 20px;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger div {
    background: #414141;
    height: 5px;
    border-radius: 2px;
}

/* Affichage seulement sur mobile */
@media screen and (max-width: 900px) {
    .hamburger {
        display: flex;
    }

    /* Sidebar initialement fermée sur mobile */
    .sidebar {
        width: 0;
        overflow-x: hidden;
        transition: width 0.3s ease;
    }

    /* Sidebar ouverte avec classe .active */
    .sidebar.active {
        width: 200px;
    }
}
