/* ==========================================================================
   BASES DE STYLE - SOINS VISAGE YON-KA
   ========================================================================== */
html {
  scroll-behavior: smooth;
}

:root {
  --color-accent: #c49d79; /* Sable / Doré */
  --color-plum: #9a1c6a; /* Prune Mahana */
  --color-pink: #b82b70; /* Rose Mahana */
  --bg-light: #fdfbf7; /* Beige très clair */
  --text-dark: #1a1614;
  --text-muted: #666666;
  --border-light: rgba(0, 0, 0, 0.06);
}

.text-pink {
  color: var(--color-pink);
  font-style: italic;
  font-weight: normal;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* --- HERO SECTION --- */
.yonka-hero {
  padding: 160px 0 60px 0;
  text-align: center;
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border-light);
}

.yonka-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.scroll-down {
  animation: bounce 2s infinite;
  margin-top: 20px;
}

.scroll-down svg {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* --- INTRO PARAGRAPHES --- */
.yonka-intro {
  padding: 100px 0 80px 0;
  text-align: center;
  background-color: #ffffff;
}

.yonka-intro h2 {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  font-weight: 400;
  margin-bottom: 40px;
  color: var(--text-dark);
  line-height: 1.3;
}

.yonka-intro p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0 auto 20px auto;
  max-width: 850px;
}

.yonka-intro strong {
  color: var(--text-dark);
  font-weight: 500;
}

/* --- IMAGE COMPOSITION WITH LOGO --- */
.yonka-image-section {
  max-width: 1200px;
  margin: 0 auto 100px auto;
  padding: 0 40px;
}

.image-wrapper {
  position: relative;
  display: flex;
}

.image-wrapper img.main-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16 / 7;
}

.logo-overlay-box {
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
  background-color: #ffffff;
  padding: 40px 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border-light);
}

.logo-overlay-box img {
  width: 130px;
  display: block;
}

/* --- TITRES DE SECTIONS EDITORIALES --- */
.section-title-wrapper {
  text-align: center;
  margin-bottom: 60px;
}

.section-title-wrapper h3 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--text-dark);
  margin: 0 0 15px 0;
}

.section-title-wrapper .subtitle {
  font-family: "Roboto", sans-serif;
  font-size: 11px;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  display: block;
}

.section-title-wrapper .subtitle-bottom {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 5px;
}

/* --- LOGO SEPARATEUR DE DESIGN --- */
.logo-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 100px 0;
  width: 100%;
}

.logo-separator .line {
  flex-grow: 1;
  height: 1px;
  background-color: var(--border-light);
}

.logo-separator img {
  width: 110px;
  height: auto;
  padding: 0 30px;
  opacity: 0.5;
}

/* ==========================================================================
   ACCORDEONS DES SOINS (Style Lignes Épurées)
   ========================================================================== */
.accordion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 80px;
  align-items: start;
}

.accordion-col {
  display: flex;
  flex-direction: column;
}

.accordion-item {
  border-bottom: 1px solid var(--border-light);
}

.accordion-item:first-child {
  border-top: 1px solid var(--border-light);
}

.accordion-header {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 24px 0;
  font-family: "Playfair Display", serif;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dark);
  transition: color 0.3s;
}

.accordion-header:hover {
  color: var(--color-accent);
}

.accordion-icon {
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--color-accent);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- FICHE TECHNIQUE INTERNE DU SOIN --- */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
}

.soin-card {
  padding: 0 0 35px 0;
}

.soin-title {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.soin-desc {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.soin-video {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 15px;
  margin-bottom: 20px;
  background: var(--bg-light);
  padding: 10px 15px;
  border-left: 2px solid var(--color-accent);
}

.soin-video a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--text-dark);
}

.soin-video a:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.btn-reserve-soin {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--text-dark);
  color: #ffffff;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s;
  margin-top: 10px;
}

.btn-reserve-soin:hover {
  background-color: var(--color-accent);
  color: #ffffff;
}

/* --- MODULE SUBSCRIPTION AVANTAGES --- */
.soin-abonne {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px dashed var(--border-light);
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.icon-abonnement {
  width: 24px;
  height: auto;
  opacity: 0.7;
  margin-top: 2px;
}

.abonne-text span {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 17px;
  font-style: italic;
  color: var(--color-pink);
  font-weight: 500;
  margin-bottom: 5px;
}

.abonne-text p {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.abonne-text p a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--text-dark);
}

.abonne-text p a:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

/* ==========================================================================
   SECTION BIEN-ÊTRE (Style Épuré Grille de Luxe)
   ========================================================================== */
.bienetre-wrapper {
  background-color: var(--bg-light);
  padding: 120px 0;
  margin-top: 100px;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.bienetre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 60px;
}

.bienetre-card {
  background-color: #ffffff;
  padding: 60px 50px;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  transition: transform 0.4s ease;
}

.bienetre-card:hover {
  transform: translateY(-5px);
}

.bienetre-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--text-dark);
  margin: 0 0 10px 0;
}

.bienetre-card .duree {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-accent);
  margin-bottom: 30px;
}

.bienetre-card .price-huge {
  font-family: "Playfair Display", serif;
  font-size: 54px;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1;
  margin: 0 0 10px 0;
}

.bienetre-card .tarif-abonne {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  color: var(--color-pink);
  font-weight: 500;
  margin-bottom: 35px;
}

.bienetre-card p.desc {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 25px;
}

.bienetre-card .btn-outline {
  display: inline-block;
  border: 1px solid var(--text-dark);
  color: var(--text-dark);
  background-color: transparent;
  padding: 14px 40px;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s;
  align-self: center;
  margin-top: 20px;
}

.bienetre-card .btn-outline:hover {
  background-color: var(--text-dark);
  color: #ffffff;
}

/* ==========================================================================
   SCROLL TOP BUTTON
   ========================================================================== */
#myBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  width: 45px;
  height: 45px;
  border: 1px solid var(--border-light);
  background-color: #ffffff;
  color: var(--text-dark);
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

#myBtn:hover {
  background-color: var(--text-dark);
  color: #ffffff;
  border-color: var(--text-dark);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .accordion-grid,
  .bienetre-grid {
    gap: 40px;
  }
  .logo-overlay-box {
    left: -15px;
    padding: 30px;
  }
  .logo-overlay-box img {
    width: 100px;
  }
}

@media (max-width: 768px) {
  .container,
  .yonka-image-section {
    padding: 0 30px;
  }
  .accordion-grid,
  .bienetre-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .accordion-col:nth-child(2) .accordion-item:first-child {
    border-top: none;
  }
  .yonka-hero h1 {
    font-size: 42px;
  }
  .yonka-intro h2 {
    font-size: 30px;
  }
  .logo-separator img {
    padding: 0 15px;
    width: 90px;
  }
  .logo-overlay-box {
    display: none;
  }
  .bienetre-grid {
    gap: 30px;
  }
  .bienetre-card {
    padding: 40px 30px;
  }
  .yonka-hero,
  .yonka-intro,
  .bienetre-wrapper {
    padding: 80px 0;
  }
}
