html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  } 

/* Style du corps de la page */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    color: #333;
}

/* Logo centré */
.logo {
    display: block;
    margin: 20px auto;
    max-width: 200px;
}

.map-frame {
  width: 100%;
  border: 0;
  display: block; /* optionnel, mais conseillé pour bien gérer l'affichage */
}

/* Navigation */
.navbar {
    background-color: #ffffff;
    overflow: visible;
    position: relative;
}

.menu {
    list-style: none;
    display: flex;
    justify-content: center;
    background-color: #ffffff;
}

.menu > li {
    position: relative;
}

.menu > li > a {
    display: block;
    padding: 15px 20px;
    color: #474545;
    text-decoration: none;
    transition: background-color 0.3s;
    font-size: 20px;
}

.menu > li > a:hover {
    background-color: #e0e0e0;
}

/* Sous-menu */
.has-submenu:hover .submenu {
    display: block;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #F3F3F3;
    min-width: 180px;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.submenu li a {
    display: block;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
}

.submenu li a:hover {
    background-color: #e0e0e0;
}

/* Présentation */
.presentation {
    padding: 40px;
    text-align: left;
    background-image: url('images/hedge-3393849_1920.jpg');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    min-height: 500px;
    color: #fff;
}

.presentation h1 {
    font-size: 4em;
    margin-bottom: 20px;
    color: white;
    text-align: left;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    margin-left: 50px;
    
}

.presentation p {
    font-size: 2em;
    max-width: 800px;
    margin-left: 50px;
    color: white;
    text-align: left;
}

.presentation a {
    display: inline-block;
    background-color: #6a388d;
    color: #fff;
    font-size: 14px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 10px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    margin-left: 60px;
    margin-top: 5px;
}

.presentation a:hover {
    background-color: #6a388d;
}

/* Nouvelle section pour deux articles de texte côte à côte */
.text-articles {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 40px;
  background-color: #ffffff;
}

.text-article {
  flex: 1;
  padding: 10px;
  box-sizing: border-box;
}

.text-article div {
  display:flex;
  margin-left: 100px;
  margin-top: 5px;
  margin-bottom: 10px;
}
/* On limite la taille de l'image ET on contrôle mieux son bloc */
.text-article img {
  height: auto;
  max-height: 120px;
  max-width: 100%;
  object-fit: contain;
  display: block;
  margin-left: auto;
}

/* Optionnel : forcer le bloc image à ne pas être plus large que nécessaire */
.text-article:last-child {
  flex: 0 0 auto; /* Garde une taille fixe selon l’image */
  max-width: 200px; /* Ne dépasse pas 200px de large */
}

.text-article h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #6a388d;
}

.text-article p {
    font-size: 1em;
    line-height: 1.5;
    color: #333;
}

/* Articles */
.articles-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding: 40px;
    background-color: #ffffff;
}

.flex-article {
    flex: 1 1 calc(33.333% - 20px);
    background-color: #ffffff;
    padding: 20px;
    box-sizing: border-box;
}

.image-container {
    text-align: center;
    margin-bottom: 15px;
}

.image-container img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.text-container h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    margin-left: 8%;
}

.text-container p {
    font-size: 1em;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .flex-article {
        flex: 1 1 100%;
    }
    .text-article {
        flex: 1 1 100%;
    }
}

/* Styles pour les titres avec images de fond */
.orange {
    color: #6a388d;
    font-size: 36px !important;
    font-family: 'Times New Roman', Times, serif;
    background-position: top center;
    background-repeat: no-repeat;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    margin: 10px;
    min-height: 100px;
}

.orangeB {
    color:#6a388d;
    font-size: 50px !important;
    font-family: 'Times New Roman', Times, serif;
    background-position: top center;
    background-repeat: no-repeat;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    margin: 10px;
    
}

#a {
    background-image: url('images/01.png');
    background-size: 100px 100px;
    background-position: left;
    padding-top: 50px;
}

#b {
    background-image: url('images/02.png');
    background-size: 100px 100px;
    background-position: left;
    padding-top: 50px;
}

#c {
    background-image: url('images/03.png');
    background-size: 100px 100px;
    background-position: left;
    padding-top: 50px;
}

#vert {
    font-size: 2.3em;
    margin-left: 50px;
    color: #218802;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
}

