/* Variables et reset minimal */
:root {
  --bg: #f7f7f8;
  --surface: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --primary: #0d6efd;
}

html, body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  background-color: var(--bg);
  color: var(--text);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.site-wrapper { min-height: 100%; display: flex; flex-direction: column; }
.page-container { max-width: 1200px; margin: 0 auto; padding: 24px; }

/* Navbar */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px;
}
.nav-left { display: flex; align-items: center; }
.nav-brand { color: var(--text); text-decoration: none; font-weight: 600; }
.nav-right { display: flex; gap: 10px; flex-wrap: wrap; }
.nav-link { color: var(--muted); text-decoration: none; padding: 6px 8px; border-radius: 6px; }
.nav-link:hover { color: var(--text); background: #f2f4f7; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); background: var(--surface); }
.footer-text { max-width: 1200px; margin: 0 auto; padding: 16px 24px; color: var(--muted); font-size: 0.9rem; }

/* Hero et cartes (pour l’accueil) */
/* Hero retiré — conserver une DA sobre et neutre */

/* Cartes */
.card { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 12px; }
.card-title { font-weight: 600; margin-bottom: 6px; }
.card-muted { color: var(--muted); font-size: 0.9rem; }
