body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f5f5f5;
    color: #333;
}

header {
    background-color: #2e7d32;
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
}

nav {
    margin-top: 10px;
}

nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0 15px;
}

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

nav ul li a:hover {
    text-decoration: underline;
}

main {
    padding: 30px;
    max-width: 1000px;
    margin: auto;
}

footer {
    background-color: #2e7d32; /* conserve le fond vert */
    color: #000; /* texte en noir */
    text-align: center;
    padding: 15px;
    margin-top: 50px;
  }

/* Galerie */
.galerie {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.photo-about {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    text-align: center;
  }
  
  .photo-about h2 {
    color: #2e7d32;
    margin-bottom: 20px;
  }
  
  .photo-container img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  .photo-container p {
    margin-top: 15px;
    font-size: 14px;
    color: #555;
  }

/* Formulaire */
form {
    max-width: 600px;
    margin: auto;
}

input, textarea, button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

button {
    background-color: #2e7d32;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #256428;
}

/* Message confirmation */
#confirmation {
    text-align: center;
    margin-top: 20px;
    color: green;
    font-weight: bold;
}




header {
    background-color: #23b72b;
    padding: 10px 20px;
    color: white;
}

.navbar {
    display: flex;
    align-items: right;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    background-color: white;
    padding: 5px 10px;
    border-radius: 8px;
}

.logo img {
    height: 50px;
    width: auto;
}

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

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

nav ul li a:hover {
    text-decoration: underline;
}

/* Avis client */

.avis-client {
    margin-top: 40px;
    padding: 20px;
    background-color: #ffffff;
    border-left: 5px solid #2e7d32;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.avis-client h2 {
    color: #2e7d32;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.avis {
    font-style: italic;
    font-size: 1.1em;
}

.avis .nom {
    text-align: right;
    font-style: normal;
    font-weight: bold;
    margin-top: 10px;
}
#LinkedIn {
  position: fixed;
  bottom: 80px; /* plus haut que WhatsApp */
  right: 23px;
  z-index: 100;
}
#WhatsApp {
    position: fixed;
    right: 0px;
    bottom: 0px;
}

#votre_projet{
    position: fixed;
    right: 50px;
    bottom: 0px;
    width: 50px;
}
.formulaire-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 900px;
    margin: auto;
}