p#text {
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    font-size: 1,1em;
    margin-right:100px
}

.flex-article a {
        display: inline-block;
        padding: 10px 16px;
        background-color: #ffffff;
        color: #6a388d;
        font-size: 14px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        text-decoration: none;
        font-weight: 500;
        border: 2px solid #6a388d; /* Bordure orange */
        border-radius: 0; /* Coins carrés */
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        transition: background-color 0.3s ease, color 0.3s ease;
        margin: 7px 0;
      }
.flex-article a:hover {
    background-color: #6a388d;
    
}

#bouton {
    display: inline-block; /* pour que la largeur suive le contenu */
    background-color: #ffffff;
    color: #0c7a34;
    font-size: 14px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 10px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    margin-left: 0; /* ou supprimer complètement */
    margin-top: 5px;
    margin-bottom: 10px;
    text-align: center; /* centre le texte à l’intérieur du bouton */
}

  #boutone {
    display: flex;
    justify-content: center;
    background-color: #ffffff;
    color: #0c7a34;
    font-size: 14px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 10px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    margin-left: 50px;
    margin-top: 5px;
  }
#bouton:hover {
background-color: #6a388d;
}
#boutone:hover {
background-color: #6a388d;
}
.étude {
    width: 100%;
    margin: 0;
    padding: 40px 0;
    background-image: url('images/vert.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    min-height: 200px;
  }
.étude h2 , .étude p {
    text-align :left ;
    margin-left :100px;
}

.contact-bloc {
    padding: 0;
    margin: 0;
    line-height: 1.2;
  }
  
  .bas {
    margin: 0;
    font-size: 2em;
    text-align: left;
    margin-left: 2em;
    margin-top: 1.5em;
    color:#6a388d;
  }
  
  .bouton-wrapper {
    display: flex;
    justify-content: center;
    margin: 4px 0; /* réduit l’espace autour du bouton */
  }
  
  
  .textb {
    margin: 0;
    padding: 0;
    font-size: 1.1em;
    text-align: left;
    margin-left:3.5em;
  }

  #foot {
    background-color:#6a388d;
    text-align: center;
    padding: 5px 0;
    color: white;
    font-weight: bold;
    margin-top: 20px;
  }


  /*-----------------------partie conception--------------------- */

  .conception {
    padding: 40px 20px;
    background-image: url('images/IMG-20210311-WA0003[1].jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 300px;
    display: flex;
    align-items: center;              /* centre verticalement tout le contenu */
    justify-content: center;          /* centre tout horizontalement */
  }
  
  .conception-container {
    display: flex;
    align-items: center;              /* centre verticalement text + bouton */
    width: 100%;
    max-width: 1200px;
  }
  
  /* Texte à gauche, occupe environ 40% de la largeur max */
  .conception-text {
    flex: 0 0 40%;
    text-align: left;
  }
  .conception-text h1 {
    font-size:2.5em;
    color: white;
  } 
  .conception-text p {
    font-size:1.5em;
    color: white;
  } 
  
  /* Bouton positionné juste à droite du centre */
  .conception-link {
    flex: 0 0 auto;                   /* taille de son contenu */
    margin-left: 10%;                 /* pousse le bouton vers la gauche du container */
    background-color:#6a388d;
    color: #ffffff;
    font-size: 16px;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease;
  }
  
  .conception-link:hover {
    background-color: #ffffff;
    color: #0c7a34;
  }
  
  /* Ajustement responsive */
  @media (max-width: 768px) {
    .conception {
      padding: 20px 10px;
    }
    .conception-container {
      flex-direction: column;
      align-items: flex-start;
    }
    .conception-text {
      flex: 1 1 100%;
      margin-bottom: 20px;
    }
    .conception-link {
      margin-left: 0;
      align-self: center;
    }
  }

  #vertB {
    font-size: 2.3em;
    color: #218802;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    
    /* Supprime toute marge autour */
    margin: 0;
    
    /* Resserre l’interligne */
    line-height: 1; /* ou 1.1 si tu veux un tout petit peu d’espace */
  }

  .etapes-video {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .etapes-gauche {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .etape {
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }
  
  .etape-icone {
    width: 60px;
    height: 60px;
    background-color:#6a388d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
    margin-right: 15px;
  }
  .etape h3 {
    margin: 0;
    font-size: 20px;
  }
  
  .etape p {
    margin: 5px 0 0;
    font-size: 16px;
    color: #555;
  }
  
  .etapes-droite {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .etapes-droite h2 {
    font-size: 24px;
    color: #444;
  }
  
  .video-preview {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  .slider-section {
    padding: 40px 20px;
    text-align: center;
    background-color: #f9f9f9;
  }
  
  .slider-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
  }
  
  .slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .slide-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  .slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(229, 91, 0, 0.8);
    border: none;
    color: white;
    font-size: 30px;
    padding: 10px 16px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
  }
  
  .slider-button.left {
    left: 10px;
  }
  
  .slider-button.right {
    right: 10px;
  }
  
  .slider-button:hover {
    background-color: #cc522b;
  }
  
  .realisation {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
  }
  
  .realisation h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
  }
  

  .realisation-container {
    display: flex;
    gap: 20px;
    width: 100%;
    margin-top: 20px;
  }
  
  .slider-container {
    flex: 0 0 75%;
    position: relative;
  }
  
  .slider-container img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }
  
  .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1;
    border-radius: 50%;
  }
  
  .slider-btn.left {
    left: 10px;
  }
  
  .slider-btn.right {
    right: 10px;
  }
  
  .realisation-texte {
    flex: 0 0 25%;
    background-color: #cc522b;
    color: white;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .realisation-container {
      flex-direction: column;
    }
  
    .slider-container,
    .realisation-texte {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }

  .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Deux colonnes sur petits écrans */
    grid-gap: 10px; /* Espacement réduit entre les images */
    justify-items: center; /* Centre horizontalement les images */
    align-items: center; /* Centre verticalement les images */
  }

  .grid img {
    width: 100%; /* L'image occupe toute la largeur de la cellule */
    height: auto; /* Garde l'aspect de l'image */
    max-width: 300px; /* Limite la taille maximale des images */
    object-fit: cover; /* Garde l'image bien adaptée sans déformation */
  }
  .H .grid img {
    width: 100%; /* L'image occupe toute la largeur de la cellule */
    height: 400px; /* Garde l'aspect de l'image */
    max-width: 300px; /* Limite la taille maximale des images */
    object-fit: cover; /* Garde l'image bien adaptée sans déformation */
    
  }
  .i .grid img {
    width: 100%; /* L'image occupe toute la largeur de la cellule */
    height: 350px; /* Garde l'aspect de l'image */
    max-width: 300px; /* Limite la taille maximale des images */
    object-fit: cover; /* Garde l'image bien adaptée sans déformation */
    
  }

  @media (min-width: 640px) {
    .grid {
      grid-template-columns: repeat(2, 1fr); /* Deux colonnes sur petits écrans */
    }
  }

  @media (min-width: 768px) {
     .grid {
      grid-template-columns: repeat(3, 1fr); /* Trois colonnes sur écrans moyens */
    }
  }

  @media (min-width: 768px) {
    .H .grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  .textimg{
color:#cc522b;
    font-size: 2em;
    text-align: center;

  }

  #sepa {
    font-size: 100%;
  }

  #p{
    margin-top:30px;
  }
  .hidden {
    display: none;
  }

  #lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  #lightbox.active {
    display: flex;
  }
  
  #lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
  }
  
  #lightbox button {
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    position: absolute;
  }
  
  #lightbox .close-btn {
    top: 20px;
    right: 30px;
  }
  
  #lightbox .prev-btn {
    left: 30px;
  }
  
  #lightbox .next-btn {
    right: 30px;
  }

  /*-------------------------partie créa--------------------------*/

  .separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 2rem 0;
}

