@charset "UTF-8";
@font-face {
  font-family: "Roboto";
  src: url(../fonts/Roboto-VariableFont_wdth\,wght.ttf);
}
@font-face {
  font-family: "Rochester";
  src: url(../fonts//Rochester-Regular.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Roboto;
}
* .cookie-settings {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
* .cookie-settings i {
  font-size: 28px;
  color: #333;
}
* .cookie-settings:hover {
  background-color: #f0f0f0;
}
* .section-separator {
  width: 100%;
  line-height: 0;
  position: relative;
}
* .section-separator svg {
  display: block;
  width: 100%;
  height: 60px;
}

body {
  background-color: white;
  color: rgb(56, 45, 94);
}
body .green-top-line {
  height: 4px;
  background-color: #C0D047;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
body .svg-separator {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin: 0;
  padding: 0;
  padding-top: 20px;
}
body .svg-separator img {
  max-width: 100%;
  height: auto;
  display: block;
}
body h3 {
  font-style: italic;
}
body li {
  list-style: none;
}
body a {
  text-decoration: none;
  color: rgb(56, 45, 94);
}
body main {
  overflow-x: hidden;
}

nav {
  width: 100%;
  background-color: white;
  font-weight: 400;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
nav .navContainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1800px;
  margin: 0 auto;
  padding: 5px 20px;
  flex-wrap: wrap;
  position: relative;
}
nav .navContainer .logo-nav {
  width: 8vw;
  padding-left: 30px;
  z-index: 300;
}
@media (max-width: 900px) {
  nav .navContainer .logo-nav {
    width: 100px;
    padding-left: 10px;
    padding-top: 5px;
  }
}
nav .navContainer .menu-burger {
  display: none;
  align-items: center;
  cursor: pointer;
  margin-left: auto;
  z-index: 400;
  background-color: transparent;
}
nav .navContainer .menu-burger .menu-text {
  margin-right: 10px;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: #C0D047;
}
nav .navContainer .menu-burger .burger-lines {
  display: flex;
  flex-direction: column;
}
nav .navContainer .menu-burger .burger-lines span {
  height: 2px;
  width: 25px;
  background-color: #C0D047;
  margin: 4px 0;
  transition: 0.3s;
}
nav .navContainer .closeMenu {
  display: none;
  position: absolute;
  top: 25px;
  right: 25px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 500;
}
nav .navContainer .closeMenu.visible {
  display: block;
}
nav .navContainer ul {
  display: flex;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
nav .navContainer ul li {
  margin: 0 15px;
}
nav .navContainer ul li a {
  color: #747474;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
}
nav .navContainer ul li a:hover {
  color: #C0D047;
}
@media (max-width: 1300px) {
  nav .navContainer ul {
    position: fixed;
    top: -100%;
    right: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    transition: top 0.3s ease;
    padding-top: 80px;
    z-index: 200;
  }
  nav .navContainer ul.active {
    top: 0;
  }
  nav .navContainer ul li {
    margin: 15px 0;
  }
  nav .navContainer ul li a {
    font-size: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
  }
  nav .navContainer ul.active li a {
    opacity: 1;
    transform: translateY(0);
  }
  nav .navContainer ul li:nth-child(1) a {
    transition-delay: 0.1s;
  }
  nav .navContainer ul li:nth-child(2) a {
    transition-delay: 0.2s;
  }
  nav .navContainer ul li:nth-child(3) a {
    transition-delay: 0.3s;
  }
  nav .navContainer ul li:nth-child(4) a {
    transition-delay: 0.4s;
  }
  nav .navContainer ul li:nth-child(5) a {
    transition-delay: 0.5s;
  }
  nav .navContainer ul li:nth-child(6) a {
    transition-delay: 0.6s;
  }
  nav .navContainer ul li:nth-child(7) a {
    transition-delay: 0.7s;
  }
  nav .navContainer ul li:nth-child(8) a {
    transition-delay: 0.8s;
  }
  nav .navContainer ul li:nth-child(9) a {
    transition-delay: 0.9s;
  }
  nav .navContainer ul li:nth-child(10) a {
    transition-delay: 1s;
  }
}
@media (max-width: 1300px) {
  nav .navContainer .menu-burger {
    display: flex;
  }
}

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  z-index: 0;
}
.hero-section img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
}
.hero-section .hero-content {
  color: white;
  text-align: center;
  z-index: 2;
  max-width: 900px;
  padding-top: 30px;
}
.hero-section .hero-content .pre-title {
  font-size: clamp(3.5rem, 8vw, 5rem);
  font-family: Rochester, serif;
  font-weight: 100;
  margin-top: 10px;
  color: white;
  opacity: 0;
  transform: translateY(40px);
  animation: headerAnim 1.5s forwards;
}
@keyframes headerAnim {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.hero-section .hero-content .tax-credit {
  margin-top: 30px;
}
.hero-section .hero-content .tax-credit img {
  max-width: 250px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.hero-section .hero-content h1 {
  font-size: clamp(1.5rem, 5vw, 2.9rem);
  margin-bottom: 20px;
  margin-top: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #C0D047;
}
.hero-section .hero-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}
.hero-section .hero-content p {
  font-size: 1.2rem;
}
.hero-section .hero-content .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.hero-section .hero-content .cta-buttons .btn-cta {
  padding: 12px 24px;
  background-color: #C0D047;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}
.hero-section .hero-content .cta-buttons .btn-cta:hover {
  background-color: rgb(254, 183.3756097561, 0);
}
.hero-section .hero-content .cta-buttons .btn-cta.secondary {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}
.hero-section .hero-content .cta-buttons .btn-cta.secondary:hover {
  background-color: white;
  color: rgb(255, 198, 50);
}
@media (max-width: 768px) {
  .hero-section .hero-content h2 {
    font-size: 1.4rem;
  }
  .hero-section .hero-content p {
    font-size: 1rem;
  }
  .hero-section .hero-content .btn-cta {
    width: 100%;
    text-align: center;
  }
}
.hero-section .hero-content .hero-image {
  margin-top: 2rem;
  text-align: center;
}
.hero-section .hero-content .hero-image img {
  max-width: 130px;
  width: 100%;
  height: auto;
}

.contenu-principal {
  /* Limiter la hauteur de l'image sur desktop */
}
.contenu-principal .bloc-texte {
  max-width: 1500px;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem 2rem 0 2rem;
  margin: auto;
}
.contenu-principal .bloc-texte .texte {
  flex: 1 1 45%;
  padding: 30px;
}
.contenu-principal .bloc-texte .texte h2 {
  margin-bottom: 0.5rem;
  font-size: clamp(2.1rem, 4vw, 3rem);
  color: #747474;
  font-family: Rochester, serif;
  font-weight: 100;
}
.contenu-principal .bloc-texte .texte p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.6;
  color: #C0D047;
}
.contenu-principal .bloc-texte .texte-color {
  flex: 1 1 45%;
  background-color: #C0D047;
  border-radius: 0px 50px 0px 0px;
  padding: 30px;
}
.contenu-principal .bloc-texte .texte-color h2 {
  margin-bottom: 0.5rem;
  font-size: clamp(2.1rem, 4vw, 3rem);
  color: #747474;
  font-family: Rochester, serif;
  font-weight: 100;
}
.contenu-principal .bloc-texte .texte-color p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.6;
  color: white;
}
.contenu-principal .image-section {
  padding: 0 2rem 2rem 2rem;
  max-width: 1500px;
  margin: auto;
}
.contenu-principal .image-section img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}
@media (min-width: 900px) {
  .contenu-principal .image-section img {
    max-height: 500px; /* Ajuste la valeur selon ton besoin */
    -o-object-fit: cover;
       object-fit: cover; /* Optionnel : pour couper l'image si elle dépasse */
  }
}

.a-propos-et-services {
  background-color: #f3f2eb;
  padding: 4rem 2rem;
}
.a-propos-et-services .container-apropos {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}
.a-propos-et-services .presentation-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .a-propos-et-services .presentation-section {
    flex-direction: row;
    gap: 3rem;
  }
}
.a-propos-et-services .presentation-entreprise {
  flex: 1;
  min-width: 0;
}
.a-propos-et-services .presentation-entreprise h2 {
  font-size: clamp(3rem, 4vw, 4rem);
  margin-bottom: 1rem;
  color: #C0D047;
  font-weight: 100;
  font-family: Rochester, serif;
  text-align: center;
}
.a-propos-et-services .presentation-entreprise h3 {
  color: #747474;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1.5rem;
}
.a-propos-et-services .presentation-entreprise p {
  line-height: 1.6;
  font-size: 1rem;
  color: #333;
  padding-top: 20px;
  text-align: justify;
}
.a-propos-et-services .svg-separator {
  text-align: center;
  margin: 1rem 0;
}
.a-propos-et-services .svg-separator img {
  max-width: 100px;
  height: auto;
}
.a-propos-et-services .photo-presentation {
  flex: 1;
  max-width: 500px;
  position: relative;
  overflow: hidden;
  border-radius: 0px 40px 0px 0px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.a-propos-et-services .photo-presentation:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}
