/*reset*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*General*/
html {
  background-color: rgb(247, 224, 193);
  font-family: "Nunito", sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
  color: rgb(0, 0, 75);
}

body {
  margin: 0;
  background-color: rgb(247, 224, 193);
  overflow-x: hidden;
}

#go_top {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  cursor: pointer;
  font-size: 1rem;
  background-color: rgb(0, 0, 75);
  color: rgb(247, 224, 193);
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  text-decoration: none;
  border: 5px solid rgb(247, 224, 193);
  opacity: 0;
  transition: opacity 0.5s;
}

#go_top:hover {
  color: rgb(0, 0, 75);
  background-color: rgb(247, 224, 193);
  border: 5px solid rgb(0, 0, 75);
}
/*Header*/

#logo_header {
  height: 7.5rem;
  position: absolute;
  top: 1rem;
  left: 1rem;
}

#toggle_menu {
  border: none;
  border-radius: 1rem;
  background-color: transparent;
  font-size: 4rem;
  cursor: pointer;
  padding: 1rem;
  position: fixed;
  top: 1rem;
  right: 1rem;
  text-shadow: rgb(247, 224, 193) 2px 0px 0px,
    rgb(247, 224, 193) 1.75517px 0.958851px 0px,
    rgb(247, 224, 193) 1.0806px 1.68294px 0px,
    rgb(247, 224, 193) 0.141474px 1.99499px 0px,
    rgb(247, 224, 193) -0.832294px 1.81859px 0px,
    rgb(247, 224, 193) -1.60229px 1.19694px 0px,
    rgb(247, 224, 193) -1.97999px 0.28224px 0px,
    rgb(247, 224, 193) -1.87291px -0.701566px 0px,
    rgb(247, 224, 193) -1.30729px -1.51361px 0px,
    rgb(247, 224, 193) -0.421592px -1.95506px 0px,
    rgb(247, 224, 193) 0.567324px -1.91785px 0px,
    rgb(247, 224, 193) 1.41734px -1.41108px 0px,
    rgb(247, 224, 193) 1.92034px -0.558831px 0px;
  color: rgb(0, 0, 75);
  display: flex;
  justify-content: center;
  align-items: center;
}

/*Menu*/
#menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
  justify-content: center;
  align-items: center;
}

#menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#menu ul li {
  margin: 1rem;
}

#menu ul li a {
  text-decoration: none;
  color: rgb(247, 224, 193);
  font-family: "Dancing Script", cursive;
  font-weight: 700;
  font-size: 4rem;
}

#menu ul li a:hover {
  text-shadow: rgb(247, 224, 193) 2px 0px 0px,
    rgb(247, 224, 193) 1.75517px 0.958851px 0px,
    rgb(247, 224, 193) 1.0806px 1.68294px 0px,
    rgb(247, 224, 193) 0.141474px 1.99499px 0px,
    rgb(247, 224, 193) -0.832294px 1.81859px 0px,
    rgb(247, 224, 193) -1.60229px 1.19694px 0px,
    rgb(247, 224, 193) -1.97999px 0.28224px 0px,
    rgb(247, 224, 193) -1.87291px -0.701566px 0px,
    rgb(247, 224, 193) -1.30729px -1.51361px 0px,
    rgb(247, 224, 193) -0.421592px -1.95506px 0px,
    rgb(247, 224, 193) 0.567324px -1.91785px 0px,
    rgb(247, 224, 193) 1.41734px -1.41108px 0px,
    rgb(247, 224, 193) 1.92034px -0.558831px 0px;
  color: rgb(0, 0, 75);
}

/*titre*/

.title {
  font-family: "Josefin Sans", sans-serif;
  color: rgb(0, 0, 75);
  text-align: center;
  margin: 1rem;
}

h2.title {
  font-family: "Josefin Sans", sans-serif;
  color: rgb(0, 0, 75);
  text-align: center;
  font-size: 15vw;
}

.subtitle {
  font-family: "Josefin Sans", sans-serif;
  color: rgb(0, 0, 75);
  text-align: center;
  font-size: 6vw;
  width: 100%;
}

#big_title {
  text-align: center;
  font-family: "Dancing Script", cursive;
  font-size: 25vw;
  margin: 0;
  padding-top: 7.5rem;
  color: rgb(0, 0, 75);
  max-width: 80%;
}

#small_title {
  /*font-family: "Dancing Script", cursive;*/
  font-family: "Josefin Sans", sans-serif;
  text-align: center;
  font-size: 6.75vw;
  margin-top: 1rem !important;
  margin: 0;
  padding: 0;
  color: rgb(0, 0, 75);
}

#slogan {
  font-family: "Josefin Sans", sans-serif;
  text-align: center;
  font-size: 6vw;
  margin: 1rem;
  margin-top: 4rem;
  padding: 0;
  color: rgb(0, 0, 75);
}

h2 {
  font-size: 5rem;
}

h3 {
  font-size: 3rem;
  margin-top: 5rem;
  margin-bottom: 1rem;
}

