* {
  box-sizing: border-box;
}
body {
  background-color: #e7faf4;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

h1 {
  font-family: "Montserrat", sans-serif;
  text-align: center;
  font-weight: 500;
  font-size: 30px;
  letter-spacing: 0.25px;
}
h2 {
  font-family: "Montserrat", sans-serif;
  color: #746c99;
  text-align: left;
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.15px;
}
h10 {
  font-family: "Montserrat", sans-serif;
}

a:visited {
  color: #746c99;
}
a:active {
  color: #746c99;
}

.bandeau {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  color: white;
  padding: 15px 20px;
  z-index: 999;
  display: flex;
  align-items: center;
  height: 90px;
}
.logo {
  height: 86px;
  width: 210px;
  margin-left: 85px;
  background-color: #ffffff85;
  border-radius: 7.5px;
}
main {
  margin-top: 100px;
  flex: 1;
}
section {
  margin-top: 100px;
  flex: 1;
}

.menu-container {
  position: relative;
  display: inline-block;
  margin-left: auto;
  margin-right: 40px;
}
.menu-bouton {
  background-color: #000000;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 15px 15px 15px 15px;
  opacity: 80%;
  transition: border-radius 0.2s 0.3s;
  font-family: "Montserrat", sans-serif;
}
.menu-deroulant {
  display: block;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #000000;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 150px;
  border-radius: 15px 0px 15px 15px;
  z-index: 1000;
  opacity: 80%;
}
.menu-deroulant li a {
  display: block;
  padding: 10px 15px;
  color: white;
  text-decoration: none;
  border-radius: 15px 0px 15px 15px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 300;
}
.menu-deroulant li a:hover {
  background-color: #000000;
  opacity: 80%;
}
.menu-container.ouvert .menu-bouton {
  border-radius: 15px 15px 0px 0px;
  transition: border-radius 0s;
}
.menu-container.ouvert .menu-deroulant {
  max-height: 300px;
}
@media (hover: hover) and (pointer: fine) {
  .menu-container:hover .menu-bouton {
    border-radius: 15px 15px 0px 0px;
    transition: border-radius 0s;
  }
  .menu-container:hover .menu-deroulant {
    max-height: 400px;
  }
}

.column {
  float: left;
  width: 28%;
  padding: 25px;
  height: 1500px;
  margin: 2%;
  border-radius: 45px;
  margin-left: 2.667%;
  margin-right: 2.667%;
}
.titre, .titre2, .titre3 {
  color: #746c99;
  background-color: #000000e3;
  text-decoration: none;
  border-radius: 32px;
  opacity: 80%;
  position: sticky;
  top: 105px;
  display: inline-block;
}
.titre {
  padding: 25px 68px;
}
.titre2 {
  padding: 26px 20px;
}
.titre3 {
  padding: 8px 15px;
}
.column-bureau {
  background-image: url("../img/Bureau.png");
}
.column-assistance {
  background-image: url("../img/Assistance technique.png");
}
.column-agence {
  background-image: url("../img/Agence commerciale .png");
}
.titre:hover, .titre2:hover, .titre3:hover {
  color: #746c99;
  background-color: #000000b4;
}

footer {
  background-color: #282a35;
  color: #d4d4d4;
  font-family: sans-serif;
}
.footer-columns {
  display: flex;
  justify-content: center;
  gap: 80px;
  padding: 40px 60px;
}
.footer-col h3 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 16px;
  font-family: 'Times New Roman', Times, serif;
  letter-spacing: 0.6px;
  font-weight: 300;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 6px;
}
.footer-col ul li a {
  color: #d4d4d4;
  text-decoration: none;
  font-size: 13px;
}
.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-top: 1px solid #3a3c4e;
}
.footer-social a {
  color: #d4d4d4;
  text-decoration: none;
  font-size: 14px;
}
.footer-bottom {
  text-align: center;
  padding: 16px;
  font-size: 12px;
  color: #888;
  border-top: 1px solid #3a3c4e;
}
.portfolio {
  padding: 50px;
  text-align: center;
}
.grille {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}
.item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  transition: filter 0.3s ease, border-radius 0.2s ease;
}
.grille:has(.item:hover) .item:not(:hover) img {
  filter: blur(2px) brightness(0.65);
  border-radius: 16px;
}
.item:hover {
  transform: scale(1.07);
  z-index: 2;
}
.item:hover img {
  border-radius: 3px;
  transition: border-radius 0.3s ease;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.lightbox.active {
  display: flex;
}
.lightbox img {
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
}
.fermer {
  position: fixed;
  top: 20px;
  right: 30px;
  font-size: 44px;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  user-select: none;
  transition: opacity 0.2s ease;
}
.fermer:hover {
  opacity: 0.6;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: #746c99;
  font-family: "Montserrat", sans-serif;
}
.contact-intro {
  font-family: "Montserrat", sans-serif;
}
.contact h1, .bureau h1, .collaborateurs h1, .paysagistes h1, .fournisseurs h1, .agence-commerciale h1, .portfolio h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin: 12px 0 20px;
  font-family: "Montserrat", sans-serif;
  color: #282a35;
}
.contact h1 {
  text-align: left;
}
.contact p, .bureau p {
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.75;
}
.contact {
  min-height: 80vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 80px 8%;
  margin-top: 0;
}
.contact-cards {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}
.card {
  padding: 24px;
  border: 1px solid rgb(180, 122, 255);
  border-radius: 18px;
  background: rgba(222, 196, 255, 0.75);
  font-family: "Montserrat", sans-serif;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.card h2 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: #746c99;
}
.card a {
  color: #282a35;
  text-decoration: none;
  font-weight: 600;
}
.contact-map {
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(222, 196, 255, 0.35);
}
.bouton-carte {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background-color: #746c99;
  color: #ffffff;
  border: none;
  padding: 16px 32px;
  border-radius: 32px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.bouton-carte:hover {
  background-color: #3f385c;
}
.bouton-carte-info {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.8;
}

.personel-img {
  border-radius: 24px;
  overflow: hidden;
}
.personel-img img {
  width: 100%;
  height: auto;
  display: block;
}

.bureau {
  padding: 80px 8%;
  margin-top: 0;
  text-align: center;
}
.bureau-texte {
  margin-top: 24px;
  margin-bottom: 48px;
}
.bureau-portfolio {
  min-height: 320px;
  margin-bottom: 16px;
  border-radius: 24px;
}

.bouton-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #746c99;
  color: #ffffff;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 32px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  transition: background-color 0.2s ease;
}
.bouton-contact:hover {
  background-color: #3f385c;
}
.bouton-contact-texte {
  font-family: "Montserrat", sans-serif;
  text-align: center;
  font-weight: 510;
  font-size: 40px;
  letter-spacing: 0.30px;
  color: #f0f8ff;
}
.bouton-contact-texte:hover {
  font-weight: 550;
  font-size: 50px;
  letter-spacing: 0.5px;
  color: #cadbe9;
  transition: 0.2s ease;
}
.bouton-contact-zone {
  padding-bottom: 40px;
  text-align: center;
}

