/* ============================================================
   STR‑systems — Design System (ROOT)
   ============================================================ */

/* ------------------------------
   VARIABILI GLOBALI
------------------------------ */
:root {
    /* Palette primaria */
    --str-grafite: #222222;
    --str-bordeaux: #7A1E2C;
    --str-sabbia: #F2EDE7;
    --str-blu-idro: #0066CC;

    /* Palette secondaria */
    --str-verde: #4CAF50;
    --str-giallo: #FFC107;
    --str-arancio: #FF9800;
    --str-rosso: #F44336;

    /* Toni atmosferici */
    --str-ombra: rgba(0,0,0,0.15);
    --str-cielo: #DDE7F2;
    --str-pietra: #C8C8C8;

    /* Tipografia */
    --str-font-main: 'Inter', sans-serif;
    --str-font-mono: 'IBM Plex Mono', monospace;

    /* Spaziatura */
    --str-space-xs: 4px;
    --str-space-s: 8px;
    --str-space-m: 16px;
    --str-space-l: 24px;
    --str-space-xl: 32px;
    --str-space-xxl: 48px;
}

/* ------------------------------
   BASE TYPOGRAPHY
------------------------------ */
body {
    font-family: var(--str-font-main);
    background: var(--str-sabbia);
    color: var(--str-grafite);
    line-height: 1.55;
}

h1, h2, h3, h4 {
    font-weight: 700;
    color: var(--str-grafite);
}

h1 {
    font-size: 34px;
}

h2 {
    font-size: 24px;
    margin-top: var(--str-space-l);
}

p.lead {
    font-size: 18px;
    color: var(--str-bordeaux);
}

/* ------------------------------
   LINK
------------------------------ */
a {
    color: var(--str-blu-idro);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ------------------------------
   CARD / SEZIONI
------------------------------ */
.section-block {
    background: white;
    padding: var(--str-space-l);
    border-radius: 8px;
    box-shadow: 0 4px 12px var(--str-ombra);
    margin-bottom: var(--str-space-xl);
}

/* ------------------------------
   LISTE TECNICHE
------------------------------ */
ul.list-unstyled li {
    margin-bottom: var(--str-space-s);
    font-family: var(--str-font-mono);
    font-size: 14px;
}
