#coming-soon {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 999999;
  background-color: #A0B595;
  top: 0;
  display: flex;
  align-items: center;
}
.no-scroll {
  overflow: hidden;
  height: 100vh;
  /* Évite les sauts */
}
.mobile {
  display: none !important;
}
html {
  scroll-behavior: smooth;
}
h1 {
  font-weight: 900;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  letter-spacing: 0.1em;
}
h2 {
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #43664E;
  margin-bottom: 30px;
}
h3 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.1em;
}
p {
  font-family: "Avenir Next W04 Demi";
  font-size: 14px;
  text-align: justify;
  letter-spacing: 0.05em;
  max-width: 800px;
  line-height: 25px;
}
.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-right: -10px;
  z-index: 9999999;
}
.hamRotate.active {
  transform: rotate(45deg);
}
.hamRotate180.active {
  transform: rotate(180deg);
}
.line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: #43664E;
  stroke-width: 3.5;
  stroke-linecap: round;
}
.ham1 .top {
  stroke-dasharray: 40.5 139;
}
.ham1 .bottom {
  stroke-dasharray: 40.5 180;
}
.ham1.active .top {
  stroke-dashoffset: -98px;
}
.ham1.active .bottom {
  stroke-dashoffset: -138px;
}
header.mobile {
  background-color: transparent;
  position: absolute;
  z-index: 9;
}
header.mobile .header-container {
  display: flex;
  justify-content: flex-end;
}
nav#mobile-menu {
  position: absolute;
  margin-top: 0;
  right: 0;
  text-align: right;
  padding-top: 100px;
  height: 100vh;
  z-index: 999999;
  background-color: #A0B595;
  top: -60%;
  opacity: 0;
  width: 100vw;
  transition: all 0.5s cubic-bezier(0, 0.61, 0.34, 1.01);
  pointer-events: none;
}
nav#mobile-menu.active {
  top: 0;
  opacity: 1;
  pointer-events: initial;
}
nav#mobile-menu ul {
  flex-direction: column;
  transform: none !important;
  margin-block-start: 0;
  align-items: flex-start;
  padding-left: 30px;
}
nav#mobile-menu ul li {
  margin-bottom: 20px;
}
.loader {
  width: 100vw;
  height: 100vh;
  position: fixed;
  background-color: white;
  z-index: 1000;
  pointer-events: none;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-content: center;
}
.loader svg {
  width: 150px;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.loader .spin {
  transform-origin: center;
  animation: spin 1s linear infinite;
}
.loader.hidden {
  opacity: 0;
  transition: opacity 0.1s;
}
body {
  margin: 0;
  font-family: "Avenir Next W04 Demi";
  background-color: white;
  font-size: 13px;
  width: 100vw;
  overflow-x: hidden;
}
.mobile {
  display: none;
}
.hidden {
  opacity: 0;
}
.fadeIn {
  transition: all 0.5s ease-in;
}
header {
  padding: 20px;
  width: 100vw;
  background-color: #A0B595;
  z-index: 1001;
  position: relative;
}
header .header-container {
  max-width: 1000px;
  margin: 0 auto;
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav ul li a {
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  position: relative;
}
nav ul li a::before {
  content: "";
  position: absolute;
  width: 0;
  /* Début invisible */
  height: 1px;
  /* Épaisseur de la ligne */
  bottom: -5px;
  /* Ajuste la position sous le texte */
  left: 50%;
  /* Départ du centre */
  background-color: white;
  transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}
nav ul li a:hover::before {
  width: 100%;
  /* S'étend sur toute la largeur */
  left: 0;
  /* Déplacement pour un effet fluide */
}
nav ul li a.active::before {
  width: 100%;
  /* S'étend sur toute la largeur */
  left: 0;
}
nav ul li a img {
  width: 60px;
}
a.button {
  text-transform: uppercase;
  border: 1px solid #A0B595;
  padding: 15px 25px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  color: #43664E;
  display: inline-block;
  font-family: "Poppins";
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.1em;
  cursor: pointer;
  margin-top: 50px;
}
a.button:hover {
  background-color: #43664E;
  color: white;
}
section {
  display: flex;
  justify-content: center;
  position: relative;
}
.section-container {
  position: relative;
  max-width: 1200px;
  padding: 50px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.section-container .title {
  position: relative;
  display: flex;
  gap: 10px;
}
.section-container .title img {
  width: 50px;
  transform: translateY(-30px);
}
.mentions {
  max-width: 1200px;
  padding: 50px;
}
.mentions p {
  margin-bottom: 20px;
}
section.top-section {
  background: url("img/illu-home.jpg") no-repeat center center;
  background-size: cover;
  height: 600px;
  max-height: 50vh;
}
section.top-section .section-container {
  flex-direction: column;
  gap: 25px;
  justify-content: flex-end;
}
section.top-section .section-container img {
  min-width: 80px;
  max-width: 100px;
  width: 2vw;
}
section.top-section .section-container h1,
section.top-section .section-container h3 {
  color: white;
  text-transform: uppercase;
  text-align: center;
}
section#presentation .section-container p {
  margin-bottom: 30px;
}
section#presentation .section-container h2 {
  margin-top: 50px;
}
section#presentation .section-container div {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
section#presentation .section-container div a.item {
  display: block;
  border: 1px solid black;
  width: 30vw;
  height: 30vw;
  max-width: 300px;
  max-height: 300px;
  min-width: 200px;
  min-height: 200px;
}
section#presentation .section-container div a.item:hover div {
  transform: scale(1.1);
}
section#presentation .section-container div a.item h4 {
  font-family: "Poppins", sans-serif;
  color: white;
  text-transform: uppercase;
  text-align: center;
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  bottom: 20px;
  letter-spacing: 0.1em;
  padding: 20px;
  font-size: 20px;
  font-weight: 800;
}
section#presentation .section-container div a.item div {
  width: 100%;
  height: 100%;
  margin: 0;
  border: 10px solid white;
  background-size: cover;
  position: relative;
  transition: all 0.3s ease-out;
}
section#presentation .section-container div a.item div::before {
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  pointer-events: none;
}
section#presentation .section-container div a.item:nth-child(1) {
  border-color: #A0B595;
}
section#presentation .section-container div a.item:nth-child(1) div {
  background-image: url("img/jardin.jpg");
}
section#presentation .section-container div a.item:nth-child(1) div::before {
  background: linear-gradient(45deg, #43664E, transparent);
}
section#presentation .section-container div a.item:nth-child(2) {
  border-color: #264884;
}
section#presentation .section-container div a.item:nth-child(2) div {
  background-image: url("img/menage.jpg");
}
section#presentation .section-container div a.item:nth-child(2) div::before {
  background: linear-gradient(45deg, #1d345d, transparent);
}
section#presentation .section-container div a.item:nth-child(3) {
  border-color: #AFA191;
}
section#presentation .section-container div a.item:nth-child(3) div {
  background-image: url("img/conciergerie.jpg");
}
section#presentation .section-container div a.item:nth-child(3) div::before {
  background: linear-gradient(45deg, #766d63, transparent);
}
section.banner-credits {
  background-color: #A0B595;
  color: white;
}
section.banner-credits .section-container {
  padding: 30px;
  flex-direction: row;
  gap: 5vw;
  max-width: 1000px;
}
section.banner-credits .section-container i {
  padding-top: 20px;
  display: inline-block;
}
section.banner-credits .section-container img {
  width: 50%;
  max-width: 330px;
}
section.banner-credits .section-container div {
  text-align: center;
}
section.banner-credits .section-container div h3 {
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 25px;
}
section.banner-credits .section-container div p {
  text-align: center;
  font-size: 20px;
  max-width: 80%;
  margin: 0 auto;
}
section.banner-credits .section-container div a {
  color: white;
  font-style: italic;
  font-weight: 100;
  margin-top: 20px;
  letter-spacing: 1px;
  display: inline-block;
}
section#team .section-container span {
  font-size: 10px;
  margin-top: 10px;
  text-align: right;
  width: 100%;
}
section#team .section-container p {
  margin-top: 80px;
}
section#credit-detail {
  background-color: #a0b59596;
  padding: 20px 0;
}
section#credit-detail .section-container {
  padding-bottom: 0;
}
section#credit-detail .section-container h2 {
  color: #3B443E;
  position: relative;
  margin-bottom: 50px;
}
section#credit-detail .section-container h2:before {
  content: "";
  display: block;
  border-bottom: 1px solid #3B443E;
  width: 100%;
  margin: 0 auto;
  position: absolute;
  bottom: -10px;
}
section#credit-detail .section-container p {
  text-align: center;
  max-width: 800px;
  font-size: 16px;
  font-family: "Avenir Next LT W04 Light";
}
section#credit-detail .section-container p b {
  font-family: "Avenir Next W04 Demi";
}
section#credit-detail .section-container p i {
  font-size: 12px;
}
section#map .section-container h2 {
  margin-bottom: 3px;
}
section#map .section-container h3 {
  font-size: 16px;
  margin-bottom: 40px;
}
section#map .section-container div.map-section {
  display: flex;
  border: 2px solid #A0B595;
  border-radius: 30px;
  align-items: center;
  max-width: 1000px;
  overflow: hidden;
}
section#map .section-container div.map-section img {
  width: 60%;
  min-height: 100%;
  object-fit: cover;
}
section#map .section-container div.map-section div {
  padding: 50px;
}
.top-section2 {
  background-size: cover;
  height: 600px;
  max-height: 50vh;
}
.top-section2::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}
.top-section2 .section-container {
  color: white;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
}
.top-section2 .section-container h1 {
  text-transform: uppercase;
  font-size: 40px;
  line-height: 50px;
  text-align: right;
}
section.detail .section-container .prestations,
section.detail .section-container form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #a0b59582;
  margin: 50px auto;
  width: 1000px;
  max-width: 90vw;
  color: #1E3626;
  padding: 50px;
  position: relative;
  border: 10px solid white;
  outline: 1px solid #43664E;
  border-radius: 20px;
  align-items: center;
}
section.detail .section-container .prestations .title,
section.detail .section-container form .title {
  align-self: center;
}
section.detail .section-container .prestations h2::before,
section.detail .section-container form h2::before {
  content: "";
  position: absolute;
  bottom: 15px;
  width: 85%;
  border-top: 1px solid #43664E;
}
section.detail .section-container .prestations .list,
section.detail .section-container form .list {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  max-width: 1000px;
}
section.detail .section-container .prestations ul,
section.detail .section-container form ul {
  list-style: none;
}
section.detail .section-container .prestations ul li,
section.detail .section-container form ul li {
  font-size: 16px;
  position: relative;
  padding-left: 1.4em;
  letter-spacing: 0.05em;
  margin: 15px;
  line-height: 25px;
}
section.detail .section-container .prestations ul li::before,
section.detail .section-container form ul li::before {
  content: "•";
  /* Caractère puce */
  color: white;
  /* Couleur de la puce */
  font-size: 1.2em;
  position: absolute;
  left: 0;
  top: 0;
}
section.detail .section-container .prestations ul i,
section.detail .section-container form ul i {
  display: inline-block;
  padding-top: 30px;
  padding-left: 20px;
}
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #43664E;
  width: 100vw;
  overflow: hidden;
}
footer .section-container {
  max-width: 1200px;
  display: flex;
  flex-direction: row;
  gap: 100px;
}
footer .section-container h2,
footer .section-container p {
  color: white;
  text-align: right;
  text-transform: inherit;
}
footer .section-container h2 {
  font-size: 16px;
  margin-bottom: 0;
}
footer #logo-pa {
  width: 100px;
}
footer #logo-pabe {
  width: 100px;
}
footer #logo-conciergerie {
  width: 150px;
}
footer p.bottom {
  background-color: #A0B595;
  width: 100vw;
  padding: 5px;
  max-width: none;
  color: white;
  text-align: center;
}
footer p.bottom a {
  color: white;
}
/* Styles for screens with a width less than 1500px */
@media screen and (max-width: 1070px) {
  header .header-container {
    max-width: 90%;
  }
  section#presentation .section-container div {
    gap: 15px;
  }
  section#presentation .section-container div a.item {
    width: 27vw;
    height: 27vw;
  }
  section#presentation .section-container div a.item h4 {
    padding: 10px;
  }
  a.button {
    font-size: 18px;
  }
  section#map .section-container div.map-section div {
    padding: 20px;
  }
}
@media screen and (max-width: 800px) {
  .mobile {
    display: inline-block !important;
  }
  .desktop {
    display: none !important;
  }
  header.mobile {
    background-color: transparent !important;
    position: absolute;
    z-index: 9;
  }
  section.top-section .section-container h1 {
    text-align: center;
  }
  .section-container {
    padding: 20px;
    flex-direction: column;
    max-width: 100vw;
  }
  section.top-section {
    height: 400px;
  }
  section#presentation .section-container h2 {
    margin-top: 10px;
  }
  section#presentation .section-container div {
    justify-content: center;
  }
  section#presentation .section-container div a.item {
    width: 85vw;
    height: 160px;
    max-width: none;
    max-height: none;
    min-height: 0;
  }
  section#presentation .section-container div a.item div {
    width: 100%;
    height: 100%;
    margin: 0;
    border: 6px solid white;
  }
  section.banner-credits .section-container {
    flex-direction: column;
  }
  section.banner-credits .section-container img {
    width: 80%;
    transform: translate(-10%, 0);
  }
  section#team .section-container span {
    font-size: 14px;
  }
  section#team .section-container p {
    margin-top: 30px;
  }
  a.button {
    margin-top: 30px;
  }
  section#credit-detail .section-container h2 {
    text-align: center;
  }
  section#credit-detail .section-container p {
    text-align: justify;
  }
  section#map .section-container h2,
  section#map .section-container h3 {
    text-align: center;
    margin-bottom: 20px;
  }
  section#map {
    width: 100vw;
    overflow: hidden;
  }
  section#map .section-container div.map-section {
    flex-direction: column;
    width: 100vw;
    border: initial;
    border-radius: 0;
  }
  section#map h2,
  section#map h3 {
    padding: 0 10px;
  }
  section#map .section-container div.map-section img {
    width: 100%;
    height: auto;
    min-height: auto;
  }
  section#map .section-container div.map-section div {
    padding: 20px;
    text-align: center;
  }
  footer .section-container {
    flex-direction: column-reverse;
    gap: 50px;
    align-items: center;
    width: 100%;
  }
  footer .section-container h2,
  footer .section-container p {
    text-align: center;
  }
  footer .section-container img {
    max-width: 170px;
    max-height: 100px;
  }
  section.detail .section-container .prestations ul,
  section.detail .section-container form ul {
    padding-inline-start: 0;
  }
  .top-section2 h3 {
    text-align: right;
  }
  .top-section2 {
    height: 250px;
    align-items: flex-end;
  }
  .top-section2 .section-container h1 {
    font-size: 32px;
    line-height: 38px;
  }
  .mentions {
    padding: 50px 20px;
  }
}
