@import url('https://fonts.googleapis.com/css2?family=Luxurious+Script&family=Megrim&family=Milonga&family=Nunito&display=swap');


/*SETUP*/

*,
::before,
::after {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style-type: none;
  box-sizing: border-box;
}

:root {
  --gold: #e1bd75;
  --light-shadow: #5b4722;
  --dark-shadow: #32230a;
  --h2-background-color: black;
  --h2-text-color: hsl(0, 0%, 100%);
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #333;
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  font-family: 'Nunito Sans';
  overscroll-behavior: none;
}

.fa-chevron-up {
  font-size: 45px;
  display: block;
  position: fixed;
  bottom: 15px;
  right: 30px;
  cursor: pointer;
  background-image: repeating-linear-gradient(to bottom right, #a2682a 0%, #be8c3c 8%, #be8c3c 18%, #d3b15f 27%, #faf0a0 35%, #ffffc2 40%, #faf0a0 50%, #d3b15f 58%, #be8c3c 67%, #b17b32 77%, #bb8332 83%, #d4a245 88%, #e1b453 93%, #a4692a 100%);
  background-size: 150%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 1px rgba(255, 200, 0, .3));
  animation: MoveBackgroundPosition 6s ease-in-out infinite;
  z-index: 20;
  /* text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3); */

}

/* ***************************** HEADER ********************************* */

header {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  text-align: center;
}


/* ***************************** SECTION ******************************** */

section {
  width: 100vw;
  display: flex;
  flex-direction: column;
}

#first {
  height: 100vh;
  position: relative;
}


/* ****************************** MENU *********************************** */

.navbar {
  position: absolute;
  width: 100%;
  z-index: 2;
  display: block;
}

.navbar a {
  color: #fff;
}

.navbar .nav-links {
  display: none;
  position: sticky;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(1px);
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 5px rgba(0, 0 , 0, 0.9);
  transform: translateY(-65px);
  transition: transform 0.5s ease-in-out;
}

.nav-links.mobile-menu {
  transform: translateY(0px);
} 

.navbar .nav-links > ul {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 10%;
  font-family: "Milonga", sans-serif;
  font-size: 1.45vw;
  text-shadow: 0px 0px 5px rgba(0, 0 , 0, 0.9);
}
#services620 {
  display: none;
} 
.navbar li {
  white-space: nowrap;
}

.navbar .nav-links ul li a {
  margin: 0 25px;
  transition: transform 0.3s ease-in-out;
}

.navbar .nav-links ul li a:hover {
  color: var(--gold);
  transform: scale(1.1);
}

.has-sous-nav {
  height: 60px;
  display: flex;
  align-items: center;
}

.sous-nav {
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: fixed;
  top: 61px;
  left: 0;
  width: 100vw;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(1px);  
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
} 

.has-sous-nav ul {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(1px);  
}

.sous-nav.mobile-sous-menu {
  opacity: 1;
}


/* ************************* BURGER COMMUN ********************* */

.hamburger-wrapper {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 60px;
  height: 60px;
  display: flex;
  top: 0px;
  right: 35px;
  cursor: pointer;
  transition: transform  0.3s ease-in;
  z-index: 3;
}


.hamburger-icon {
  position: relative;
  width: 44px;
  height: 34px;
  margin: auto;
  display: flex;
  align-items: center;
  transform: rotate(0);
  transition: 1s;
}

.hamburger-wrapper.active .hamburger-icon {
  transform: rotate(135deg);
}

.hamburger-icon span,
.link-icon span {
  position: absolute;
  display: block;
  height: 5px;
  background: repeating-linear-gradient(to bottom right, #a2682a 0%, #be8c3c 8%, #be8c3c 18%, #d3b15f 27%, #faf0a0 35%, #ffffc2 40%, #faf0a0 50%, #d3b15f 58%, #be8c3c 67%, #b17b32 77%, #bb8332 83%, #d4a245 88%, #e1b453 93%, #a4692a 100%);
  background-size: 150%;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 1px rgba(255, 200, 0, .3));
  animation: MoveBackgroundPosition 6s ease-in-out infinite;
  border: 1px solid #a2682a;
  border-radius: 6px;
  box-shadow: 0 0 5px, 0 0 10px;
  transition: 0.3s;
  transition-delay: 0.15s;
}