.a-propos-et-services .photo-presentation img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.a-propos-et-services .photo-presentation img:hover {
  transform: scale(1.05);
}
.a-propos-et-services .photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(44, 85, 48, 0.8));
  color: white;
  font-style: italic;
  padding: 20px;
  text-align: center;
  font-weight: 500;
}
.a-propos-et-services .prestations-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .a-propos-et-services .prestations-section {
    flex-direction: row-reverse;
    gap: 3rem;
  }
}
.a-propos-et-services .prestations {
  flex: 1;
  min-width: 0;
}
.a-propos-et-services .prestations h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #C0D047;
  text-align: center;
}
@media (min-width: 768px) {
  .a-propos-et-services .prestations h3 {
    text-align: left;
  }
}
.a-propos-et-services .prestations ul {
  list-style: none;
  padding: 0;
}
.a-propos-et-services .prestations ul li {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  background: white;
  border-radius: 8px;
  transition: all 0.5s ease;
  cursor: pointer;
}
.a-propos-et-services .prestations ul li:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(5px);
}
.a-propos-et-services .prestations ul li i {
  color: #2e7d32;
  font-size: 1.2rem;
  min-width: 20px;
  padding-right: 5px;
}
.a-propos-et-services .photo-prestations {
  flex: 1;
  max-width: 500px;
  position: relative;
  overflow: hidden;
  border-radius: 0px 0px 0px 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.a-propos-et-services .photo-prestations:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}