.separator::before,
.separator::after {
    content: '';
    flex: 1;
    border-bottom: 2px dotted gray; /* ou solid selon ton style */
}

.separator span {
    padding: 0 1rem;
    font-weight: bold;
    color: #333;
}
.H{
    margin-left:50px;
    margin-right:50px;
}

.image-item {
    text-align: center;
    cursor: pointer;
    background-color: rgb(228, 228, 228);
}

.image-item img {
    width: 200px;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s;
}

.image-item img:hover {
    transform: scale(1.05);
}

.image-item p {
    margin-top: 0.5rem;
    font-size: 1rem;
    color: #555;
}

.image-item img {
    width: 200px;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s;
}

.image-item img:hover {
    transform: scale(1.05);  /* effet de zoom au survol */
}

/* Lightbox : fenêtre d'affichage de l'image en grand */


/*-------------------------------------------------------------------------------------------------------*/




/* Grille d’inspiration (si pas déjà présent) */
.image-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.image-item img {
  width: 200px;
  height: auto;
  cursor: pointer;
  border-radius: 10px;
  transition: transform .3s;
}
.image-item img:hover {
  transform: scale(1.05);
}
.image-item p {
  text-align: center;
  margin-top: .5rem;
}

.fleur {
  width: 100%;
  margin: 0;
  padding: 40px 0;
  background-image: url('créa/images-créa/belle-fleur-mariage_1232-3075.avif');
  background-size: cover;
  background-position: top;
  background-repeat: repeat;
  color: #ffffff;
  min-height: 300px;
  display: flex;
  align-items: center;              /* centre verticalement tout le contenu */
  justify-content: center;          /* centre tout horizontalement */
}

