body {
    background-image: url('background.webp');
    background-size: cover;
    font-family: Arial, sans-serif;
}

a {
    text-decoration: none;
}
h2{
    font-size: 2em;
}
.section {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    gap: 20px; 
}

.contact-section {
    flex-direction: column;
}

.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
}

.menu a {
    color: black;
    font-size: 30px;
    margin: 10px 0;
}

.menu a:hover {
    color: gray;
}

.menu-btn,
.close-btn {
    font-size: 30px;
    cursor: pointer;
    position: fixed;
    top: 10px;
    right: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.menu-links {
    display: contents;
}

.menu-logo {
    width: 50px; /* Ajustez la taille selon vos besoins */
    height: 50px; /* Assurez-vous que le logo est carré */
    margin-bottom: 10px; /* Ajoutez un espace en dessous du logo */
}

.language-links {
    margin-right: 20px;
}

.language-text {
    display: none;
    background: #000;
    color: #fff;
    font-weight: bold;
    padding: 1px;
}

a:hover .flag-icon {
    display: none;
}

a:hover .language-text {
    display: inline;
}

.close-btn {
    display: none;
}

.text-block {
    text-align: center;
    max-width: 80%;
    /* Limite la largeur des blocs de texte */
    margin-bottom: 20px;
    /* Ajoute de l'espace en dessous de chaque bloc de texte */
}

.contact a {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: black;
}

#contact {
    padding: 20px 0;
    /* Ajoute de l'espace au-dessus et en dessous du contenu de la section */
}

.social-link {
    display: block;
    /* Fait en sorte que chaque lien occupe sa propre ligne */
    text-align: center;
    /* Centre le texte */
    margin-bottom: 10px;
    /* Ajoute de l'espace en dessous de chaque lien */
}

.social-icon {
    font-size: 24px;
    /* Augmente la taille des icônes */
}

.section .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 20px;
}

.section .content div,
.section .content>a {    
    margin: 0 auto 20px;
    max-width: 30%;
}

.section .content ul {
    list-style-type: none;    
    padding: 0;
    text-align: left;
}

.section .content ul ul li {
    margin-bottom: 5px;
}

.section .content h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}


@media (max-width: 600px) {

    .menu-btn,
    .menu {
        display: block;
    }

    .menu {
        flex-direction: column;
        height: 100%;
        align-items: center;
        justify-content: center;
        display: none;
    }

    .section {
        height: auto;
    }

    .section .content {
        flex-direction: column;
    }

    #contact.section .content  {
        gap: 20px;
    }    

    .section .content div,
    .section .content>a  {
        max-width: 100%;
        text-align: center;
    }

    .language-links {
        margin-right: 0;
        margin-top: 40px;
    }
}

@media (min-width: 601px) {

    .menu-btn,
    .close-btn {
        display: none;
    }

    .menu {
        display: flex;
        padding: 10px 10px;
    }
}