
body {
    background-color: rgb(23, 23, 23);
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    height: 100%;
    box-sizing: border-box;
    line-height: 1.6;
    
}
.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Couvre tout le conteneur sans déformer l'image */
    z-index: -1; /* Place l'image derrière le contenu */
}

#navbar {
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    height: 20px;
    padding: 10px 0px;
    display: flex;
    align-items: center;
    background-color: white;
    font-size: 1em;
    color: black ;
}

#navbar-items {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    width: 100%;
}

.navbar-item {
    display:inline;
}

.navbar-item a {
    text-decoration: none;
    display: block;
    color: #2e3b4e;
    font-weight: bold;
    margin-top:18px;
}

.navbar-item a:hover {
    color: #2e3b4e;
    transform: scale(1.2);
}
        /* Conteneur caché pour les boutons */
.dropdown-container {
           display: none; /* Caché par défaut */
            background-color: white;
            padding: 5px;
        }

        /* Style des boutons du dropdown */
.dropdown-container button {
            background-color: white;
            color: #2e3b4e;
            border: none;
            padding: 1px;
            margin: 5px 10px;
            width: 10%;
            text-align: left;
        }
        .dropdown-btn1 {
            background-color: white;
            color:#2e3b4e;
            cursor: pointer;
            width: auto;
        }

        .dropdown-btn1:hover {
        transform: scale(1.4);
        }

        /* Pour faire apparaître la liste en dessous du bouton */
.dropdown-btn {
            background-color: white;
            color:#2e3b4e;
            padding: 0px 20px;
            border:#555;
            cursor: pointer;
            height: 20px;
            margin-top: 22px;
            font-size: 1em;
            align-items: flex-end;
        }

        .dropdown-btn:hover {
        transform: scale(1.2);
        }

 .boutonlegal{
    color:white;
    padding: 0px 20px;
    cursor: pointer;
    height: 20px;
    margin-left: 80%;
    font-size: 1em;
    
}
       



@media (max-width: 600px) {
    .button-container button {
        width: 100%; /* Les boutons prennent toute la largeur disponible */
    }
}

#message {
    font-family:'Franklin Gothic Book', Arial, sans-serif;
    padding: 5px;
    margin: 5px;
    display: block;
}
.indented {
    margin-left: 50px; /* ajoute une marge à gauche pour le texte pas en gras*/
    display: block; /* S'assure que chaque ligne commence à la même marge */
}
ul {
    margin-left: 80px; /* Indentation supplémentaire pour les phrases avec tiret */  
    padding-left: 0px; /* Enlever le padding par défaut */
    
}
li {
    margin-left: 100px; /* Indentation supplémentaire pour les phrases avec tiret */  
    line-height: 0,1; /* Réduire l'espace entre les lignes */
    margin-bottom: 0; /* Enlever la marge inférieure */
}

.container-logo{
    padding: 5%; /* Hauteur doublée */
     color: #fff;
    text-align: center;
}


    h1 {
    font-size: 45px; /* Taille de la police pour le texte principal */
    margin-bottom: 20px; /* Espace entre le texte et le bouton */
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    }
    li-1 {
    align-content: center;  /* Indentation supplémentaire pour les phrases avec tiret */  
    line-height: 0,1; /* Réduire l'espace entre les lignes */
    margin-bottom: 0; /* Enlever la marge inférieure */
    
    }
    /* Container principal qui contient les 3 containers en ligne */
    .main-container {
            display: flex;
            justify-content: space-between; /* Pour espacer les conteneurs */
            align-items: flex-start;
            padding: 20px;
            gap: 20px; /* Espacement entre les containers */
        }
    /* Conteneurs avec texte et boutons */
    .text-button-container {
        flex: 1; /* Permet aux containers de prendre une largeur égale */
        justify-content: space-between;
        align-items: center;
        background-color: #4f6484; /* Gris clair */
        color: white;  /* Texte en bleu foncé */
        border: none;
        padding-top: 30px;
    }

    .text {
        flex: 1;
        padding-right: 20px;
        font-size: 18px;
    }


    .button-container {
        display: flex;
        flex-wrap: wrap;
        max-width: 100%;
        min-height: 100px;/* permet de ne pas chevaucher les container */
        justify-content: space-around;
        box-sizing: border-box;
        padding: 5px;
        background-color: none;
    }
    
    .button-container button {
        width: 100%;
        align-items: center;
        background-color:#c19d84 ; /* Noir */
        color: #1a1a1a;
        border: none;
        font-size: 18px;
        font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        cursor: pointer;
        text-align: center;
    }

    .button-container button:hover {
        background-color: #fab862; /* Gris foncé */
        transform: scale(1.2);
    }

