/* ============================================
   PRIVACY PAGE STYLES - VISUDEN
   Styles pour la page de confidentialité
   Texte blanc sur fond noir
   ============================================ */

/* Variables CSS (à adapter selon vos variables globales) */
:root {
    --bg-dark: #0a0a0a;
    --bg-card: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #808080;
    --accent: #6366f1;
    --accent-hover: #818cf8;
    --radius-lg: 16px;
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  }
  
.hero{
    display: none !important;
}
  
  .legal-page {
    background: var(--bg-dark);
    padding: 80px 16px;
    min-height: 100vh;
  }
  
  .legal-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-card);
  }
  
  /* ============================================
     TYPOGRAPHIE
     ============================================ */
  
  .legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
  }
  
  .legal-container h2 {
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
  }
  
  .legal-container p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
  }
  
  .legal-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.8;
  }
  
  /* ============================================
     LIENS
     ============================================ */
  
  .legal-container a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s ease, text-decoration 0.2s ease;
  }
  
  .legal-container a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
  }
  
  .legal-container a:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 2px;
  }
  
  /* ============================================
     LISTES
     ============================================ */
  
  .legal-container ul {
    list-style: none;
    margin: 16px 0;
    padding-left: 0;
  }
  
  .legal-container ul li {
    color: var(--text-secondary);
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
    line-height: 1.7;
  }
  
  .legal-container ul li:before {
    content: "•";
    color: var(--accent);
    position: absolute;
    left: 8px;
    font-weight: bold;
    font-size: 1.2em;
  }
  
  /* ============================================
     ÉLÉMENTS SPÉCIAUX
     ============================================ */
  
  .legal-container strong {
    color: var(--text-primary);
    font-weight: 600;
  }
  
  .highlight {
    color: var(--accent);
    font-weight: 500;
  }
  
  .legal-update {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--text-muted);
  }
  
  /* ============================================
     RESPONSIVE DESIGN
     ============================================ */
  
  /* Tablettes */
  @media (max-width: 768px) {
    .legal-page {
      padding: 40px 16px;
    }
  
    .legal-container {
      padding: 32px 24px;
      border-radius: 12px;
    }
  
    .legal-container h1 {
      font-size: 2rem;
    }
  
    .legal-container h2 {
      font-size: 1.3rem;
      margin-top: 24px;
    }
  
    .legal-intro {
      font-size: 1rem;
    }
  
    .legal-container ul li {
      padding-left: 20px;
    }
  
    .legal-container ul li:before {
      left: 6px;
    }
  }
  
  /* Mobiles */
  @media (max-width: 480px) {
    .legal-page {
      padding: 24px 12px;
    }
  
    .legal-container {
      padding: 24px 16px;
    }
  
    .legal-container h1 {
      font-size: 1.75rem;
    }
  
    .legal-container h2 {
      font-size: 1.2rem;
    }
  }
  
  /* ============================================
     SUPPORT RTL (Arabe, Hébreu)
     ============================================ */
  
  [dir="rtl"] .legal-container ul li {
    padding-left: 0;
    padding-right: 24px;
  }
  
  [dir="rtl"] .legal-container ul li:before {
    left: auto;
    right: 8px;
  }
  
  /* ============================================
     STYLES D'IMPRESSION
     ============================================ */
  
  @media print {
    .legal-page {
      padding: 20px;
      background: white;
    }
  
    .legal-container {
      box-shadow: none;
      padding: 0;
      background: white;
    }
  
    .legal-container h1,
    .legal-container h2,
    .legal-container p,
    .legal-container strong {
      color: black !important;
    }
  
    .legal-container a {
      color: #0066cc !important;
      text-decoration: underline;
    }
  
    .legal-container ul li:before {
      color: #000 !important;
    }
  }