/* =================================================================
   PAGES LÉGALES VENTACTIV — Feuille de style partagée
   Utilisée par cgv.html, mentions-legales.html, confidentialite.html
   Préfixe .cgv- conservé pour ne rien casser sur cgv.html existant
   Palette : marine #0B1E3F, crème #FAF6EE, cuivre #B8935A
   ================================================================= */

.page-cgv {
  --cgv-marine: #0B1E3F;
  --cgv-creme: #FAF6EE;
  --cgv-cuivre: #B8935A;
  --cgv-anthracite: #1C2028;
  --cgv-texte: #2A3142;
  --cgv-texte-clair: #5A6275;
  --cgv-bordure: rgba(11, 30, 63, 0.12);

  background: var(--cgv-creme);
  color: var(--cgv-texte);
  font-family: 'Figtree', system-ui, -apple-system, sans-serif;
}

/* ============ MAIN CONTAINER ============ */
.cgv-main {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

/* ============ HERO ============ */
.cgv-hero {
  padding: 64px 0 40px;
  border-bottom: 1px solid var(--cgv-bordure);
  margin-bottom: 48px;
}

.cgv-hero__inner {
  text-align: left;
}

.cgv-hero__eyebrow {
  font-family: 'Figtree', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cgv-cuivre);
  margin: 0 0 12px 0;
  font-weight: 600;
}

.cgv-hero__title {
  font-family: 'Libre Caslon Text', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  color: var(--cgv-marine);
  margin: 0 0 16px 0;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.cgv-hero__meta {
  font-size: 0.9rem;
  color: var(--cgv-texte-clair);
  font-style: italic;
  margin: 0;
}

/* ============ SOMMAIRE (uniquement CGV) ============ */
.cgv-toc {
  background: rgba(11, 30, 63, 0.03);
  border-left: 3px solid var(--cgv-cuivre);
  padding: 28px 32px;
  margin-bottom: 64px;
  border-radius: 2px;
}

.cgv-toc__title {
  font-family: 'Libre Caslon Text', Georgia, serif;
  font-size: 1.1rem;
  color: var(--cgv-marine);
  margin: 0 0 16px 0;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.cgv-toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 32px;
  font-size: 0.875rem;
}

.cgv-toc__list li {
  margin: 0 0 6px 0;
  break-inside: avoid;
}

.cgv-toc__list a {
  color: var(--cgv-texte);
  text-decoration: none;
  transition: color 0.2s ease;
}

.cgv-toc__list a:hover {
  color: var(--cgv-cuivre);
}

@media (max-width: 640px) {
  .cgv-toc__list { columns: 1; }
  .cgv-toc { padding: 20px 22px; }
}

/* ============ ARTICLES ============ */
.cgv-content {
  scroll-padding-top: 80px;
}

.cgv-article {
  margin-bottom: 48px;
  scroll-margin-top: 80px;
}

.cgv-article h2 {
  font-family: 'Libre Caslon Text', Georgia, serif;
  font-size: 1.4rem;
  color: var(--cgv-marine);
  font-weight: 400;
  margin: 0 0 18px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--cgv-cuivre);
  letter-spacing: 0.005em;
}

.cgv-article h3 {
  font-family: 'Figtree', sans-serif;
  font-size: 1rem;
  color: var(--cgv-marine);
  font-weight: 600;
  margin: 24px 0 10px 0;
  letter-spacing: 0.01em;
}

.cgv-article p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--cgv-texte);
  margin: 0 0 14px 0;
  text-align: justify;
  hyphens: auto;
}

/* Listes dans les articles (ajouté pour confidentialite.html) */
.cgv-article ul {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--cgv-texte);
  padding-left: 24px;
  margin: 0 0 14px 0;
  list-style: none;
}

.cgv-article ul li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
  text-align: justify;
  hyphens: auto;
}

.cgv-article ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 1px;
  background: var(--cgv-cuivre);
}

.cgv-article strong {
  color: var(--cgv-marine);
  font-weight: 600;
}

.cgv-article a {
  color: var(--cgv-cuivre);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

.cgv-article a:hover {
  color: var(--cgv-marine);
}

/* ============ DOWNLOAD CTA (uniquement CGV) ============ */
.cgv-download {
  text-align: center;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--cgv-bordure);
}

.cgv-download__link {
  display: inline-block;
  padding: 14px 32px;
  background: var(--cgv-marine);
  color: var(--cgv-creme);
  text-decoration: none;
  font-family: 'Figtree', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--cgv-marine);
  transition: all 0.25s ease;
}

.cgv-download__link:hover {
  background: var(--cgv-cuivre);
  border-color: var(--cgv-cuivre);
  color: var(--cgv-creme);
}

/* ============ IMPRESSION ============ */
@media print {
  .page-cgv { background: white; color: black; }
  .cgv-toc, .cgv-download { display: none; }
  .cgv-article h2 { page-break-after: avoid; color: black; border-color: #B8935A; }
  .cgv-article p, .cgv-article ul { font-size: 10pt; line-height: 1.45; }
  .cgv-article { margin-bottom: 24px; }
  .cgv-hero { padding-top: 0; }
  a { color: black; text-decoration: none; }
}