/* *************************** BURGER MOBILE *************************** */

.hamburger-icon span:nth-child(1) {
  top: 0;
  left: 0;
  width: 100%;
}

.hamburger-icon:hover span:nth-child(1) {
  top: 0;
  left: 0;
  width: 50%;
  transform: translateY(0);
}

.hamburger-wrapper.active span:nth-child(1) {
  width: 100%;
  transform: translateY(15px);
}


.hamburger-icon span:nth-child(2) {  
  width: 100%;
  transform: scaleX(1);
  opacity: (1);
}

.hamburger-wrapper.active span:nth-child(2) {
  transform: scaleX(0);
  opacity: (0);
}

.hamburger-icon span:nth-child(3) {
  bottom: 0;
  right: 0;
  width: 100%;
}

.hamburger-icon:hover span:nth-child(3) {
  bottom: 0;
  right: 0;
  width: 50%;
  transform: rotate(0);
}

.hamburger-wrapper.active span:nth-child(3) {
  bottom: 14px;
  width: 100%;
  transform: rotate(90deg);
}



/* ************************* HEADER H1 / H2 ***************************** */

h1 {
  position: absolute;
  background: radial-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
  filter: drop-shadow(0px 40px 20px black);
  display: grid;
  grid-template-areas: 'overlap';
  width: 100%;
  left: 0;
  top: 26vh;
  margin: auto;
  scale: 0.9;
}

h1>div {
  background-clip: text;
  -webkit-background-clip: text;
  color: #363833;
  font-family: 'Luxurious Script', sans-serif;
  font-weight: 600;
  font-size: 22vw;
  grid-area: overlap;
  letter-spacing: 1px;
  -webkit-text-stroke: 4px transparent;
}

div.bg {
  padding: 0 25px;
  background-image: repeating-linear-gradient(to bottom right, #a2682a 0%, #be8c3c 8%, #be8c3c 18%, #d3b15f 27%, #faf0a0 35%, #ffffc2 40%, #faf0a0 50%, #d3b15f 58%, #be8c3c 67%, #b17b32 77%, #bb8332 83%, #d4a245 88%, #e1b453 93%, #a4692a 100%);
  background-size: 150%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 1px rgba(255, 200, 0, .3));
  animation: MoveBackgroundPosition 6s ease-in-out infinite;
  filter: drop-shadow(5px 15px 15px black);
  transform: scaleY(1.05);
  transform-origin: top;
}

div.fg {
  padding: 0 25px;
  background-image: repeating-linear-gradient(5deg,
      var(--gold) 0%,
      var(--light-shadow) 23%,
      var(--gold) 31%);
  color: #111111;
  transform: scale(1);
}

h2 {
  position:absolute;
  display: grid;
  place-content: center;
  min-height: 8vh;
  font-family: "Milonga", sans-serif;
  white-space: nowrap;
  font-size: 4.5vw;
  font-weight: 700;
  color: var(--h2-text-color);
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 1));
  bottom: 3vh;
  right: 0;
  left: 5vw;
}

h2>div {
  grid-area: 1/1/-1/-1;
}

.top {
  clip-path: polygon(0% 0%, 100% 0%, 100% 48%, 0% 58%);
  z-index: 2;
  text-shadow: 0px 5px 4px rgba(0, 0, 0, 0.75);
}

.bottom {
  clip-path: polygon(0% 60%, 100% 50%, 100% 100%, 0% 100%);
  color: transparent;
  background: -webkit-linear-gradient(179.6deg, black 53%, var(--h2-text-color) 65%);
  background: linear-gradient(179.6deg, black 53%, var(--h2-text-color) 65%);
  background-clip: text;
  -webkit-background-clip: text;
  transform: translateX(0.01em);
  z-index: 1;
}