.formulaire-colonne {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.formulaire-bouton {
    width: 100%;
    margin-top: 20px;
    text-align: center;
}

.formulaire-bouton button {
    padding: 10px 20px;
    font-size: 16px;
}

form input, form select, form textarea {
    padding: 10px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

form label {
    font-size: 14px;
}

#WhatsApp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}
.filtres {
    text-align: center;
    margin-bottom: 20px;
}

.filtres button {
    margin: 5px;
    padding: 10px 15px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    background-color: #2e7d32;
    color: white;
    border-radius: 5px;
}

.filtres button:hover {
    background-color: #256428;
}

.galerie {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.photo {
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    background-color: #f9f9f9;
}

.photo img {
    width: 100%;
    height: auto;
}

.photo p {
    padding: 10px;
    font-size: 14px;
    color: #333;
}

#WhatsApp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}
.cta-contact {
    text-align: center;
    margin: 30px 0;
}

.btn-contact {
    display: inline-block;
    padding: 12px 24px;
    background-color: #2e7d32;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.btn-contact:hover {
    background-color: #2e7d32;
}
.filtres {
    text-align: center;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #444;
}

.filtres button {
    background: none;
    border: none;
    padding: 6px 12px;
    margin: 0 4px;
    color: #555;
    cursor: pointer;
    font-size: 14px;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.filtres button:hover {
    color: #000;
    border-bottom: 2px solid #2e7d32;
}

.filtres button.active {
    font-weight: bold;
    border-bottom: 2px solid #2e7d32;
}
.galerie-container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
}

.filtres {
    flex: 0 0 150px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    margin-top: 10px;
}

.filtres button {
    background: none;
    border: none;
    padding: 6px 10px;
    color: #555;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s ease;
}

.filtres button:hover,
.filtres button.active {
    color: #2e7d32;
    font-weight: bold;
}

.galerie {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    flex: 1;
}

.photo {
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    text-align: center;
    overflow: hidden;
}

.photo img {
    width: 100%;
    height: auto;
}

.photo p {
    padding: 10px;
    font-size: 13px;
    color: #333;
}
body {
font-family: 'Segoe UI', sans-serif;
margin: 0;
padding: 0;
line-height: 1.6;
color: #333;
background-color: #f9f9f9;
}

header {
background-color: #fff;
border-bottom: 1px solid #ccc;
padding: 10px 20px;
}

.navbar {
display: flex;
justify-content: space-between;
align-items: center;
}

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

.navbar a {
text-decoration: none;
color: #2e7d32;
font-weight: bold;
}

.hero {
background: #16a21d;
color: white;
text-align: center;
padding: 15px 10px;
}

.hero h1 {
margin-bottom: 20px;
font-size: 2.5em;
}

.presentation,
.services-bref,
.avantages,
.temoignages {
padding: 40px 20px;
max-width: 1000px;
margin: auto;
background-color: #fff;
margin-bottom: 20px;
border-radius: 10px;
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 20px;
margin-top: 20px;
}

.services-grid a {
display: flex;
flex-direction: column;
align-items: center;
text-decoration: none;
padding: 15px;
background-color: #f1f1f1;
border-radius: 8px;
color: #333;
transition: background-color 0.3s;
}

.services-grid a:hover {
background-color: #e1e1e1;
}

.services-grid img {
width: 40px;
height: 40px;
margin-bottom: 10px;
}

.avantages ul {
list-style: disc inside;
padding-left: 0;
}

.temoignages blockquote {
border-left: 4px solid #2e7d32;
padding-left: 15px;
margin: 20px 0;
font-style: italic;
color: #555;
}

.cta-contact {
text-align: center;
margin: 30px 0;
}

.btn-contact {
display: inline-block;
padding: 12px 24px;
background-color: #2e7d32;
color: white;
font-weight: bold;
text-decoration: none;
border-radius: 6px;
transition: background-color 0.3s;
}

.btn-contact:hover {
background-color: #256428;
}

footer {
text-align: center;
background-color: #f1f1f1;
padding: 20px;
font-size: 14px;
border-top: 1px solid #ccc;
}

#WhatsApp {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 100;
}

.video-presentation {
    padding: 40px 20px;
    max-width: 1000px;
    margin: auto;
    text-align: center;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 10px;
  }
  
  .video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* Ratio 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    border-radius: 10px;
    margin-top: 20px;
  }
  
  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }

  nav {
    margin-left: auto;
  }

  .lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    text-align: center;
  }
  
  .lightbox img {
    max-width: 80%;
    max-height: 80vh;
  }
  
  .lightbox .close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .lightbox .prev,
  .lightbox .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    padding: 16px;
    color: white;
    font-size: 40px;
    user-select: none;
    transform: translateY(-50%);
  }
  
  .lightbox .prev { left: 0; }
  .lightbox .next { right: 0; }

  .equipe {
    padding: 40px 20px;
    text-align: center;
    background-color: #fff;
    max-width: 1000px;
    margin: auto;
  }
  
  .equipe-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
  }
  
  .membre {
    width: 180px;
    text-align: center;
  }
  
  .membre img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #1E794B;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    image-rendering: auto; /* améliore le rendu sur Chrome/Edge */
  }
  
  .membre img:hover {
    transform: scale(1.05); /* effet visuel léger */
  }
  .image-choix {
    text-align: center;
    padding: 20px 0;
  }
  
  .image-choix img {
    width: 300px; /* taille plus petite */
    max-width: 90%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  .avantages-illustration {
    background-color: #fff;
    padding: 40px 20px;
    max-width: 1000px;
    margin: auto;
  }
  
  .avantages-illustration .contenu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
  }
  
  .avantages-illustration .texte {
    flex: 1 1 60%;
  }
  
  .avantages-illustration .image {
    flex: 1 1 35%;
    text-align: center;
  }
  
  .avantages-illustration img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
.tableau-contact {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background-color: #f1f1f1f5;
  border-radius: 10px;
  text-align: center;
}

.tableau-contact h2 {
  margin-bottom: 20px;
  color: #1E794B;
}

.tableau-contact table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.tableau-contact th,
.tableau-contact td {
  padding: 12px 15px;
  border-bottom: 1px solid #ddd;
  text-align: left;
}

.tableau-contact th {
  color: #1E794B;
  font-weight: 600;
  width: 150px;
}

.tableau-contact td a {
  color: #007BFF;
  text-decoration: none;
}

.tableau-contact td a:hover {
  text-decoration: underline;
}
#menu-deroulant-container ul {
    display: none;
    position: absolute;
    background-color: #ffffff;
    border: 1px solid #1E794B;
    border-radius: 5px;
    padding: 10px;
}

#menu-deroulant a:hover {
    text-decoration: underline;
}

#menu-deroulant-container:hover ul {
    display: block;
}

#menu-deroulant-container {
    position: relative;
}

#menu-deroulant a {
    border: none;
}

  .slogan {
    background-color: #ffffff; /* Vert très clair */
    padding: 15px 10px;
    text-align: center;
    font-size: 1.8rem;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    color: #2c3e50;
    margin: 20px auto;
    border-top: 4px solid #16c043;
    border-bottom: 4px solid #16c043;
  }

  .slogan .mot {
    margin: 0 5px;
    display: inline-block;
  }

  .slogan .logo-slogan {
    vertical-align: middle;
    height: 80px;
    margin: 0 8px;
  }

  .slogan .nom {
    font-family: 'Arial Black', sans-serif;
    color: #006600;
  }

  @media screen and (max-width: 600px) {
    .slogan {
      font-size: 1.2rem;
    }
    .slogan .logo-slogan {
      height: 30px;
    }
  }

  .recyclage-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #2e7d32;
}