.gris h1{
  color:gray;
  font-size: 3em;
}
.gris p {
  color:gray;
}
.gris {margin-left: 5em;
   color: gray;
  margin-right: 5em;}

.gris a{
  color: gray;
  margin-top: 2em;
}
#espace{
  margin:2em;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

#boutonbas {
  display: inline-block;;
  background-color:#d9531e;
  color: #fff;  
  font-size: 14px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 10px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
  margin-left: 60px;
  margin-top: 5px;
}

#bontonbas :hover {
  background-color: #e55b00;
}

.gauche {
  display: flex;
  justify-content: flex-end;  /* aligne à droite horizontalement */
  align-items: center;        /* centre verticalement */
  text-align: right;          /* aligne le texte dans le bloc à droite */
  padding: 40px 20px;
  background-image: url('images/hedge-3393849_1920.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 300px;
  color: white;
}
.gauche h1 {
  margin-right:3.5em;
  font-size: 2.5em;
}

.text-article img {
  width: 100%;          /* L’image s’adapte au conteneur */
  max-width: 500px;     /* Ne dépasse pas 500px de large */
  height: auto;         /* Garde le ratio */
  max-height: 500px;
  display: block;       /* Évite les espaces blancs autour */
  margin: 0 auto;       /* Centre l’image si elle est plus petite que le conteneur */
}

.service-box {
  border: 2px solid #652d90;
  padding: 30px 20px;
  max-width: 500px;
  margin: 40px auto;
  text-align: center;
  font-family: Arial, sans-serif;
  background: white;
}

.service-box h2 {
  color: #652d90;
  font-size: 22px;
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  color: #666;
  font-size: 18px;
}

.service-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 8px;
}

.service-list .icon {
  color: #96a53a;
  font-size: 20px;
  margin-right: 8px;
}

.more-info {
  margin-top: 20px;
  color: #652d90;
  font-size: 16px;
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #652d90;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}

.contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px;
  background-color: #f9f9f9;
  font-family: Arial, sans-serif;
}

.contact-left, .contact-right {
  flex: 1 1 45%;
  min-width: 300px;
}

.contact-left h2 {
  font-size: 22px;
  color: #4a6041;
  margin-bottom: 10px;
}

.contact-left p {
  color: #777;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  font-size: 16px;
  border-radius: 4px;
  box-sizing: border-box;
}

.contact-form button {
  background-color: #555;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
}

.contact-form button:hover {
  background-color: #333;
}

.contact-img {
  max-width: 700px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 6px;
  max-height: 300px;
}

.contact-right h3 {
  font-size: 20px;
  color: #d9531e;
  margin-bottom: 10px;
}

.carré {
  background-color:#652d90
}
.car {
  color: white;
  margin-bottom: 0.5em;
  margin-left: 2em;
  font-size: 1.4em;
  padding-bottom: 0.5em;
}

.img {
    max-height: 200px;  
    margin: 4px 0; /* réduit l’espace autour du bouton */
}


/* Section 1 - Bannière */
.banner-jardinage {
  background-image: url('images/taille-haies-1400x700.jpg');
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  color: white;
  text-align: left;
}

