/* ============================================================
   pages.css — Style des pages interieures (CGU, Mentions legales)
   ============================================================ */

.page-container {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 2rem 6rem;
  animation: fadeIn 0.8s ease both;
}

.back-link {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 2.5rem;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--gold);
}

.page-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 400;
  color: var(--gold-pale);
  margin-bottom: 1.5rem;
}

.page-section {
  margin-top: 2.5rem;
}

.page-section h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.page-section p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.8;
  margin-bottom: 0.5rem;
  opacity: 0.85;
}

.page-section strong {
  font-weight: 400;
  color: var(--gold-pale);
}