/* =========================================
   RVSA Consulting – privacy.css
   Style de la politique de confidentialité
   ========================================= */

.privacy-page {
  max-width: 900px;
  margin: 3rem auto;
  padding: 2.5rem 2rem;
  background: color-mix(in oklab, var(--card) 96%, transparent);
  border: 1px solid color-mix(in oklab, var(--text) 10%, transparent);
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
  backdrop-filter: blur(4px);
}

/* Titre principal */
.privacy-page h1 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text);
}

/* Date de mise à jour */
.privacy-page .updated {
  text-align: center;
  color: var(--muted);
  margin-bottom: 2.8rem;
  font-size: 1rem;
}

/* Titres des sections */
.privacy-page h2 {
  font-size: 1.6rem;
  margin-top: 2.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--accent-2);
}

/* Paragraphes */
.privacy-page p {
  color: var(--text);
  opacity: 0.9;
  line-height: 1.65;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

/* Liens */
.privacy-page a {
  color: var(--accent-2);
  text-decoration: none;
}

.privacy-page a:hover {
  text-decoration: underline;
}

/* Signature */
.privacy-signature {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.privacy-page .legal-link {
  margin-top: 2rem;
  color: var(--muted);
  text-align: center;
  font-size: 1.05rem;
}

.privacy-page .legal-link a {
  color: var(--accent-2);
  font-weight: 600;
  text-decoration: none;
}

.privacy-page .legal-link a:hover {
  text-decoration: underline;
}


/* Responsive */
@media (max-width: 700px) {
  .privacy-page {
    padding: 2rem 1.4rem;
  }

  .privacy-page h1 {
    font-size: 2rem;
  }

  .privacy-page h2 {
    font-size: 1.35rem;
  }

  .privacy-page p {
    font-size: 1rem;
  }
}