.a-propos-et-services .photo-prestations img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.a-propos-et-services .photo-prestations img:hover {
  transform: scale(1.05);
}
@media (max-width: 767px) {
  .a-propos-et-services .container-apropos {
    gap: 3rem;
  }
  .a-propos-et-services .photo-presentation,
  .a-propos-et-services .photo-prestations {
    max-width: 100%;
  }
  .a-propos-et-services .photo-presentation img,
  .a-propos-et-services .photo-prestations img {
    height: 250px;
    width: 300px;
  }
}
.a-propos-et-services .fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out forwards;
}
.a-propos-et-services .fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeInLeft 1s ease-out forwards;
}
.a-propos-et-services .fade-in-left .btn-container {
  display: flex;
  justify-content: center; /* centre horizontalement */
  margin-top: 2rem; /* espace au-dessus du bouton */
}
.a-propos-et-services .fade-in-left .btn-devis {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: rgb(255, 198, 50);
  color: #fff;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.a-propos-et-services .fade-in-left .btn-devis:hover {
  background-color: #2e5f28;
}
.a-propos-et-services .fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  animation: fadeInRight 1s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}
.cookie-modal.visible {
  display: flex;
}
.cookie-modal .cookie-modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  text-align: left;
}
.cookie-modal .cookie-modal-content h2 {
  margin-top: 0;
}
.cookie-modal .cookie-modal-content .modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 1.5rem;
}
.cookie-modal .cookie-modal-content .modal-actions button {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.cookie-modal .cookie-modal-content .modal-actions button#savePreferences {
  background: #C0D047;
  color: white;
}
.cookie-modal .cookie-modal-content .modal-actions button#closeModal {
  background: #ccc;
  color: #333;
}

