/* ============================================================
   APÉROBEAUF — Thème "Bistrot beauf assumé"
   Palette : Jaune Pastis / Rouge bistrot / Bleu marin / Crème nappe
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --ab-yellow: #FFC72C;       /* Jaune Pastis */
  --ab-yellow-dark: #E5A800;
  --ab-red: #C8232C;          /* Rouge bistrot */
  --ab-red-dark: #9E1B23;
  --ab-blue: #1D3557;         /* Bleu marin */
  --ab-blue-dark: #112340;
  --ab-cream: #FBF7E8;        /* Crème nappe */
  --ab-cream-dark: #F0E8CC;
  --ab-charcoal: #2A2A2A;
  --ab-text: #2A2A2A;
}

/* Reset & base */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background-color: var(--ab-cream);
  color: var(--ab-text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5 {
  font-family: 'Anton', 'Impact', 'Oswald', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--ab-blue);
  line-height: 1.1;
}

a { color: var(--ab-red); text-decoration: none; }
a:hover { color: var(--ab-red-dark); text-decoration: underline; }