/* *************************** HEADER Images ****************************** */

#first .images-wrapper {
  background-image: url(img/watch0.jpg);
}
#second .images-wrapper {
  background-image: url(img/watch1.jpg);
}
#third .images-wrapper {
  background-image: url(img/watch2.jpg);
}
#fourth .images-wrapper {
  background-image: url(img/watch9.jpg);
}
#fifth .images-wrapper {
  background-image: url(img/watch4.jpg);
}


.images-wrapper {
  position: relative;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* *************************** HEADER Text ******************************** */



#second .text-wrapper {
  background: radial-gradient(#2B0202, #000000);
  left: 0;
  bottom: 0;
  width: 98.5vw;
}

#third .text-wrapper {
  background: radial-gradient(#0A001C, #000000);
  left: 0;
  bottom: 0;
  margin-left: 0;
  width: 98.5vw;
}

#fourth .text-wrapper {
  background: radial-gradient(#000741, #000000);
  left: 0;
  bottom: 0;
  margin-left: 0;
  width: 98.5vw;
}

#fifth .text-wrapper {
  background: radial-gradient(#081910, #000000);
  left: 0;
  bottom: 0;
  margin-left: 0;
  width: 98.5vw;
}

.text-wrapper {
  position: relative;
  min-width: 250px;
  padding: 2.5vh 4vw;
  border: 1px solid var(--gold);
  border-image-slice: 1;
  border-radius: 5px;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.6);
}

.text-wrapper p {
  font-size: 2vw;
  line-height: 150%;
  background-image: repeating-linear-gradient(to bottom right, #a2682a 0%, #be8c3c 8%, #be8c3c 18%, #d3b15f 27%, #faf0a0 35%, #ffffc2 40%, #faf0a0 50%, #d3b15f 58%, #be8c3c 67%, #b17b32 77%, #bb8332 83%, #d4a245 88%, #e1b453 93%, #a4692a 100%);
  background-size: 150%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 1px rgba(255, 200, 0, .3));
  animation: MoveBackgroundPosition 6s ease-in-out infinite;
}

.text-wrapper::after {
  content: "";
  position: absolute;
  border-left-width: 0px;
  border-right-width: 0;
  border-bottom-width: 3px;
  border-top-width: 0;
  border-style: solid;
  border-image: linear-gradient(0.25turn, var(--light-shadow), var(--gold), var(--dark-shadow));
  border-image-slice: 1;
  width: 650%;
  height: 115%;
  top: 0;
  left: -275%;
  z-index: 1;
  display: none;
}


/* ************************************************************************ */
/* ******************************** MAIN ********************************** */
/* ************************************************************************ */


main {
  display: flex;
  flex-direction: column;
}

.main-section {
  position: relative;
  width: 100%;
  overflow:hidden;
  margin: 0;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 100px;
  color: #000000;
  text-align: center;
}

.main-section p {
  font-size: 1.5vw;
  font-weight: 600;
  padding: 1.5vw;
  z-index: 1;
}


/* *************************** SLIDE *************************** */

.main-section::after {
  /* A voir ce qu'il en est */
  content: "";
  position: absolute;
  border-left-width: 0px;
  border-right-width: 0;
  border-bottom-width: 3px;
  border-top-width: 0;
  border-style: solid;
  border-image: linear-gradient(0.25turn, var(--light-shadow), var(--gold), var(--dark-shadow));
  border-image-slice: 1;
  width: 405%;
  height: 115%;
  top: 0;
  left: -175%;
  z-index: 1;
}

h3 {
  color: #000000;
  font-size: 2.7rem;
  margin-bottom: 45px;
  z-index: 1;
}

.two,
.three,
.four,
.services-container {
  background-color: green;
  color: var(--gold);
  height: auto;
}

.services-container h3,
.infos h3 {
  color: var(--gold);
}

/* ******************* Présentation ******************** */