.agence-commerciale {
  padding-top: 80px;
  margin-top: 80px;
  text-align: center;
}

.partenaires {
  padding: 80px 8%;
}
.partenaire-ligne {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 80px;
}
.partenaire-ligne.inverse {
  flex-direction: row-reverse;
}
.partenaire-collage {
  display: flex;
  gap: 12px;
  flex: 1;
  height: 420px;
}
.partenaire-ligne.inverse .partenaire-collage {
  flex-direction: row-reverse;
}
.collage-petites {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 35%;
}
.collage-logo, .collage-deco {
  flex: 1;
  border-radius: 14px;
  overflow: hidden;
}
.collage-deco img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.collage-logo {
  transition: opacity 0.2s ease;
  background-color: #e3f1eee0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.collage-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}
.collage-logo:hover {
  opacity: 0.85;
}
.collage-grande {
  flex: 1;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
}
.collage-grande img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.collage-grande:hover img {
  transform: scale(1.05);
}
.partenaire-texte {
  flex: 1;
  font-family: "Montserrat", sans-serif;
  padding: 32px;
  border: 1px solid rgb(180, 122, 255);
  border-radius: 18px;
  background: rgba(222, 196, 255, 0.75);
}
.partenaire-texte h2 {
  font-size: 1.6rem;
  color: #282a35;
  margin: 0 0 20px;
}
.liste-points {
  list-style: none;
  padding: 0;
  margin: 0;
}
.liste-points li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 18px;
  font-size: 1.05rem;
  line-height: 1.5;
  color: #282a35;
}
.liste-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #746c99;
}