.massif-section {
  padding: 3rem 0;
  background: #C0D047;
  position: relative;
}
.massif-section:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 60px;
  background: linear-gradient(to bottom, #C0D047 0%, #fff 100%);
  z-index: 2;
  pointer-events: none;
}
.massif-section .container-massif {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}
.massif-section .massif-text {
  flex: 1 1 340px;
  min-width: 320px;
  padding-left: 1rem;
  padding-right: 1rem;
}
.massif-section .massif-text h2 {
  font-size: clamp(3rem, 4vw, 4rem);
  margin-bottom: 1rem;
  color: white;
  font-weight: 100;
  font-family: Rochester, serif;
  text-align: center;
}
.massif-section .massif-text p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  padding-top: 15px;
}
.massif-section .massif-text .massif-arguments {
  list-style: disc inside;
  color: #2e7d32;
  font-weight: 500;
  margin-left: 0;
  padding-left: 0;
}
.massif-section .massif-text .massif-arguments li {
  margin-bottom: 0.7rem;
  font-size: 1.05rem;
  color: #2e7d32;
  font-style: oblique;
}
.massif-section .massif-text .massif-photo-mobile {
  display: none;
  width: 100%;
  max-width: 370px;
  height: 220px;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(46, 125, 50, 0.13);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin: 1.2rem 0;
  transition: box-shadow 0.3s;
}
.massif-section .massif-gallery {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
}
.massif-section .massif-gallery .massif-photo {
  width: 100%;
  max-width: 370px;
  height: 320px;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(46, 125, 50, 0.13);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: box-shadow 0.3s;
}
.massif-section .massif-gallery .massif-photo:hover {
  box-shadow: 0 8px 32px rgba(46, 125, 50, 0.19);
}
@media (max-width: 900px) {
  .massif-section .container-massif {
    flex-direction: column;
  }
  .massif-section .massif-gallery {
    display: none;
  }
  .massif-section .massif-text .massif-photo-mobile {
    display: block;
    width: 100%;
    max-width: 370px;
    height: 250px;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(46, 125, 50, 0.13);
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    margin: 1.2rem 0;
    transition: box-shadow 0.3s;
  }
  .massif-section .massif-gallery .massif-photo {
    height: 160px;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-in-left {
  animation: fadeInLeft 1s both;
}

.fade-in-right {
  animation: fadeInRight 1s both;
}

.haie-section {
  background: white;
  margin-top: 80px;
  position: relative;
}
.haie-section:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  height: 60px;
  background: linear-gradient(to bottom, white 0%, #f3f2eb 100%);
  z-index: 2;
  pointer-events: none;
}
.haie-section .container-haie {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}
.haie-section .haie-text {
  flex: 1 1 340px;
  min-width: 320px;
  padding-left: 1rem;
  padding-right: 1rem;
}
.haie-section .haie-text h2 {
  font-size: clamp(3rem, 4vw, 4rem);
  margin-bottom: 1rem;
  color: #747474;
  font-weight: 100;
  font-family: Rochester, serif;
  text-align: center;
}
.haie-section .haie-text p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  padding-top: 15px;
}
.haie-section .haie-text .haie-arguments {
  list-style: disc inside;
  color: #2e7d32;
  font-weight: 500;
  margin-left: 0;
  padding-left: 0;
}
.haie-section .haie-text .haie-arguments li {
  margin-bottom: 0.7rem;
  font-size: 1.05rem;
  color: #2e7d32;
  font-style: oblique;
}
.haie-section .haie-text .haie-photo-mobile {
  display: none;
  width: 100%;
  max-width: 370px;
  height: 220px;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(46, 125, 50, 0.13);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin: 1.2rem 0;
  transition: box-shadow 0.3s;
}
.haie-section .haie-gallery {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
}
.haie-section .haie-gallery .haie-photo {
  width: 100%;
  max-width: 370px;
  height: 320px;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(46, 125, 50, 0.13);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: box-shadow 0.3s;
}
.haie-section .haie-gallery .haie-photo:hover {
  box-shadow: 0 8px 32px rgba(46, 125, 50, 0.19);
}
@media (max-width: 900px) {
  .haie-section .container-haie {
    flex-direction: column;
  }
  .haie-section .haie-gallery {
    display: none;
  }
  .haie-section .haie-text .haie-photo-mobile {
    display: block;
    width: 100%;
    max-width: 370px;
    height: 250px;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(46, 125, 50, 0.13);
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    margin: 1.2rem 0;
    transition: box-shadow 0.3s;
  }
  .haie-section .haie-gallery .haie-photo {
    height: 160px;
  }
}

.entretien-section {
  padding: 3rem 0;
  background-color: #f3f2eb;
  position: relative;
}
.entretien-section:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  height: 60px;
  background: linear-gradient(to bottom, #f3f2eb 0%, #C0D047 100%);
  z-index: 2;
  pointer-events: none;
}
.entretien-section .container-entretien {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}
.entretien-section .entretien-text {
  flex: 1 1 340px;
  min-width: 320px;
  padding-left: 1rem;
  padding-right: 1rem;
}
.entretien-section .entretien-text h2 {
  font-size: clamp(3rem, 4vw, 4rem);
  margin-bottom: 1rem;
  color: #C0D047;
  font-weight: 100;
  font-family: Rochester, serif;
  text-align: center;
}
.entretien-section .entretien-text p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  padding-top: 15px;
}
.entretien-section .entretien-text .entretien-arguments {
  list-style: disc inside;
  color: #2e7d32;
  font-weight: 500;
  margin-left: 0;
  padding-left: 0;
}
.entretien-section .entretien-text .entretien-arguments li {
  margin-bottom: 0.7rem;
  font-size: 1.05rem;
  color: #2e7d32;
  font-style: oblique;
}
.entretien-section .entretien-text .entretien-photo-mobile {
  display: none;
  width: 100%;
  max-width: 370px;
  height: 220px;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(46, 125, 50, 0.13);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin: 1.2rem 0;
  transition: box-shadow 0.3s;
}
.entretien-section .entretien-gallery {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
}
.entretien-section .entretien-gallery .entretien-photo {
  width: 100%;
  max-width: 370px;
  height: 320px;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(46, 125, 50, 0.13);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: box-shadow 0.3s;
}
.entretien-section .entretien-gallery .entretien-photo:hover {
  box-shadow: 0 8px 32px rgba(46, 125, 50, 0.19);
}
@media (max-width: 900px) {
  .entretien-section .container-entretien {
    flex-direction: column;
  }
  .entretien-section .entretien-gallery {
    display: none;
  }
  .entretien-section .entretien-text .entretien-photo-mobile {
    display: block;
    width: 100%;
    max-width: 370px;
    height: 250px;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(46, 125, 50, 0.13);
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    margin: 1.2rem 0;
    transition: box-shadow 0.3s;
  }
  .entretien-section .entretien-gallery .entretien-photo {
    height: 160px;
  }
}

