/* styles.css */
body {
    font-family: Amaranth, sans-serif;
    margin: 0;
    padding: 0;
    background-color: white; /* Bleu ciel */
    color: #333;
    text-align: center;

}

header {
    background-color: #0073e6;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
h3 {
    color: #ffffff;
    padding: 10px 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 20px;
}
.nomAsso {
    color: #ffffff;
    padding: 10px 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 20px;
    font-weight: bold;
}
.logo img {
    max-height: 2000px; /* Ajuste la hauteur du logo */
    margin-left: 0px; /* Ajoute une marge si nécessaire */
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

main {
    padding: 20px;
}
h1 {
    color: #0073e6;
    text-align: center 
}
h2 {
    color: #0073e6;
}
.logo img {
    /* max-height: 200px; /* Ajuste la hauteur du logo */
    /*margin-left: 20px; /* Ajoute une marge si nécessaire */ 
    max-width: 1000%;
    height: auto;
    border-radius: 1px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.hero img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#Container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
     
    width: 1800px;
    height: 500px;
     
    background: white;
  }


.just {
    justify-content: center;
}
.ecolier {
    font-family:  Ballet;
    font-size: 35px; 
    color:#0073e6;
    font-weight: bold;
}

#Container div {
    width: 800px;
    height: 500px;
     
    background: white;
     
    overflow: auto;
  }
#coteCote{
 
    opacity:0;
    }
#gauche{
    
    float: left;
    }
#droite{
   
    float: right;
    }
.services_image{
   
        float: left;
        }
.services1 ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    align-items: left;
}

.services1 ul li {
    font-size: 18px;
    margin: 10px 0;
}

.services2 ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    align-items: right;
}

.services2 ul li {
    font-size: 18px;
    margin: 10px 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form2 {
    max-width: 600px;
    margin: 0 auto;
}
.contact-form2 input, .contact-form2 textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
button {
    background-color: #0073e6;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #005bb5;
}
h4
{

    font-style: italic;
    color: #0073e6;
}
.italique {
    font-style: italic;
}
.italiqueR {
    font-style: italic;
    color: #b60707;
}
footer {
    padding: 10px;
    background-color: #0073e6;
    position: fixed;
    width: 100%;
    bottom: 0;
}

.droits{
    color: #ffffff;
    text-align: center 
}
 /* Styles pour le bouton hamburger */
 .hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
  }

  /* Masquer le menu par défaut sur mobile */
  .nav-links {
    display: flex;
  }
/* CSS pour l'affichage mobile */
@media (max-width: 768px) {
    .box {
        width: 100%; /* Les divs prennent toute la largeur sur mobile */
    }

    /* Afficher le bouton hamburger et cacher le menu sur mobile */
    .hamburger {
        display: block;
        color: white;
    }

    .nav-links {
        display: none;
        flex-direction: column;
    }

    .nav-links.active {
        display: flex;
    }

    nav ul {
        flex-direction: column;
        padding: 0;
    }

    nav ul li {
        margin: 10px 0;
    }
    }