#description_massages {
  font-size: 1.5rem;
  padding: 0 1rem;
}

.massage_bloc {
  margin-top: 3rem;
}

@keyframes jumpInfinite {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(3vh);
  }
  100% {
    transform: translateY(0);
  }
}

#arrow_down {
  font-size: 5rem;
  color: rgb(0, 0, 75);
  cursor: pointer;
  text-align: center;
  animation: jumpInfinite 5s infinite;
}

#ecran_titre {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(
      to bottom,
      rgba(255, 255, 0, 0),
      rgb(247, 224, 193)
    ),
    url(/assets/images/_DSC6672-Modifier-2.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/*Content*/

#tarifs {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Caveat Brush", cursive;
}

#tarifs .title {
  margin: 3rem;
  margin-top: 10rem;
}

#tarifs ul {
  padding: 1rem;
  list-style: none;
  margin: 0;
  font-size: 9vw;
  text-align: left;
  font-family: "Josefin Sans", sans-serif;
  color: rgba(0, 0, 75);
}

.mobile_break {
  margin-bottom: 1rem;
}

#tarifs ul li,
#tarifs p {
  margin: 1rem;
}

.italic {
  font-family: "Nunito", sans-serif;
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 2rem !important;
}

/*Footer*/
footer {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  justify-content: space-around;
  margin: 1rem;
  font-size: 1.5rem;
}

#me_contacter {
  margin-top: 5rem;
}

#me_contacter form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

#me_contacter form input {
  font-weight: 700;
  font-family: "Dancing Script", cursive;
  width: 100%;
  font-size: 2rem;
  padding: 1rem;
  margin: 1rem;
  border-radius: 1rem;
  border: none;
}

#me_contacter form textarea {
  font-weight: 700;
  font-family: "Dancing Script", cursive;
  width: 100%;
  font-size: 2rem;
  padding: 1rem;
  margin: 1rem;
  height: 33vh;
  border-radius: 1rem;
  border: none;
}

#submit {
  width: 100%;
  padding: 1rem;
  margin: 1rem;
  background-color: rgb(0, 0, 75);
  color: white;
  border: none;
  border-radius: 1rem;
  font-weight: 700;
  font-family: "Dancing Script", cursive;
  font-size: 3rem;
}

#submit:hover {
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

footer p {
  font-weight: 700;
  font-size: 2rem;
  margin-top: 2rem;
}

.phone {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 300;
  color: rgb(0, 0, 75);
}

#entete {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  align-items: center;
}

#entete h3 {
  margin: auto;
  white-space: nowrap;
}

#qui_suis-je p {
  font-size: 1.5rem;
  font-weight: 100;
}

#pp {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  border: 5px rgb(243, 199, 118) solid;
}

#disclaimer {
  font-size: 1.5rem;
  text-align: center;
  color: rgb(0, 0, 75);
  text-decoration: underline;
}

#me_contacter p {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
}

iframe {
  margin-top: 1rem;
  max-width: 100%;
}

.images_pc {
  display: none;
}
.images_mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 2rem;
  gap: 1rem;
}

.images_pc .img-massage {
  max-width: 30%;
}

.img-massage {
  max-width: 70%;
}

#txtimg {
  display: none;
}

@media screen and (min-width: 1100px) {
  #pp {
    width: 20rem;
    height: 20rem;
    border-radius: 50%;
    border: 5px rgb(243, 199, 118) solid;
  }

  #ecran_titre {
    justify-content: center;
  }

  .mobile_break {
    display: none;
  }

  #logo_header {
    height: 10rem;
  }

  h2.title {
    font-size: 7vw;
  }

  .subtitle {
    font-size: 2.5vw;
  }

  #big_title {
    font-size: 18rem;
  }

  #small_title {
    font-size: 5rem;
  }

  #slogan {
    font-size: 2.5vw;
  }

  #menu ul li a {
    font-size: 8rem;
  }

  .massage_bloc {
    margin: 3rem 10vw;
    padding: 1rem;
    line-height: 150%;
  }

  .massage_bloc p {
    border-top: 3px rgb(0, 0, 75) solid;
    padding-top: 1rem;
  }

  #tarifs {
    margin: 0 10vw;
    margin-bottom: 10rem;
  }

  #tarifs ul {
    font-size: 3rem;
    border-top: 3px rgb(0, 0, 75) solid;
  }

  #ou {
    font-size: 6rem;
  }

  #bon-description {
    line-height: 150%;
  }

  #images {
    flex-direction: row;
    justify-content: center;
    margin-bottom: 10rem;
  }

  #images img {
    height: 20rem;
    width: auto;
  }

  #qui_suis-je p {
    line-height: 150%;
  }

  footer p {
    font-size: 3rem;
  }

  .phone {
    font-size: 5rem;
  }

  iframe {
    display: block;
  }

  .images_pc {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 2rem;
    gap: 1rem;
  }

  .images_mobile {
    display: none;
  }

  #txtimg {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }

  .txtmobile {
    display: none;
  }
}