.renovation-section {
  padding: 3rem 0;
  background: #C0D047;
  position: relative;
}
.renovation-section .container-renovation {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}
.renovation-section .renovation-text {
  flex: 1 1 340px;
  min-width: 320px;
  padding-left: 1rem;
  padding-right: 1rem;
}
.renovation-section .renovation-text h2 {
  font-size: clamp(3rem, 4vw, 4rem);
  margin-bottom: 1rem;
  color: white;
  font-weight: 100;
  font-family: Rochester, serif;
  text-align: center;
}
.renovation-section .renovation-text p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  padding-top: 15px;
}
.renovation-section .renovation-text .renovation-arguments {
  list-style: disc inside;
  color: #2e7d32;
  font-weight: 500;
  margin-left: 0;
  padding-left: 0;
}
.renovation-section .renovation-text .renovation-arguments li {
  margin-bottom: 0.7rem;
  font-size: 1.05rem;
  color: #2e7d32;
  font-style: oblique;
}
.renovation-section .renovation-text .renovation-photo-mobile {
  display: none;
  width: 100%;
  max-width: 370px;
  height: 220px;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(46, 125, 50, 0.13);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin: 1.2rem 0;
  transition: box-shadow 0.3s;
}
.renovation-section .renovation-gallery {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
}
.renovation-section .renovation-gallery .renovation-photo {
  width: 100%;
  max-width: 370px;
  height: 320px;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(46, 125, 50, 0.13);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: box-shadow 0.3s;
}
.renovation-section .renovation-gallery .renovation-photo:hover {
  box-shadow: 0 8px 32px rgba(46, 125, 50, 0.19);
}
@media (max-width: 900px) {
  .renovation-section .container-renovation {
    flex-direction: column;
  }
  .renovation-section .renovation-gallery {
    display: none;
  }
  .renovation-section .renovation-text .renovation-photo-mobile {
    display: block;
    width: 100%;
    max-width: 370px;
    height: 250px;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(46, 125, 50, 0.13);
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    margin: 1.2rem 0;
    transition: box-shadow 0.3s;
  }
  .renovation-section .renovation-gallery .renovation-photo {
    height: 160px;
  }
}

