@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700&family=Playfair+Display&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100..900&display=swap");
body {
  margin: 0;
  padding: 0;
  font-size: 62.5%;
  line-height: 1.5rem;
  font-family: "Lato", sans-serif; }
  body ul {
    list-style: none; }
  body p {
    font-weight: 300;
    font-size: 1.2rem;
    line-height: 1.8rem;
    font-weight: 300; }

/* Effet transition page */
body {
  transition: opacity 0.5s ease-in-out;
  /* Transition pour le fondu */ }

body.fade-out {
  opacity: 0;
  /* La page devient transparente */ }

/* Effet subtil droite-gauche */
@keyframes floatX {
  0%,
        100% {
    transform: translateX(0); }
  50% {
    transform: translateX(6px); } }
/* Effet au survol */
header {
  background: #FFF;
  position: fixed;
  top: 0rem;
  width: 100%;
  z-index: 99;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); }
  header .navbar-expand-lg .navbar-collapse {
    justify-content: flex-end; }
  header a {
    text-decoration: none;
    font-weight: bold;
    font-size: 1.8rem;
    color: #000;
    text-transform: none; }
  header nav {
    font-size: 1.1rem;
    line-height: 1.1rem;
    font-weight: 500;
    transition: all ease-in-out 0.8s;
    color: #000;
    text-transform: uppercase; }
  header .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
  header .navbar-light .navbar-nav .nav-link {
    color: #000 !important; }
    header .navbar-light .navbar-nav .nav-link:hover {
      color: #a100ff !important; }
  header .nav-link {
    margin-left: 1rem;
    transition: all ease-in-out 0.8s;
    color: #000 !important;
    line-height: 2rem;
    text-align: center; }

.banner-wrapper,
.banner-wrapper-soins {
  height: 43rem;
  background-image: linear-gradient(180deg, black 0%, rgba(0, 0, 0, 0.3) 68%), url("../img/banner1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  /* Effet de balancement horizontal subtil */
  /* Effet au survol */ }
  .banner-wrapper h1,
  .banner-wrapper-soins h1 {
    color: #FFF;
    font-size: 5em;
    line-height: 4rem;
    font-weight: 300;
    margin-bottom: 2rem;
    font-weight: 600; }
  .banner-wrapper a,
  .banner-wrapper-soins a {
    color: #FFF;
    font-size: 1.2rem;
    line-height: 2.5rem;
    font-family: "Lato", sans-serif;
    text-align: center;
    background: #EB5B62;
    text-decoration: none;
    padding: 0.3rem 1.5rem;
    border-radius: 35px;
    font-weight: 500;
    padding-bottom: 1rem !important;
    transition: background 0.3s ease, transform 0.3s ease;
    display: inline-block;
    animation: subtleSwing 3s ease-in-out infinite;
    /* 🔹 ajout de l'effet */ }
@keyframes subtleSwing {
  0%,
            100% {
    transform: translateX(0); }
  50% {
    transform: translateX(6px); } }
  .banner-wrapper a:hover,
  .banner-wrapper-soins a:hover {
    background: #5D3124;
    transform: scale(1.05);
    animation-play-state: paused;
    /* le mouvement s’arrête au survol */ }
  .banner-wrapper .banner-wrapper-content,
  .banner-wrapper-soins .banner-wrapper-content {
    height: 43rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    text-align: center;
    color: #FFF; }

.prestation-wrapper {
  position: relative;
  padding: 7rem 0;
  /* Viewport pour positionner les flèches */
  /* Rail défilant */
  /* Carte élément */
  /* Boutons nav */
  /* Desktop : n’afficher les flèches bien visibles que si souris */
  /* Petits écrans : cartes plus larges, flèches compactes */
  /* Respecte préférence accessibilité */ }
  .prestation-wrapper h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
    color: #3c2d1e; }
  .prestation-wrapper p {
    margin-top: 0.5rem;
    font-size: 1.1rem;
    line-height: 2rem;
    font-weight: 400;
    color: #333; }
  .prestation-wrapper .intro-massage {
    font-size: 1.3rem !important; }
  .prestation-wrapper .prestation-viewport {
    position: relative; }
  .prestation-wrapper .prestation-scroll {
    display: flex;
    gap: clamp(1rem, 3vw, 2.5rem);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    padding: 2rem 1rem;
    /* >>> Masquer la barre de scroll mais garder le défilement <<< */
    /* Firefox */
    scrollbar-width: none;
    /* Safari, Chrome, Edge */ }
    .prestation-wrapper .prestation-scroll::-webkit-scrollbar {
      display: none; }
  .prestation-wrapper .prestation-item {
    flex: 0 0 auto;
    width: clamp(140px, 22vw, 200px);
    text-align: center;
    scroll-snap-align: start; }
    .prestation-wrapper .prestation-item img {
      width: 100%;
      height: auto;
      border-radius: 12px;
      transition: transform .3s ease;
      display: block; }
      .prestation-wrapper .prestation-item img:hover {
        transform: scale(1.04); }
    .prestation-wrapper .prestation-item p {
      margin-top: 0.75rem;
      line-height: 1.3;
      font-weight: 700;
      color: #3c2d1e; }
  .prestation-wrapper .prestation-nav {
    pointer-events: none;
    /* laisse passer le scroll tactile */
    position: absolute;
    inset: 0; }
    .prestation-wrapper .prestation-nav .nav-btn {
      pointer-events: auto;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      border-radius: 9999px;
      border: 1px solid rgba(0, 0, 0, 0.08);
      background: rgba(255, 255, 255, 0.9);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
      display: grid;
      place-items: center;
      cursor: pointer;
      transition: opacity .2s ease, transform .2s ease;
      backdrop-filter: blur(6px);
      /* Icône flèche minimaliste */ }
      .prestation-wrapper .prestation-nav .nav-btn:hover {
        transform: translateY(-50%) scale(1.05); }
      .prestation-wrapper .prestation-nav .nav-btn:disabled {
        opacity: .35;
        cursor: default; }
      .prestation-wrapper .prestation-nav .nav-btn svg {
        width: 18px;
        height: 18px; }
    .prestation-wrapper .prestation-nav .nav-prev {
      left: 0.25rem; }
    .prestation-wrapper .prestation-nav .nav-next {
      right: 0.25rem; }
  .prestation-wrapper .tarifs a {
    color: #FFF;
    font-size: 1.2rem;
    line-height: 2.5rem;
    font-family: "Lato", sans-serif;
    text-align: center;
    background: #EB5B62;
    text-decoration: none;
    padding: 0.3rem 1.5rem;
    border-radius: 35px;
    font-weight: 500;
    padding-bottom: 1rem !important;
    transition: background 0.3s ease, transform 0.3s ease;
    display: inline-block;
    animation: subtleSwing 3s ease-in-out infinite;
    /* 🔹 ajout de l'effet */ }
  .prestation-wrapper .modal-body {
    padding: 1rem 2rem; }
    .prestation-wrapper .modal-body ul {
      font-size: 1.2rem !important;
      line-height: 2.2rem; }
    .prestation-wrapper .modal-body b {
      font-size: 1rem;
      line-height: .6rem;
      font-weight: 400; }
    .prestation-wrapper .modal-body strong {
      color: #EB5B62; }
  .prestation-wrapper h5 {
    font-size: 1.7rem; }
  @media (hover: hover) and (pointer: fine) {
    .prestation-wrapper .prestation-nav .nav-btn {
      opacity: 0; }
    .prestation-wrapper .prestation-viewport:hover .nav-btn {
      opacity: 1; } }
  @media (max-width: 576px) {
    .prestation-wrapper .prestation-scroll {
      padding: 1rem .5rem; }
    .prestation-wrapper .prestation-item {
      width: clamp(140px, 46vw, 180px); }
    .prestation-wrapper .prestation-nav .nav-btn {
      width: 38px;
      height: 38px;
      background: rgba(255, 255, 255, 0.95); } }
  @media (prefers-reduced-motion: reduce) {
    .prestation-wrapper .prestation-scroll {
      scroll-behavior: auto; }
    .prestation-wrapper .prestation-item img {
      transition: none; }
    .prestation-wrapper .prestation-nav .nav-btn {
      transition: none; } }

.art-toucher-wrapper {
  padding: 7rem 0; }
  .art-toucher-wrapper h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center; }

.presentation-wrapper {
  padding: 7rem 0;
  background: #fffbf5;
  color: #3c2d1e; }
  .presentation-wrapper h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    color: #3b2a1c;
    position: relative; }
  .presentation-wrapper p {
    line-height: 1.5;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #4a3b2a;
    font-weight: 300; }
  .presentation-wrapper .presentation-image {
    width: 100%;
    height: 460px;
    background-image: url("assets/img/presentation.jpg");
    background-size: cover;
    background-position: center;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); }
  .presentation-wrapper .presentation-quote blockquote {
    margin: 0;
    font-size: 1.1rem; }
  .presentation-wrapper .presentation-quote figcaption {
    margin-top: 0.5rem;
    font-weight: 600;
    color: #EB5B62;
    font-size: 1rem; }
  @media (max-width: 768px) {
    .presentation-wrapper .presentation-image {
      height: 300px; }
    .presentation-wrapper .presentation-quote {
      font-size: 0.95rem; } }

.avis-clients-wrapper {
  padding: 7rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf3 100%);
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  /* Animation fluide et centrage vertical */
  /* Indicateurs */
  /* Flèches */ }
  .avis-clients-wrapper h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    color: #3c2d1e; }
  .avis-clients-wrapper .avis-slide {
    min-height: clamp(200px, 24vw, 280px);
    padding: clamp(1rem, 2vw, 1.5rem);
    background: #FFF;
    border: 50px; }
  .avis-clients-wrapper .avis-card {
    max-width: 800px;
    color: #4a3b2a; }
  .avis-clients-wrapper .avis-quote {
    margin: 0 auto 1rem;
    max-width: 62ch;
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    line-height: 1.7;
    font-style: italic;
    color: #3e2f1f;
    position: relative;
    padding: 0.25rem 0.75rem;
    transition: all 0.6s ease-in-out; }
    .avis-clients-wrapper .avis-quote b {
      font-size: 0.8rem !important;
      color: #EB5B62; }
  .avis-clients-wrapper .avis-quote::before,
  .avis-clients-wrapper .avis-quote::after {
    position: absolute;
    color: rgba(166, 118, 59, 0.28);
    font-size: 1.8rem;
    line-height: 1; }
  .avis-clients-wrapper .avis-quote::before {
    content: "«";
    left: -0.4rem;
    top: -0.4rem; }
  .avis-clients-wrapper .avis-quote::after {
    content: "»";
    right: -0.4rem;
    bottom: -0.6rem; }
  .avis-clients-wrapper .avis-author {
    font-weight: 600;
    color: #a6763b;
    font-size: 1rem; }
  .avis-clients-wrapper .carousel-indicators {
    margin-top: 2rem;
    bottom: -13px; }
    .avis-clients-wrapper .carousel-indicators button {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background-color: #d9c7ac;
      opacity: 1;
      transition: background-color 0.3s ease, transform 0.3s ease; }
    .avis-clients-wrapper .carousel-indicators .active {
      background-color: #EB5B62;
      transform: scale(1.25); }
  .avis-clients-wrapper .carousel-control-prev-icon,
  .avis-clients-wrapper .carousel-control-next-icon {
    filter: invert(40%) sepia(25%) saturate(300%) hue-rotate(340deg);
    display: none; }
  .avis-clients-wrapper .carousel-control-prev,
  .avis-clients-wrapper .carousel-control-next {
    opacity: 0.65;
    transition: opacity 0.25s; }
    .avis-clients-wrapper .carousel-control-prev:hover,
    .avis-clients-wrapper .carousel-control-next:hover {
      opacity: 1; }
  @media (max-width: 576px) {
    .avis-clients-wrapper .avis-slide {
      min-height: clamp(220px, 36vw, 320px); }
    .avis-clients-wrapper .avis-card {
      max-width: 92%; } }

.contact {
  padding: 7rem 0;
  background: #EB5B62; }

@media (max-width: 768px) {
  .banner-wrapper,
  .banner-wrapper-soins {
    background-attachment: scroll; } }
.contact-wrapper {
  background: #4a3b2a;
  /* Variable définie dans votre SCSS */
  padding: 4rem 0 5rem 0 !important;
  text-align: center; }
  .contact-wrapper h2 {
    font-family: "Lato", sans-serif;
    font-optical-sizing: auto;
    font-size: 1.8rem;
    padding-bottom: 1rem;
    color: #FFF; }
  .contact-wrapper p {
    font-family: "Lato", sans-serif;
    font-size: 1rem;
    line-height: 1.4rem;
    margin: 0 1rem 2rem 1rem;
    color: #FFF; }
  .contact-wrapper .contact-form {
    padding: 2rem; }
    .contact-wrapper .contact-form .form-label {
      font-weight: bold;
      color: #333; }
    .contact-wrapper .contact-form .form-control {
      border-radius: 35px;
      padding: 0.8rem 1rem;
      border: 1px solid #ddd; }
      .contact-wrapper .contact-form .form-control:focus {
        border-color: #935500;
        box-shadow: 0 0 5px rgba(147, 85, 0, 0.5); }
    .contact-wrapper .contact-form .btn {
      background-color: #EB5B62;
      border: none;
      color: #fff;
      padding: 0.8rem 1.5rem;
      font-size: 1rem;
      text-transform: uppercase;
      border-radius: 35px;
      transition: all 0.3s ease; }
      .contact-wrapper .contact-form .btn:hover {
        background-color: #85520e; }
  .contact-wrapper #thankYouMessage {
    display: none;
    margin-top: 1rem; }
    .contact-wrapper #thankYouMessage p {
      font-family: "Lato", sans-serif;
      font-size: 1rem;
      line-height: 1.4rem;
      margin: 0 1rem 2rem 1rem;
      color: #FFF; }
  .contact-wrapper .invalid-feedback {
    font-size: .8rem;
    color: #FFF;
    font-weight: 300; }

footer {
  background: #1f170f;
  padding: 5rem 0 5rem 0; }
  footer p {
    font-family: "Lato", sans-serif;
    font-size: 1rem;
    line-height: 1.4rem;
    margin: 1rem 0 0 0;
    padding: 0;
    color: #FFF; }
  footer ul {
    padding: 0;
    margin: 0; }
  footer li {
    color: #FFF;
    font-size: 1rem;
    font-weight: 300; }
    footer li a {
      text-decoration: none !important;
      color: #FFF; }
  footer .contact-footer li,
  footer .apropos-footer li {
    text-decoration: none; }
    footer .contact-footer li:first-child,
    footer .apropos-footer li:first-child {
      font-family: "Lato", sans-serif;
      font-size: 1.3rem;
      line-height: 1.8rem;
      margin-bottom: .3rem; }

/**END RESPONSIVE largeMOBILE****************************/
/**START RESPONSIVE TABLET****************************/
@media (min-width: 768px) {
  .nav-link {
    margin-left: 1rem;
    transition: all ease-in-out 0.8s;
    color: #FFF !important; }

  .banner-wrapper .banner-wrapper-content {
    height: 43rem; }
  .banner-wrapper h1 {
    color: #FFF;
    font-size: 3rem;
    line-height: 5rem;
    font-weight: 600; }
  .banner-wrapper h2 {
    font-family: "Lato", sans-serif;
    font-optical-sizing: auto;
    font-size: 2.5rem;
    padding-bottom: 4rem; }
    .banner-wrapper h2:before {
      content: url("../img/soleil.svg");
      position: relative;
      left: -5px;
      top: 18px; }

  .contact-wrapper {
    background: #4a3b2a;
    padding: 6rem 0 12rem 0; }
    .contact-wrapper h2 {
      font-family: "Lato", sans-serif;
      font-optical-sizing: auto;
      font-size: 2.7rem;
      padding-bottom: 1rem;
      padding-left: 1.7rem; }
      .contact-wrapper h2:before {
        content: url("../img/soleil.svg");
        position: relative;
        left: -15px;
        top: 18px;
        display: inline-block;
        animation: spin 30s linear infinite;
        transform-origin: center center; }
    .contact-wrapper p {
      font-family: "Lato", sans-serif;
      font-size: 1rem;
      line-height: 1.4rem;
      margin: 0 1rem 2rem 1rem;
      color: #FFF; }
    .contact-wrapper a {
      padding: 0;
      margin-left: 1rem;
      color: #FFF;
      border: 1px solid #FFF;
      font-size: .9rem;
      text-decoration: none;
      border-radius: 35px;
      text-transform: uppercase;
      padding: .8rem 1rem; }

  footer {
    background: #1f170f;
    padding: 2rem 0; }
    footer p {
      font-family: "Lato", sans-serif;
      font-size: 1rem;
      line-height: 1.4rem;
      margin: 1rem 0 0 0;
      padding: 0;
      color: #FFF; }
    footer ul li {
      color: #FFF;
      font-size: .9rem;
      font-weight: 100;
      padding: 0; }
    footer .contact-footer li:first-child,
    footer .apropos-footer li:first-child {
      font-family: "Lato", sans-serif;
      font-size: 1.3rem;
      line-height: 1.8rem;
      margin-bottom: .3rem; } }
/**END RESPONSIVE LARGE****************************/
/**START RESPONSIVE XLARGE****************************/
@media (min-width: 1200px) {
  .banner-wrapper h1 {
    color: #FFF;
    font-size: 4rem;
    line-height: 5rem;
    font-weight: 600; } }
/**END RESPONSIVE XLARGE****************************/
/**START RESPONSIVE XXLARGE****************************/
/**END RESPONSIVE XXLARGE****************************/

/*# sourceMappingURL=style.css.map */