.logo-recyclage {
  width: 30px;
  height: auto;
}
.presentation-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 50px;
}

.presentation-image {
  flex: 1 1 250px;
  max-width: 300px;
}

.presentation-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.presentation-content {
  flex: 2 1 500px;
}

@media (max-width: 768px) {
  .presentation-container {
    flex-direction: column;
  }

  .presentation-image,
  .presentation-content {
    max-width: 100%;
  }
}
.titre-avec-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.logo-titre {
  width: 30px;
  height: auto;
}
 body {
      font-family: Arial, sans-serif;
      line-height: 1.6;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    .services-bref {
      background: #f9f9f9;
      padding: 2rem;
      text-align: center;
    }

    .services-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
      margin-top: 1rem;
    }

    .services-grid a {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-decoration: none;
      color: #333;
      width: 140px;
    }

    .services-grid img {
      width: 60px;
      height: 60px;
      object-fit: contain;
      margin-bottom: 0.5rem;
    }

    .presentation {
      padding: 2rem;
      border-bottom: 1px solid #ddd;
    }

    .titre-avec-logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .logo-titre {
      width: 24px;
      height: 24px;
      object-fit: contain;
    }
    html {
  scroll-behavior: smooth;
}
.presentation .content-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.presentation .text {
  flex: 1 1 60%;
}

.presentation .image {
  flex: 1 1 35%;
  text-align: right;
}

.presentation .image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px; /* optionnel pour un coin arrondi */
}
.pdf-link a {
  display: inline-block;
  margin-top: 1em;
  padding: 10px 15px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 6px;
}

.pdf-link a:hover {
  background-color: #0056b3;
}

.pdf-viewer {
  margin-top: 2em;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
}
.avantages-illustration .contenu {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

.avantages-illustration .texte {
  flex: 1 1 60%;
}

.avantages-illustration .media-right {
  flex: 1 1 35%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.avantages-illustration .image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.avantages-illustration .pdf-mini embed {
  border: 1px solid #ccc;
  border-radius: 6px;
}
.recyclage-footer {
  text-align: center;
  margin-top: 20px;
}

.logos-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}

.logo-footer {
  height: 50px;
  width: auto;
}

.texte-engagement {
  display: block;
  font-size: 0.95em;
  color: #555;
}
.recyclage-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #2e7d32;
}

.logo-footer {
  width: 30px;
  height: auto;
}

/* Logos partenaires alignés à gauche */
.logos-partenaires {
  display: flex;
  /* justify-content: ; gauche */
  align-items: center;
  gap: 20px;
  margin: 20px 0;
  padding-left: 350px; /* petit décalage visuel à gauche */
}

.logos-partenaires img {
  height: 40px;  /* réduit la taille */
  width: auto;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 600px) {
  .logos-partenaires {
    flex-direction: column;
    align-items: flex-start; /* reste à gauche sur mobile aussi */
  }
}
.icone-inline {
  width: 35px;  /* adapte la taille selon le design */
  height: auto;
  margin-left: 8px; /* petit espace entre le texte et l’icône */
  vertical-align: middle;
}

.logo-footer {
  width: 30px;
  height: auto;
}
.carte-localisation {
  text-align: center;
  padding: 40px 20px;
  background-color: #fff;
}

.map-wrapper {
  max-width: 1000px;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.carte-statique {
  text-align: center;
  padding: 40px 20px;
}

.map-container {
  position: relative;
  display: inline-block;
  max-width: 600px;
  width: 100%;
}

.carte-fond {
  width: 100%;
  border-radius: 10px;
}

.point {
  width: 14px;
  height: 14px;
  background-color: red;
  border: 2px solid white;
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}

/* Position des points : ajuster selon l’image utilisée */
.crissier {
  top: 42%;
  left: 37%;
}

.saxon {
  top: 60%;
  left: 50%;
}
.map-svg {
  text-align: center;
  padding: 40px 20px;
}

.svg-container {
  max-width: 600px;
  margin: auto;
}
.map-visuelle {
  text-align: center;
  padding: 40px 20px;
}

.carte-container {
  position: relative;
  max-width: 800px;
  margin: auto;
}

.fond-carte {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

/* Style des marqueurs */
.marqueur {
  width: 16px;
  height: 16px;
  background-color: #1E794B;
  border: 2px solid white;
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.siege {
  width: 23px;
  height: 23px;
  background-color: #e81616;
  border: 2px solid white;
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

/* Position des points (ajuste selon ton image) */
.crissier {
  top: 63%;
  left: 13%;
}

.saxon {
  top: 82%;
  left: 27%;
}
.agarn {
  top: 78%;
  left: 37%;
}