:root {
  --color4: #2e7d32;
  --font2: "Georgia", serif;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-up {
  animation: fadeInUp 0.8s both;
}
.fade-in-up:nth-child(1) {
  animation-delay: 0.1s;
}
.fade-in-up:nth-child(2) {
  animation-delay: 0.2s;
}
.fade-in-up:nth-child(3) {
  animation-delay: 0.3s;
}

.contact-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}
.contact-section .container-contact {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.contact-section .container-contact .contact-header {
  text-align: center;
  margin-bottom: 3rem;
}
.contact-section .container-contact .contact-header h2 {
  font-size: clamp(3rem, 4vw, 4rem);
  margin-bottom: 1rem;
  color: var(--color4);
  font-weight: 100;
  font-family: var(--font2);
}
.contact-section .container-contact .contact-header p {
  font-weight: 500;
}
.contact-section .container-contact .svg-separator {
  display: flex;
  justify-content: center;
  margin: 1.5rem 0;
}
.contact-section .container-contact .svg-separator img {
  width: 80px;
  height: auto;
}
.contact-section .container-contact .contact-content {
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
}
.contact-section .container-contact .contact-content .contact-info {
  flex: 1 1 300px;
  min-width: 300px;
}
.contact-section .container-contact .contact-content .contact-info h3 {
  font-size: 1.5rem;
  color: var(--color4);
  margin-bottom: 1.5rem;
  font-family: var(--font2);
}
.contact-section .container-contact .contact-content .contact-info .contact-details {
  margin-bottom: 2rem;
}
.contact-section .container-contact .contact-content .contact-info .contact-details .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.8rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(46, 125, 50, 0.1);
  transition: transform 0.2s;
}
.contact-section .container-contact .contact-content .contact-info .contact-details .contact-item:hover {
  transform: translateY(-2px);
}
.contact-section .container-contact .contact-content .contact-info .contact-details .contact-item i {
  color: var(--color4);
  font-size: 1.2rem;
  margin-right: 1rem;
  width: 20px;
  text-align: center;
}
.contact-section .container-contact .contact-content .contact-info .contact-details .contact-item span {
  color: #444;
  font-size: 1.05rem;
}
.contact-section .container-contact .contact-content .contact-form {
  flex: 1 1 400px;
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(46, 125, 50, 0.15);
}
.contact-section .container-contact .contact-content .contact-form .form-group {
  margin-bottom: 1.5rem;
}
.contact-section .container-contact .contact-content .contact-form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #444;
  font-weight: 500;
  font-size: 1.05rem;
}
.contact-section .container-contact .contact-content .contact-form .form-group input,
.contact-section .container-contact .contact-content .contact-form .form-group textarea,
.contact-section .container-contact .contact-content .contact-form .form-group select {
  width: 100%;
  padding: 0.9rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  font-family: inherit;
}
.contact-section .container-contact .contact-content .contact-form .form-group input:focus,
.contact-section .container-contact .contact-content .contact-form .form-group textarea:focus,
.contact-section .container-contact .contact-content .contact-form .form-group select:focus {
  outline: none;
  border-color: var(--color4);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}