.mentions-legales {
  padding: 25px;
    overflow-wrap: anywhere;
  word-break: break-word;
}
.titre-mentions-legales {
  font-family: Garamond, serif;
  font-weight: 100;
  font-size: 100px;
  text-align: center;
  color: #3f385c;
  padding: 15px;
    overflow-wrap: anywhere;
  word-break: break-word;
}
.name-mentions-legales {
  font-family: Garamond, serif;
  font-weight: 800;
  font-size: 35px;
  text-align: left;
  color: #86819b;
  padding: 8px;
    overflow-wrap: anywhere;
  word-break: break-word;
}
.text-mentions-legales {
  font-family: Garamond, serif;
  font-weight: 600;
  font-size: 23px;
  text-align: left;
  color: #1b1336;
  padding: 3px;
    overflow-wrap: anywhere;
  word-break: break-word;
}

.projets {
  padding: 50px;
    overflow-wrap: anywhere;
  word-break: break-word;
}
.titre-projets {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 75px;
  text-align: center;
  color: #3f385c;
  padding: 20px;
    overflow-wrap: anywhere;
  word-break: break-word;
}
.name-projets {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 35px;
  text-align: center;
  color: #86819b;
  padding: 11px;
    overflow-wrap: anywhere;
  word-break: break-word;
}
.text-projets {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 25px;
  text-align: center;
  color: #1b1336;
  padding: 6.5px;
  line-height: 40px;
    overflow-wrap: anywhere;
  word-break: break-word;
}

.collaborateurs {
  padding: 80px 8%;
  margin-top: 0;
  text-align: center;
}
.boutons-collaborateurs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
bouton-collaborateurs-texte1, bouton-collaborateurs-texte2 {
  font-family: "Montserrat", sans-serif;
  text-align: center;
  font-weight: 510;
  font-size: 40px;
  letter-spacing: 0.30px;
  color: #f0f8ff;
}
bouton-collaborateurs-texte1:hover, bouton-collaborateurs-texte2:hover {
  font-weight: 550;
  font-size: 50px;
  letter-spacing: 0.5px;
  color: #cadbe9;
  transition: 0.2s ease;
}
.bouton-collaborateur1, .bouton-collaborateur2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #746c99;
  color: #ffffff;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 32px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  transition: background-color 0.2s ease;
  margin-top: 50px;
}
.bouton-collaborateur1:hover, .bouton-collaborateur2:hover {
  background-color: #3f385c;
}

