/* ===========================================
   SPORTING BISANZIO — SHARED STYLES
   Palette unificata, importata in tutte le pagine
   =========================================== */

:root {
  /* Granata / Oro — palette ufficiale */
  --granata: #7A1F2B;
  --granata-dark: #4A1018;
  --granata-deep: #2A0810;
  --oro: #E8B547;
  --oro-light: #F5D27A;
  --oro-dim: #7a5e20;

  /* Fondo */
  --bg: #0B0608;
  --bg-panel: #15090C;
  --bg-panel-light: #1E0E12;

  /* Testo */
  --text: #F5E6C8;
  --text-muted: #8B7560;
  --cream: #f2e8d5;

  /* Bordi */
  --border: rgba(232, 181, 71, 0.25);
  --border-active: rgba(232, 181, 71, 0.7);

  /* Layout */
  --navbar-height: 64px;
  --footer-height: 80px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-tap-highlight-color: transparent; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* Layout helper: padding top per la navbar fixed */
.has-navbar { padding-top: var(--navbar-height); }