#presentation {
  /* background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%),
    radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%); */background: repeating-linear-gradient(to bottom right, #a2682a 0%, #be8c3c 8%, #be8c3c 18%, #d3b15f 27%, #faf0a0 35%, #ffffc2 40%, #faf0a0 50%, #d3b15f 58%, #be8c3c 67%, #b17b32 77%, #bb8332 83%, #d4a245 88%, #e1b453 93%, #a4692a 100%);
  filter: drop-shadow(0 0 1px rgba(255, 200, 0, .3));
  animation: MoveBackgroundPosition 6s ease-in-out infinite;
  flex-direction: column;
  padding: 30px 0;
  /* opacity: 0.5; */
}

#presentation .presentation-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 20px 0;
}

#presentation img {
  max-width: 45%;
  height: auto;
  border-radius: 10px;
  margin: 20px 0;
  box-shadow: -4px 4px 10px rgba(0, 0, 0, 0.3);
}

.presentation-content p {
  text-align: justify;
}

.meca {
  position: absolute;
  width: 100%;
  height: 100vh;
  margin: 0;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: left;
}

.meca img {
  position: absolute;
  height: 100vh;
  opacity: 0.15;
}



/* ************************ SERVICES *********************** */


.services-container {
  z-index: 2;
  position: relative;
  width: 100vw;
  display: flex;
  flex-direction: column;
  transition: 0.5s;
  background: #000;
  overflow: hidden;
}



#services .box {
  position: relative;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  padding: 40px;
  box-shadow: 0 0 20px rgba(218, 155, 32, 0.3);
}

#services .box:nth-child(1) {
  background: #020617;
}

#services .box:nth-child(2) {
  background: radial-gradient(rgb(34, 34, 34), rgb(0, 0, 0));
}

#services .box:nth-child(3) {
  background: radial-gradient(#2B0202, #000000);
}

#services .box:nth-child(4) {
  background: radial-gradient(#0A001C, #000000);
}

#services .box:nth-child(5) {
  background: radial-gradient(#000741, #000000);
}

#services .box:nth-child(6) {
  background: radial-gradient(#081910, #000000);
}

#services .box .contentbx i {
  font-size: 5rem;
  margin-bottom: 5rem
}

#services .box .contentbx h3 {
  font-size: 3rem;
  margin-bottom: 5rem;
}

#services .box .contentbx p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 25px;
  text-align: center;
  padding-bottom: 30px;
}

#services .box .contentbx i,
#services .box .contentbx h3,
#services .box .contentbx p,
#infos a,
#contact h3,
#contact p,
#infos h3,
#infos p,
#infos table,
#contact input::-webkit-input-placeholder, 
#contact textarea::-webkit-input-placeholder {
  background-image: repeating-linear-gradient(to bottom right, #a2682a 0%, #be8c3c 8%, #be8c3c 18%, #d3b15f 27%, #faf0a0 35%, #ffffc2 40%, #faf0a0 50%, #d3b15f 58%, #be8c3c 67%, #b17b32 77%, #bb8332 83%, #d4a245 88%, #e1b453 93%, #a4692a 100%);
  background-size: 150%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 1px rgba(255, 200, 0, .3));
  animation: MoveBackgroundPosition 6s ease-in-out infinite;
}

@keyframes MoveBackgroundPosition { 
  0% {
      background-position: 0% 50%
  }
  
  50% {
    background-position: 100% 50%
  }
  
  100% {
    background-position: 0% 50%
  }
}


/* ************************* CONTACT ************************ */

#contact {
  background-color: #4d4855;
  background-image: radial-gradient( #544c5e 0%, #000000 58%);
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-top: solid 1px transparent;
  border-bottom: solid 1px transparent;
  background-image: radial-gradient( #544c5e 0%, #000000 58%), linear-gradient(315deg, var(--light-shadow), var(--gold), var(--dark-shadow));
  background-origin: border-box;
  background-clip: content-box, border-box;

}

#contact h3 {
  margin-top: 75px;
}

/* #contact h3,  */
/* #contact p,  */
/* #contact input::-webkit-input-placeholder
#contact textarea::-webkit-input-placeholder
 {
  background-image: linear-gradient(180deg, #A8A9AD, #E3E3E3);
  background-size: 100%;
  background-repeat: repeat;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; 
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
} */

