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

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

/* Taille de titre légèrement plus grande sur cette page */
.page-hero-title {
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.05;
}

/* ============================================================
   CATÉGORIES & TABLEAUX
============================================================ */
.cat-section {
  padding: 2rem 8% 4rem;
  max-width: 1500px;
  margin: 0 auto;
}
.cat-header {
  margin-bottom: 2.5rem;
}
.cat-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--cream);
  margin-bottom: 0.8rem;
}
.cat-title em {
  font-style: italic;
  color: var(--gold);
}
.cat-sep {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.forfaits-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(63, 42, 29, 0.1);
}
.forfaits-table thead tr {
  border-bottom: 1px solid rgba(63, 42, 29, 0.2);
}
.forfaits-table th {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 1.2rem 1.8rem;
  text-align: left;
  background: rgba(63, 42, 29, 0.04);
}
.forfaits-table th:last-child {
  text-align: right;
}
.forfaits-table tbody tr {
  border-bottom: 1px solid rgba(63, 42, 29, 0.07);
  transition: background 0.3s;
}
.forfaits-table tbody tr:last-child {
  border-bottom: none;
}
.forfaits-table tbody tr:hover {
  background: rgba(63, 42, 29, 0.04);
}
.forfaits-table td {
  padding: 1.6rem 1.8rem;
  vertical-align: middle;
}

.td-soin {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.04em;
}
.td-detail {
  font-size: 1rem;
  font-weight: 500;
  color: var(--sage);
  margin-top: 0.3rem;
  letter-spacing: 0.04em;
}
.td-unitaire {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dim);
  white-space: nowrap;
}
.td-forfait {
  text-align: right;
  white-space: nowrap;
}
.td-prix {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--gold);
}
.td-eco {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--sage);
  display: block;
  margin-top: 0.2rem;
  text-decoration: line-through;
  opacity: 0.7;
}

/* note-section / note-box / btn-contact → main.css */
/* Surcharge padding note-section spécifique à cette page */
.note-section {
  padding: 2rem 5% 7rem;
}

/* ============================================================
   RESPONSIVE — forfaits.css
============================================================ */

/* Mobile */
@media (max-width: 768px) {
  .forfaits-table {
    font-size: 1.23rem;
  }
  .forfaits-table th,
  .forfaits-table td {
    padding: 1rem;
  }
  .td-prix {
    font-size: 2.01rem;
  }
}

@media (max-width: 480px) {
  /* Masquer la colonne prix unitaire sur très petit écran */
  .forfaits-table th:nth-child(2),
  .forfaits-table td:nth-child(2) {
    display: none;
  }
}