.banner-ménage {
  background-image: url('images/ménage.png');
  background-size: cover;
  background-position: bottom;
  padding: 80px 20px;
  color: white;
  text-align: left;
}
.banner-vitrage {
  background-image: url('images/nétoyage-vitre.png');
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  color: white;
  text-align: left;
}

.banner-content {
  max-width: 800px;
  margin: auto;
}

.banner-jardinage h2 {
  font-size: 2.5em;
  color: #652c91;
  margin-bottom: 10px;
}

.banner-jardinage p {
  font-size: 1.2em;
  font-weight: bold;
}

.banner-ménage h2 {
  font-size: 2.5em;
  color: #652c91;
  margin-bottom: 10px;
}

.banner-ménage p {
  font-size: 1.2em;
  font-weight: bold;
}

.banner-vitrage h2 {
  font-size: 2.5em;
  color: #652c91;
  margin-bottom: 10px;
}

.banner-vitrage p {
  font-size: 1.2em;
  font-weight: bold;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  background-color: #652c91;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
}

/* Section 2 - Texte / Image */
.services-jardinage {
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  padding: 40px 20px;
  gap: 30px;
  align-items: center;
}

.text-content {
  flex: 1;
  color: #652c91;
}

.text-content h3 {
  font-size: 1.3em;
  margin-bottom: 20px;
  color: #652c91;
}

.text-content ul {
  list-style: none;
  padding: 0;
  color: #666;
}

.text-content li {
  margin-bottom: 10px;
  font-size: 1em;
}

.image-content {
  flex: 1;
  text-align: center;
}

.image-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Section 3 - Appel à action */
.appel-action {
  background-image: url('images/garden-7460988_1920.jpg');
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  color: white;
  text-align: center;
}

.appel-content {
  max-width: 800px;
  margin: auto;
}

.appel-content p {
  font-size: 1.2em;
  margin-bottom: 20px;
  font-weight: bold;
}


.appel-actionz {
  background-image: url('images/iron-5973837_1920.jpg');
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  color: white;
  text-align: center;
}

.appel-contentz {
  max-width: 800px;
  margin: auto;
}

.appel-contentz p {
  font-size: 1.2em;
  margin-bottom: 20px;
  font-weight: bold;
}

.appel-actionzz {
  background-image: url('images/floue.jpg');
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  color: white;
  text-align: center;
}

.appel-contentzz {
  max-width: 800px;
  margin: auto;
}

.appel-contentzz p {
  font-size: 1.2em;
  margin-bottom: 20px;
  font-weight: bold;
}



.bottom-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #eeeeee;
  padding: 20px 40px;
  flex-wrap: wrap;
}

.banner-left img {
  max-height: 70px;
}

.banner-center {
  text-align: center;
  color: #652c91;
}

.banner-center .phone {
  font-size: 1.2em;
  font-weight: bold;
  margin: 0;
  color: #652c91;
}

.banner-center .address {
  margin: 0;
  font-size: 0.9em;
  color: #888;
}

.banner-right .btn-orange {
  background-color: #e25f27;
  color: white;
  padding: 10px 18px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}


@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    background-color: #f3f3f3;
    padding: 10px;
  }

  .menu.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
    cursor: pointer;
    font-size: 24px;
    padding: 10px;
  }

  nav ul.menu li {
    margin-bottom: 10px;
  }
}

.has-submenu {
  position: relative;
  z-index: 1000;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #f3f3f3;
  display: none;
  min-width: 180px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 1001;
  pointer-events: auto; /* s’assure que les clics atteignent les liens */
}

.submenu.show-submenu {
  display: block;
}

@media (min-width: 769px) {
  .menu {
    display: flex !important;
    flex-direction: row;
    gap: 20px;
  }

  .menu-toggle {
    display: none;
  }
}

@media (max-width: 768px) {
  .text-articles {
    flex-direction: column;
    padding: 20px;
  }

  .text-article div {
    margin-left: 0;
    justify-content: center;
  }

  .presentation h1,
  .presentation p,
  .presentation a {
    margin-left: 20px !important;
    float: none !important;
    text-align: left;
  }

  #bouton, #boutone {
    float: none;
    margin-left: 0;
  }
}