#contact form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  z-index: 2;
}

form input,
#contact textarea {
  background-color: rgba(5, 5, 5, 0.5);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
          color: var(--gold);
  width: 90vw;
  max-width: 950px;
  margin: 10px 0;
  outline: 0;
  font-size: 1.1rem;
  resize: none;
  box-shadow: 6px 6px 10px rgba(0, 0 , 0, 0.7);
  border: 1px solid rgba(17, 17, 17, 0.5);
  padding : 15px;
  border-radius: 6px;
}
#contact textarea {
  height: auto;
}

#contact input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  /* color: #CCC; */
  font-size: 1.1rem;
}  

#contact form input[type="submit"] {
  margin-bottom: 35px;
  margin-top: 25px;
  background: repeating-linear-gradient(to bottom right, #a2682a 0%, #be8c3c 8%, #be8c3c 18%, #d3b15f 27%, #faf0a0 35%, #ffffc2 40%, #faf0a0 50%, #d3b15f 58%, #be8c3c 67%, #b17b32 77%, #bb8332 83%, #d4a245 88%, #e1b453 93%, #a4692a 100%);
  filter: drop-shadow(0 0 1px rgba(255, 200, 0, .3));
  animation: MoveBackgroundPosition 6s ease-in-out infinite;
  /* opacity: 0.5; */
  padding: 15px;
  color: #111;
  font-size: 1.1rem;
  font-weight: bold;
  border: 0;
  transition: 0.3s;
  cursor: pointer;
}

#contact form input[type="submit"]:hover{
  background: repeating-linear-gradient(to bottom left, #a2682a 0%, #be8c3c 8%, #be8c3c 18%, #d3b15f 27%, #faf0a0 35%, #ffffc2 40%, #faf0a0 50%, #d3b15f 58%, #be8c3c 67%, #b17b32 77%, #bb8332 83%, #d4a245 88%, #e1b453 93%, #a4692a 100%);
  filter: drop-shadow(0 0 1px rgba(255, 200, 0, .3));
  animation: MoveBackgroundPosition 6s ease-in-out infinite;
  opacity: 0.8;
  letter-spacing: 0.1em;
  font-size: 1.2rem;
}


/* ************************************* INFOS ********************************** */

#infos {
  position: relative;
  background-color: #2b4162;
  background-image: linear-gradient(315deg, #2b4162 0%, #12100e 74%);
  width: 100vw;
  display: flex;
  flex-direction: column;
}

#infos .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
}

#infos .find {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100vw;
}

#infos h3 {
  margin-top: 60px;
  margin-bottom: 30px;
  text-align: center;
}

#infos p {
  padding-top: 25px;
  font-size: 1.2rem;
  margin: 10px;
}

#infos p strong {
  font-size: 2rem;
}

#infos .adresse {
  display: block;
  padding-bottom: 50px;
}

#infos .horaires {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#infos .horaires span {
  font-size: 2rem;
}

#infos .horaires td {
  font-size: 1.2rem;
  padding: 3px 25px;

}

#infos .adress {
  margin-top: 50px;
  text-align: center;
}

#infos .atelier {
  width: 35vw;
  height: auto;
}

#infos .atelier img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  box-shadow: -4px 4px 10px rgba(0, 0, 0, 0.3);
}

#infos .social {
  display: flex;
  position: relative;
  flex-direction: row;
  justify-content: center;
  margin: 0 0 45px 0;
  z-index: 2;
}
#infos .social a {
  margin: 0 10px;
  font-size: 2.5rem;
  transition: 0.5s;
}
#infos .social a:hover {
  transform: rotateZ(4deg) translateY(-5px) scale(1.2);
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
}

