/* ============================================================
   pages.css — styles pour About, Privacy, Legal
   ============================================================ */

/* ── NAVIGATION HEADER ── */
.header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.header-nav a {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.header-nav a:hover { color: var(--text); background: var(--s2); }
.header-nav a.active { color: var(--accent); background: var(--accent2); }

/* ── PAGE LAYOUT ── */
.page-main { flex: 1; padding: 0 44px; max-width: 860px; }

.page-hero {
  padding: 52px 0 36px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
}
.page-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
}
.page-intro {
  font-size: 15px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
}

/* ── CONTENT BLOCKS ── */
.page-content { padding-bottom: 80px; }

.content-block {
  margin-bottom: 52px;
}
.content-block h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.content-block p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 14px;
  font-weight: 300;
}
.content-block p:last-child { margin-bottom: 0; }
.content-block a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.content-block a:hover { opacity: 0.8; }
.content-block strong { font-weight: 500; color: var(--text); }

/* ── FEATURES GRID ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.feature-card {
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  transition: border-color 0.15s;
}
.feature-card:hover { border-color: var(--border2); }
.feature-icon { font-size: 24px; margin-bottom: 10px; }
.feature-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 0;
}

/* ── INFO TABLE ── */
.info-table {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 16px;
}
.info-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  border-bottom: 1px solid var(--border);
}
.info-row:last-child { border-bottom: none; }
.info-label {
  padding: 14px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--s1);
  border-right: 1px solid var(--border);
}
.info-value {
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text);
  font-weight: 300;
}
.info-value em { font-size: 11px; color: var(--muted); }

/* ── LANGUAGES LIST ── */
.langs-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 16px;
}
.langs-group {
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
}
.langs-group h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.langs-group p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ── RIGHTS LIST ── */
.rights-list {
  list-style: none;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rights-list li {
  font-size: 14px;
  color: var(--text);
  font-weight: 300;
  padding: 10px 14px;
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 8px;
  line-height: 1.5;
}
.rights-list li::before { content: "→ "; color: var(--accent); }

/* ── CONTACT ── */
.contact-email {
  font-size: 16px !important;
  font-weight: 400 !important;
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px !important;
  display: inline-block;
}
.contact-note {
  font-size: 12px !important;
  color: var(--muted) !important;
  font-style: italic;
}

/* ── FOOTER LINKS ── */
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
}
.footer-links a:hover { color: var(--text); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .page-main { padding-left: 20px; padding-right: 20px; }
  .info-row { grid-template-columns: 1fr; }
  .info-label { border-right: none; border-bottom: 1px solid var(--border); }
  .header-nav a { font-size: 12px; padding: 5px 8px; }
}