.contact-section .container-contact .contact-content .contact-form .form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-section .container-contact .contact-content .contact-form .form-row {
  display: flex;
  gap: 1rem;
}
.contact-section .container-contact .contact-content .contact-form .form-row .form-group {
  flex: 1;
}
.contact-section .container-contact .contact-content .contact-form .submit-btn {
  background: var(--color4);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  width: 100%;
}
.contact-section .container-contact .contact-content .contact-form .submit-btn:hover {
  background: #1b5e20;
  transform: translateY(-1px);
}
.contact-section .container-contact .contact-content .contact-form .submit-btn:active {
  transform: translateY(0);
}
.contact-section .container-contact .contact-content .contact-form .submit-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}
.contact-section .container-contact .contact-content .contact-form .success-message {
  display: none;
  background: #d4edda;
  color: #155724;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 1px solid #c3e6cb;
}
.contact-section .container-contact .contact-content .contact-form .error-message {
  display: none;
  background: #f8d7da;
  color: #721c24;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 1px solid #f5c6cb;
}
.contact-section .container-contact .required {
  color: #e74c3c;
}
@media (max-width: 768px) {
  .contact-section .container-contact .contact-content {
    flex-direction: column;
  }
  .contact-section .container-contact .contact-form {
    padding: 1.5rem;
  }
  .contact-section .container-contact .form-row {
    flex-direction: column;
    gap: 0;
  }
}