.paysagistes {
  padding: 80px 8%;
  margin-top: 0;
  text-align: center;
}
.grille-paysagistes {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.paysagiste-carte {
  display: grid;
  grid-template-columns: 25% 75%;
  grid-template-rows: 25% 75%;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgb(180, 122, 255);
  width: 100%;
  max-width: 700px;
}
.paysagiste-logo {
  grid-column: 1;
  grid-row: 1;
  background-color: #e3f1eee0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.paysagiste-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}
.paysagiste-logo:hover {
  opacity: 0.85;
}
.paysagiste-nom {
  grid-column: 2;
  grid-row: 1;
  background: rgba(222, 196, 255, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
    overflow-wrap: anywhere;
  word-break: break-word;
}
.paysagiste-nom h2 {
  font-size: 4rem;
  color: #282a35;
  margin: 0;
  font-family: "Montserrat", sans-serif;
    overflow-wrap: anywhere;
  word-break: break-word;
}
.paysagiste-description {
  grid-column: 1;
  grid-row: 2;
  background: rgba(222, 196, 255, 0.45);
  padding: 8px;
  overflow-y: auto;
  display: flex;
  align-items: center;
  gap: 10px;
    overflow-wrap: anywhere;
  word-break: break-word;
}
.paysagiste-description h2 {
  font-family: "Montserrat", serif;
    overflow-wrap: anywhere;
  word-break: break-word;
}
.paysagiste-description p {
  font-size: 0.8rem;
  line-height: 1.4;
  color: #282a35;
  margin: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.paysagiste-tete {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.paysagiste-photo {
  grid-column: 2;
  grid-row: 2;
  cursor: pointer;
  overflow: hidden;
}
.paysagiste-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.paysagiste-photo:hover img {
  transform: scale(1.05);
}

.fournisseurs {
  padding: 80px 8%;
  margin-top: 0;
  text-align: center;
}
.fournisseur-carte {
  max-width: 900px;
  margin: 48px auto 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fournisseur-logo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: #e3f1eee0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.2s ease;
}
.fournisseur-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
}
.fournisseur-logo:hover {
  opacity: 0.85;
}
.fournisseur-nom {
  margin: 20px 0 8px;
  font-size: 3rem;
  font-family: "Montserrat", sans-serif;
  color: #554070;
  font-weight: 600;
}
.fournisseur-description {
  font-size: 1.5rem;
  line-height: 1.6;
  opacity: 0.75;
  max-width: 600px;
  margin: 0 0 40px;
  font-family: "Montserrat", sans-serif;
  color: #915db4;
  font-weight: 500;
}
.fournisseur-photos {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.fournisseur-photo {
  height: 220px;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
}
.fournisseur-photo img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.fournisseur-photo:hover img {
  transform: scale(1.05);
}

@media (min-width: 801px) {
  .bouton-contact {
    min-width: 1000px;
    min-height: 100px;
  }
  .bouton-collaborateur1, .bouton-collaborateur2 {
    min-width: 500px;
    min-height: 50px;
  }
}

@media (max-width: 800px) {
  .paysagiste-carte {
  grid-template-columns: 1fr;
  grid-template-rows: 110px auto auto 260px;
  aspect-ratio: auto;
}
.paysagiste-logo {
  grid-column: 1;
  grid-row: 1;
}
.paysagiste-nom {
  grid-column: 1;
  grid-row: 2;
  padding: 16px 12px;
}
.paysagiste-nom h2 {
  font-size: 2.2rem;
}
.paysagiste-description {
  grid-column: 1;
  grid-row: 3;
  padding: 16px;
}
.paysagiste-photo {
  grid-column: 1;
  grid-row: 4;
}
.contact {
  grid-template-columns: 1fr;
  padding: 56px 6%;
}
.name-mentions-legales, .name-projets  {
  font-size: 25px;
}
.titre-mentions-legales {
   font-size: 80px;
}
  .titre-projets{
    font-size: 46px;
  }
  .text-mentions-legales, .text-projets {
    font-size: 18px;
    line-height: 25px;
  }
  .partenaire-ligne, .partenaire-ligne.inverse {
    flex-direction: column;
  }
  .partenaire-ligne.inverse .partenaire-collage {
    flex-direction: row;
  }
  .partenaire-collage {
    height: 320px;
    width: 100%;
  }
  .footer-columns {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 32px 20px;
    text-align: center;
  }
  .bandeau {
    padding: 12px 14px;
  }
  .logo {
    width: 140px;
    height: 60px;
    margin-left: 12px;
  }
  .menu-container {
    margin-right: 0;
  }
  .menu-container:hover .menu-deroulant {
    max-height: 400px;
  }
    .menu-deroulant:hover .menu-deroulant {
    max-height: 400px;
  }
  .menu-deroulant li a:hover .menu-deroulant {
    max-height: 400px;
  }
  .column {
    float: none;
    width: 100%;
    height: auto;
    min-height: 380px;
    margin: 16px 0;
    margin-left: 0;
    margin-right: 0;
    padding: 16px;
  }
  h1 {
    font-size: 22px;
  }
  .titre {
    padding: 18px 28px;
  }
  .titre2 {
    padding: 18px 28px;
  }
  .titre3 {
    padding: 10px 18px;
  }
  .column-bureau {
    background-image: url("../img/Bureau mobile.png");
  }
  .column-assistance {
    background-image: url("../img/Assistance technique mobile.png");
  }
  .column-agence {
    background-image: url("../img/Agence commerciale mobile.png");
  }
  .grille {
    grid-template-columns: repeat(3, 1fr);
  }
  .bouton-contact {
    max-width: 90%;
    white-space: normal;
    text-align: center;
    padding: 14px 20px;
  }
  .bouton-contact-texte {
    font-size: 20px;
  }
  .bouton-contact-texte:hover {
    font-size: 22px;
  }
  .boutons-collaborateurs {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .grille {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1100px) {
  .column {
    float: none;
    width: 100%;
    height: auto;
    min-height: 380px;
    margin: 16px 0;
    margin-left: 0;
    margin-right: 0;
    padding: 16px;
  }
}
.lien-collaborateurs {
  text-align: center;
  padding: 40px 0 60px;
}
.bouton-collaborateurs-accueil {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #c2b9e6;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 32px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background-color 0.2s ease;
}
.bouton-collaborateurs-accueil:hover {
  background-color: #3f385c;
}
.mentions-legales .card {
  margin-bottom: 24px;
}
.text-mentions-legales a {
  color: #3f385c;
  font-weight: 800;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}