@import url("https://fonts.googleapis.com/css2?family=Cormorant+SC:wght@400;500&display=swap");
*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #7c7c7c;
}

.site-container {
  min-height: 100vh;
  margin: auto;
  background-color: white;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 18px;
  overflow-x: hidden;
}

header {
  height: 500px;
  width: 100%;
  background-image: url(../ressources/header.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
}
header nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 70px;
}
header nav a {
  color: white;
  text-decoration: none;
  margin: 0 30px;
  position: relative;
}
header nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  right: 50%;
  transform: translateX(50%);
  height: 2px;
  background-color: white;
  width: 0px;
  transition: all 0.3s;
}
header nav a:hover::after {
  width: 100%;
  transition: all 0.3s;
}
header h1 {
  color: white;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  bottom: 15%;
  right: 5%;
  font-size: clamp(40px, 7vw, 70px);
  font-weight: lighter;
}

section {
  padding-bottom: 80px;
}

h2 {
  font-family: "Cormorant SC", serif;
  font-weight: 500;
  font-size: clamp(40px, 6vw, 60px);
  text-align: center;
  padding: 80px 0 50px;
}

.txt {
  width: 85%;
  max-width: 1000px;
  min-width: 300px;
  margin: auto;
}

p {
  line-height: 1.7rem;
}

#a-propos p {
  text-align: center;
  margin-bottom: 20px;
}
#a-propos img {
  display: block;
  margin: 50px auto 0;
  width: 50%;
  min-width: 200px;
  max-width: 300px;
  border-radius: 50%;
}

#soins {
  background-color: white;
  color: black;
}

#contact,
footer {
  background-color: #100a30;
  color: white;
}

.soins {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.soins .soin {
  background-color: #100a30;
  color: white;
  border-radius: 10px;
  text-align: center;
  width: 300px;
  padding: 15px;
  margin: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.soins .soin h3 {
  font-weight: 200;
  font-size: 25px;
}
.soins .soin p {
  text-align: start;
  margin: 20px 0;
}
.soins .soin span {
  font-style: italic;
  align-content: end;
}

.btn {
  padding: 10px 20px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px auto;
  border-radius: 50px;
  color: white;
  font-size: 25px;
  font-weight: 300;
  text-decoration: none;
  cursor: pointer;
  background-color: #732962;
  background-image: linear-gradient(to right, #732962, #8b4c55, #732962);
  background-size: 400%;
  background-position: right;
  transition: background-position 0.4s;
}
.btn:hover {
  background-position: left;
  transition: background-position 0.4s;
}

#les-avis {
  padding: 0;
}

.les-avis {
  width: 70%;
  max-width: 800px;
  min-width: 300px;
  height: 400px;
  margin: auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.les-avis::before {
  content: " ";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-image: url(../ressources/quotes-before.png);
  background-position: center;
  background-size: cover;
  left: 0;
}
.les-avis::after {
  content: " ";
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  width: 50px;
  height: 50px;
  background-image: url(../ressources/quotes-after.png);
  background-position: center;
  background-size: cover;
  right: 0;
}
.les-avis .avis {
  width: 320px;
  height: 300px;
  position: relative;
  text-align: center;
}
.les-avis .avis1,
.les-avis .avis2,
.les-avis .avis3 {
  position: absolute;
  top: 50%;
  transform: translate(350px, -50%);
  width: 100%;
  opacity: 0;
}
.les-avis .avis1 span,
.les-avis .avis2 span,
.les-avis .avis3 span {
  font-size: clamp(35px, 5vw, 50px);
}
.les-avis .avis1 p,
.les-avis .avis2 p,
.les-avis .avis3 p {
  margin-top: 20px;
}

form {
  width: 75%;
  min-width: 300px;
  max-width: 500px;
  margin: auto;
}
form .form-item {
  display: flex;
  flex-direction: column;
  margin: 20px 0;
}
form .form-item label {
  font-weight: 200;
  font-size: 25px;
  margin-bottom: 10px;
}
form .form-item input,
form .form-item textarea {
  padding: 10px;
  border-radius: 5px;
  border: none;
  outline-color: #732962;
}
form .form-item button {
  border: none;
}

.form {
  background-color: #100a30;
  color: white;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  min-height: 100vh;
  width: 100vw;
  max-width: 1500px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.form P {
  font-size: 25px;
  font-weight: 100;
  text-align: center;
}

footer {
  height: 300px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
footer .footer-item {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 250px;
}
footer .footer-item img {
  width: 50px;
  display: block;
  margin: auto;
}
footer .footer-item span,
footer .footer-item a {
  margin: 10px 0;
  color: white;
}

/* MENTIONS LEGALES */
/*******************************/
.mentions-container {
  background-color: #242423;
  color: beige;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  min-height: 100vh;
  padding: 50px 15px;
}
.mentions-container .mention {
  margin-bottom: 20px;
}
.mentions-container .mention h3 {
  width: 100%;
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-align: start;
}
.mentions-container .mention p {
  opacity: 0.6;
  line-height: 25px;
}

@media screen and (max-width: 630px) {
  .les-avis::before {
    transform: translateY(0);
    top: 20px;
  }
  .les-avis::after {
    transform: translateY(0);
    bottom: 20px;
  }
  footer {
    flex-direction: column;
  }
}/*# sourceMappingURL=style.css.map */