.footer {
  background: #233c1e;
  color: #fff;
  padding: 40px 0 20px 0;
}
.footer .footer-header {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 30px auto;
  padding: 0 24px;
}
.footer .footer-header .footer-logo img {
  width: 90px;
  height: auto;
  display: block;
}
.footer .footer-header .footer-company-name {
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: 0.02em;
  color: #fff;
}
.footer .footer-header .footer-company-name p {
  margin: 0;
  font-family: Rochester, serif;
  letter-spacing: 3px;
  font-weight: 200;
}
.footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.footer .footer-content div h3 {
  color: #b8e986;
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 700;
}
.footer .footer-content div p, .footer .footer-content div a {
  color: #d4d4d4;
}
.footer .footer-content div a {
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer .footer-content div a:hover, .footer .footer-content div a:focus {
  color: #b8e986;
  text-decoration: underline;
}
.footer .footer-content div ul {
  list-style: none;
  padding: 0;
}
.footer .footer-content div ul li {
  margin-bottom: 7px;
}
.footer .footer-content div ul li a {
  color: #d4d4d4;
}
.footer .footer-content .footer-map iframe {
  border: 0;
  border-radius: 8px;
  width: 100%;
  height: 120px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.18);
}
.footer .footer-legal {
  max-width: 1200px;
  margin: 20px auto 0 auto;
  padding: 0 24px;
  text-align: center;
}
.footer .footer-legal a {
  color: #b8e986;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 600;
  transition: -webkit-text-decoration 0.3s ease;
  transition: text-decoration 0.3s ease;
  transition: text-decoration 0.3s ease, -webkit-text-decoration 0.3s ease;
}
.footer .footer-legal a:hover, .footer .footer-legal a:focus {
  text-decoration: underline;
}
.footer .footer-social {
  max-width: 1200px;
  margin: 20px auto 0 auto;
  padding: 0 24px;
  text-align: center;
}
.footer .footer-social a {
  color: #b8e986;
  font-size: 1.6rem;
  margin: 0 10px;
  transition: color 0.3s ease;
}
.footer .footer-social a:hover, .footer .footer-social a:focus {
  color: #fff;
}
.footer .footer-copyright {
  max-width: 1200px;
  margin: 20px auto 0 auto;
  padding: 0 24px;
  text-align: center;
  color: #a6b88c;
  font-size: 0.95rem;
}
.footer .site-realise-par {
  max-width: 1200px;
  margin: 10px auto 0 auto;
  padding: 0 24px;
  text-align: center;
  color: #a6b88c;
  font-size: 0.9rem;
}
.footer .site-realise-par p {
  margin-bottom: 5px;
}
.footer .site-realise-par a img {
  height: 28px;
  margin-left: 7px;
  filter: brightness(0) invert(1);
  vertical-align: middle;
  transition: filter 0.3s ease;
}
.footer .site-realise-par a img:hover, .footer .site-realise-par a img:focus {
  filter: brightness(0.8) invert(0.8);
}
@media (max-width: 1000px) {
  .footer .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 700px) {
  .footer .footer-header {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .footer .footer-content {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .footer .footer-map iframe {
    height: 180px;
  }
}

.credit-section {
  background: white;
  margin-top: 80px;
  position: relative;
}
.credit-section .container-credit {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}
.credit-section .credit-text {
  flex: 1 1 340px;
  min-width: 320px;
  padding-left: 1rem;
  padding-right: 1rem;
}
.credit-section .credit-text h2 {
  font-size: clamp(2.6rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
  color: #747474;
  font-weight: 100;
  font-family: Rochester, serif;
  text-align: center;
}
.credit-section .credit-text p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  padding-top: 15px;
}
.credit-section .credit-text .credit-arguments {
  list-style: disc inside;
  color: #257798;
  font-weight: 500;
  margin-left: 0;
  padding-left: 0;
}
.credit-section .credit-text .credit-arguments li {
  margin-bottom: 0.7rem;
  font-size: 1.05rem;
  color: #257798;
  font-style: oblique;
}
.credit-section .credit-text .credit-photo-mobile, .credit-section .credit-text .credit-logo {
  display: none;
  width: 100%;
  height: 120px;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(37, 119, 152, 0.1);
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin: 1.2rem auto;
  transition: box-shadow 0.3s;
  background: #fff;
}
.credit-section .credit-gallery {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
}
.credit-section .credit-gallery .credit-logo {
  display: block;
  width: 100%;
  height: 180px;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(37, 119, 152, 0.13);
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  background: #fff;
  transition: box-shadow 0.3s;
}
.credit-section .credit-gallery .credit-logo:hover {
  box-shadow: 0 8px 32px rgba(37, 119, 152, 0.19);
}
@media (max-width: 900px) {
  .credit-section .container-credit {
    flex-direction: column;
  }
  .credit-section .credit-gallery {
    display: none;
  }
  .credit-section .credit-text .credit-photo-mobile, .credit-section .credit-text .credit-logo {
    display: block;
    width: 100%;
    height: 150px;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(37, 119, 152, 0.1);
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
    margin: 1.2rem auto;
  }
  .credit-section .credit-gallery .credit-logo {
    height: 100px;
  }
}/*# sourceMappingURL=index.css.map */