header {
    background-color: #731111;
    padding: 10px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo a {
    color: #FFD6B6;
    text-decoration: none;
    font-weight: bold;
}

.nav-links {
    list-style-type: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #FFD6B6;
    font-weight: bold;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #FFD6B6;
    margin: 5px;
}

@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #731111;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
        padding: 15px;
        z-index: 10;  /* Applique un z-index élevé pour s'assurer qu'il soit au-dessus */
    }

    .burger {
        display: flex;
    }
}