body {
    font-family: 'Arial', 'Verdana', 'Belleza';
    background-color: #f2f0eb;
    margin: 0;
    padding: 0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f2f0eb;
    padding: 20px;
}

.logo img {
    height: 150px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    color: #90a8a4;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #c8bca5;
}

.burger-menu {
    display: none; /* Par défaut, caché sur les grands écrans */
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .burger-menu {
        display: block; /* Afficher sur les petits écrans */
    }

    nav ul {
        display: none; /* Masquer le menu par défaut */
        flex-direction: column;
        background-color: #c2cbb4;
        position: absolute;
        top: 80px;
        right: 20px;
        width: 200px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        padding: 10px;
        border-radius: 5px;
    }

    nav ul.show {
        display: flex; /* Montrer le menu lorsqu'il est activé */
    }

    nav ul li {
        margin: 10px 0;
        text-align: center;
    }
}


.banniere-principale {
    background-color: #ede6db;
    text-align: center;
    padding: 80px 20px;
}

.banniere-principale h1 {
    font-size: 3em;
    color: #333;
    margin-bottom: 20px;
}

.banniere-principale p {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 15px 25px;
    background-color: #90a8a4;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #c8bca5;
}

.categories {
    display: flex;
    justify-content: space-around;
    margin: 40px 20px;
}

.categorie {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 45%;
}

.categorie h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 10px;
}

.categorie p {
    color: #666;
    margin-bottom: 20px;
}

.engagements {
    background-color: #ede6db;
    padding: 60px 20px;
    text-align: center;
}

.engagements h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}

.engagements ul {
    list-style: none;
    padding: 0;
    font-size: 1.2em;
    color: #666;
}

.engagements ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.engagements ul li::before {
    content: "\2713";
    color: #90a8a4;
    position: absolute;
    left: 0;
    font-size: 1.2em;
}

footer {
    background-color: #c2cbb4;
    padding: 40px 20px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #90a8a4;
}

.social-media a {
    margin-right: 15px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
}

.social-media a:hover {
    color: #90a8a4;
}