.menu {
    display: flex;
    align-items: center;
    margin: 0 100px;
    background-color: white; /* Couleur de fond noir pour le menu */
    font-family: 'Barlow Condensed', sans-serif;font-family: 'Barlow Condensed', sans-serif;
}

.menu .logo {
    width: 100px;
    margin-right: 40px;
}

.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
    flex-grow: 1;
}

.menu li {
    position: relative;
}

.menu a {
    text-decoration: none;
    color: black; /* Couleur texte menu */
    padding: 10px 20px;
    display: block;
    font-weight: bold; /* Texte en gras */
    transition: background-color 0.3s; /* Transition pour l'effet de survol */
}

/* Changement de couleur de fond et de texte au survol des éléments du menu */
.menu a:hover {
    background-color: #444; /* Couleur de fond au survol */
    color: white; /* Couleur de texte au survol */
}

.menu .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.menu .dropdown-content a {
    padding: 12px 16px;
    display: block;
    color: #000; /* Couleur de texte initial pour le sous-menu */
    transition: color 0.3s; /* Transition pour l'effet de survol */
}

/* Changement de couleur de texte au survol des éléments du sous-menu */
.menu .dropdown-content a:hover {
    color: #f00; /* Couleur de texte au survol */
}

.menu .dropdown:hover .dropdown-content {
    display: block;
}

@media screen and (max-width: 768px) {
    .menu ul {
        flex-direction: column;
        align-items: center;
    }
}




/* Styles pour la boîte newsletter */
#mc_embed_signup {
    background: grey;
    font: 24px Helvetica, Arial, sans-serif;
    color: black;
    width: 200px;
    /* Ajout de styles pour la position flottante */
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
     /* Coins arrondis */
    border-radius: 8px;
        padding: 10px;

}



**************INDEX*****************
body, html {
    margin: 0;
    padding: 0;
}

.container {
    z-index: 900; /* Une valeur inférieure à celle du menu ouvert */
    position: relative;
    width: 100%;
    max-width: 100%; /* Vous pouvez ajuster la largeur */
    margin: 0 auto;
    font-family: 'Barlow Condensed', sans-serif;font-family: 'Barlow Condensed', sans-serif;

}

.container img {

    display: block;

}

.buttons {
    position: absolute;
    bottom: 10px; /* Distance du bas */
    left: 50%;
    transform: translateX(-50%);
}

.button1 {
    display: inline-block;
    padding: 5px 10px;
    margin: 2px;
    background-color: #F25634;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 22px;
    transition: background-color 0.3s;
    font-family: bold;
}


.button2 {
  display: inline-block;
  padding: 5px 10px;
  margin: 2px;
  background-color: white;
  color: black;
  text-decoration: none;
  border-radius: 5px;
  font-size: 22px;
  transition: background-color 0.3s;
  font-family: bold;


}




.button1:hover {
    background-color: #B0351A;
}


.button2:hover {
    background-color: darkgrey;
}



footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

.social-media a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

.social-media a:hover {
    color: #007BFF;
}

.social-media img {
    width: 32px; /* Ajustez la taille selon vos besoins */
    height: auto;
    margin: 0 10px;
}