#infos .pmr {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  padding: 0 40px;
}
#infos .pmr i {
  font-size: 3rem;
  /* padding: 10px; */
  margin-right: 25px;
  color: white;
  /* background-color: blue; */
  background-image: repeating-linear-gradient(to bottom right, #a2682a 0%, #be8c3c 8%, #be8c3c 18%, #d3b15f 27%, #faf0a0 35%, #ffffc2 40%, #faf0a0 50%, #d3b15f 58%, #be8c3c 67%, #b17b32 77%, #bb8332 83%, #d4a245 88%, #e1b453 93%, #a4692a 100%);
  background-size: 150%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 1px rgba(255, 200, 0, .3));
  animation: MoveBackgroundPosition 6s ease-in-out infinite;
  border-radius: 7px;
}
#infos .pmr p {
  font-size: 1.2rem;
}


/* ******************************** REVIEWS ************************************** */

.reviews {
  width: 100vw;
  /* height: 100vh; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: repeating-linear-gradient(to bottom right, #a2682a 0%, #be8c3c 8%, #be8c3c 18%, #d3b15f 27%, #faf0a0 35%, #ffffc2 40%, #faf0a0 50%, #d3b15f 58%, #be8c3c 67%, #b17b32 77%, #bb8332 83%, #d4a245 88%, #e1b453 93%, #a4692a 100%);
  filter: drop-shadow(0 0 1px rgba(255, 200, 0, .3));
  animation: MoveBackgroundPosition 6s ease-in-out infinite;
  padding: 20px;
  text-align: center;
}

.reviews h3 {
  /* font-size: 2vw; */
  margin-bottom: 100px;
  /* color: #333; */
}

.avis-container {
  /* width: 80%; */
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  gap: 5vw;
  justify-content: center;
  margin-bottom: 35px;
}

.avis {
  background: 
    linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.9) 50%,
        rgba(0, 0, 0, 1) 100%
    ),
     /* Fond en dégradé noir pour effet velours */
    linear-gradient(
        to top,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0) 50%
    ), 
    /* Reflet */
    linear-gradient(
        to left,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0) 50%
    ); 
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
  padding: 20px;
  flex: 1 1 calc(50% - 40px);
  max-width: calc(50% - 40px);
  min-width: 300px;
  min-height: 240px;
  color: white;
}

.avis h4 {
  font-size: 1.5vw;
  margin-bottom: 10px;
  background-image: repeating-linear-gradient(to bottom right, #a2682a 0%, #be8c3c 8%, #be8c3c 18%, #d3b15f 27%, #faf0a0 35%, #ffffc2 40%, #faf0a0 50%, #d3b15f 58%, #be8c3c 67%, #b17b32 77%, #bb8332 83%, #d4a245 88%, #e1b453 93%, #a4692a 100%);
  background-size: 150%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 1px rgba(255, 200, 0, .3));
  animation: MoveBackgroundPosition 6s ease-in-out infinite;
}

.avis p {
  margin-top: 25px;
  line-height: 1.5;
  
}

.avis p:nth-of-type(2) {
  font-size: 1.2vw;
  color: var(--gold); /* Couleur pour les étoiles */
}

/* @media (max-width: 768px) {
    .avis {
        flex: 1 1 100%;
        max-width: 100%;
    }
} */


/* ******************************** FOOTER ************************************** */

footer {
  background-color: #111;
  bottom: 0px;
  width: 100%;
  height: 150px;
  box-shadow: 8px 8px 12px rgba(0, 0 , 0, 0.7);
  border: 1px solid rgba(40, 40, 40, 0.5);  
  z-index: 12;
  font-family: "Duru Sans";
}

.links{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.links p{
  margin: 30px 30px;
}
.links .link{
  font-size: 1rem;
  text-decoration: none;
  color: #666;
  position: relative;
}
.links .link:hover{
  color: #aaa;
}
.links .link::before{
  content: "";
  position: absolute;
  background: #aaa;
  width: 100%;
  height: 1px;
  bottom: -2px;
  transform-origin: 100% 0;
  transform: scaleX(0);
  transition: transform 0.3s;
}
.links .link:hover::before{
  transform-origin: 0 0;
  transform: scaleX(1);
}


.ff {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  color: #666
}

.ff a {  
  position: relative;
  color: var(--light-shadow);
}
.ff a:hover {
  color: var(--gold);
}




/* ************************************* R E S P O N S I V E ******************************** */
@media  (max-width: 1000px) {
  #infos .find {
    flex-direction: column;
  }
  #infos .atelier {
    width: 75vw;
  } 
  .text-wrapper p,
  .main-section p,
  .avis p:nth-child(3) {
    font-size: 1.2rem;
  } 
  .presentation-content {
    width: 90vw;
  }
  #services .box .contentbx p {
    margin: 0;
  }
}

