/* massages.css
   Dépend de : main.css (page-hero, intro-section, note-section, btn-rdv, btn-contact)
   Styles propres à cette page uniquement.
============================================================ */

/* Couleur de fond du hero spécifique à cette page */
.page-hero-bg {
  background: linear-gradient(135deg, #0d0d0d, #1a1a0e, #0a0d0a);
}

/* ============================================================
   INTRO — L'ART DU TOUCHER
============================================================ */
/* .intro-section et .intro-body sont dans main.css */

/* max-width propre à cette page */
.intro-section {
  max-width: 1400px;
}
.intro-body {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  max-width: 1200px;
}

.intro-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-dim);
  border-left: 2px solid var(--gold);
  padding-left: 1.8rem;
  text-align: left;
  margin-top: 3rem;
  line-height: 1.9;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   MASSAGES GRID
============================================================ */
.massages-section {
  padding: 3rem 4% 5rem;
  max-width: 1600px;
  margin: 0 auto;
}

.massages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid rgba(63, 42, 29, 0.1);
  margin-top: 3rem;
}

.massage-card {
  background: rgba(255, 255, 255, 0.015);
  padding: 2.8rem 2.6rem;
  border-right: 1px solid rgba(63, 42, 29, 0.1);
  transition: background 0.35s;
  display: flex;
  flex-direction: column;
}
.massage-card:nth-child(3n) { border-right: none; }
.massage-card:nth-child(n + 4) { border-top: 1px solid rgba(63, 42, 29, 0.1); }
.massage-card:hover { background: rgba(63, 42, 29, 0.04); }

.massage-card-icon { display: none; }

.massage-card-img {
  width: calc(100% + 5.2rem);
  height: 200px;
  overflow: hidden;
  margin-left: -2.6rem;
  margin-top: -2.8rem;
  margin-bottom: 1.4rem;
}
.massage-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.feet img {
  height: 260px;
  object-position: center 30%;
}
.massage-card:hover .massage-card-img img {
  transform: scale(1.04);
}

.massage-card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 0.4rem;
  line-height: 1.25;
}
.massage-card-duration {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.1rem;
}
.massage-card-sep {
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 1.1rem;
}
.massage-card-desc {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 2;
  color: var(--text-dim);
  flex: 1;
  margin-bottom: 1.4rem;
}
.massage-card-desc ul {
  list-style: none;
  margin-top: 0.6rem;
}
.massage-card-desc ul li {
  padding: 0.25rem 0 0.25rem 1.2rem;
  position: relative;
  font-size: 1.2rem;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  color: var(--text-dim);
  line-height: 2;
}
.massage-card-desc ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}
.massage-card-note {
  font-size: 0.68rem;
  color: var(--sage);
  font-style: italic;
  margin-bottom: 1.2rem;
}
.massage-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(63, 42, 29, 0.08);
  gap: 0.6rem;
  flex-wrap: wrap;
}
.massage-card-prices {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.massage-card-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
}
.massage-card-price span {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--text-dim);
}

/* .btn-rdv → main.css */
.massage-card-footer .btn-rdv {
  white-space: nowrap;
  flex-shrink: 0;
  padding: 0.8rem 1.6rem;
}

/* note-section / note-box / btn-contact → main.css */
/* Surcharge spécifique : text-align left sur note-box-text */
.note-box-text {
  text-align: left;
}

/* ============================================================
   RESPONSIVE — massages.css
============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .intro-section    { padding: 5rem 6% 3rem; }
  .massages-section { padding: 3rem 4% 4rem; }

  .massages-grid { grid-template-columns: repeat(2, 1fr); }
  .massage-card:nth-child(3n) { border-right: 1px solid rgba(63, 42, 29, 0.1); }
  .massage-card:nth-child(2n) { border-right: none; }
  .massage-card:nth-child(n + 4) { border-top: none; }
  .massage-card:nth-child(n + 3) { border-top: 1px solid rgba(63, 42, 29, 0.1); }
}

/* Mobile */
@media (max-width: 768px) {
  .intro-quote {
    margin-top: 2rem;
    padding-left: 1.2rem;
    font-size: clamp(1.25rem, 3.5vw, 1.1rem);
  }

  .massages-section { padding: 2.5rem 5% 3.5rem; }
  .massages-grid {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }
  .massage-card:nth-child(3n),
  .massage-card:nth-child(2n) { border-right: none; }
  .massage-card:nth-child(n + 3),
  .massage-card:nth-child(n + 4) { border-top: none; }
  .massage-card:nth-child(n + 2) { border-top: 1px solid rgba(63, 42, 29, 0.1); }

  .massage-card { padding: 2rem 1.6rem; }
  .massage-card-img {
    margin-left: -1.6rem;
    margin-top: -2rem;
    width: calc(100% + 3.2rem);
    height: 220px;
  }
  .feet img { height: 220px; }
  .massage-card-title { font-size: 1.87rem; }
  .massage-card-desc  { font-size: 1.51rem; line-height: 1.85; }
  .massage-card-desc ul li { font-size: 1.51rem; }
  .massage-card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* Petit mobile */
@media (max-width: 480px) {
  .massage-card-img   { height: 180px; }
  .massage-card-price { font-size: 2.16rem; }
}