@media  (max-width: 900px) {
  .hamburger-wrapper {
    right: 20px;
  }
}


@media  (max-width: 800px) {
  
  .navbar .nav-links {
    background-color: rgba(0, 0, 0, 0.7);
  }
  .navbar .nav-links {    
    justify-content: flex-start;
  }
  .navbar .nav-links > ul {
    margin-left: 0px;
    font-size: 0.9rem;
  }
  .navbar .nav-links ul li a {
    margin: 0 10px;
  }
  .sous-nav {
    flex-direction: column;
    background-color: transparent;
    height: auto;
  }
  .sous-nav li {
    display: block;
    width: 100vw;
    padding: 15px 0;
    margin: 2px;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(0px);
    transition: 0.5s ease-in-out;
  }   
  .has-sous-nav ul {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(1px); 
  } 
  #presentation p {
    padding: 1.5vw 2vw;
  }  
  #presentation img {
    max-width: 80%;
  }
  #infos  #find .content .find {
    flex-direction: column;
  }
  #contact p {
    margin: 30px;
  }
  #infos .social a {
    margin: 0 35px 20px 35px;
    font-size: 3.5rem;
    transition: 0.5s;
  }
  #reviews h3 {
    margin-top: 50px;
  }
  .avis h4 {
    font-size: 1.5rem;
  }
}


@media  (max-width: 700px) {
  .hamburger-wrapper {
    width: 35px;
    height: 35px;
    right: 35px;
    top: 15px;
  }
  .navbar .nav-links {
    width: 100vw;
    height: 25vh;
    transform: translateY(-25vh);
    /* background-color: green; */
  }
  .navbar .nav-links ul {
    height: 25vh;
    top: 100px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(1px); 
    /* background-color: red; */
  }   
  .nav-links.mobile-menu  {
    transform: translateY(0);
  }
  .navbar .nav-links ul li {
    font-size: 1.3rem;
    margin : 7px;
  }
  .has-sous-nav {
    display: none;
  }
  #services620 {
    display: block;
  }
  h2 {
    font-size:6.5vw;
    left: 0;
    bottom: 5vh;
  } 
  .fa-chevron-up {
    font-size: 35px;
    right: 10px;
  }
}


@media (max-width: 580px) {
  .nav-links span {
    display: none;
  }
}


@media (max-width: 520px) { 
  .hamburger-wrapper {
    right: 35px;
  }
  h3 {
    font-size: 2.2rem;
  }
  #services .box .contentbx i {
    font-size: 3.5rem;
  }
  #services .box .contentbx h3 {
    font-size: 2.3rem;
  }
  .text-wrapper p, .main-section p, .avis p:nth-child(3), #infos .pmr p {
    font-size: 0.9rem;
  }
  #services .box .contentbx p, #infos .horaires td {
    font-size: 1rem;
  }
  form input, #contact textarea {
    font-size: 0.9rem;
  }
  #infos .horaires span, #infos p strong {
    font-size: 1.6rem;
  }
  #infos .social a, #infos .pmr i {
    font-size: 2.5rem;
  }
  footer .links .link, footer .webcod, .ebcod {
    font-size: 0.8rem;
  }
}


@media (max-width: 500px) {
  #infos .horaires td {
    padding: 3px 15px;
  }
}


@media (max-width: 430px) {
  #infos .horaires td {
    padding: 3px 10px;
  }
}


@media (max-width: 360px) {
  #infos .horaires td {
    padding: 3px 5px;
  }
}