/*
 * marionannischole_typography.css
 *
 * Tipografia e palette colore condivise Mario Nanni Scholé.
 *
 * IDENTICO tra i progetti:
 *   - www.marionannischole.com
 *   - www.fondazionemarionannischole.it
 *
 * Modifiche: aggiornare in ENTRAMBI i progetti.
 * Non divergere — qualsiasi differenza deve essere ricondotta a una singola sorgente.
 *
 * Contiene:
 *   - @font-face Futura Bk BT / Futura Md BT
 *   - :root con custom properties colore (--primary-*, --dark-grey, --light-grey)
 *   - *::selection
 *   - body tipografia base
 *   - p, h1-h6, .h1, b, strong, .abstract
 *
 * NON contiene:
 *   - override specifici di componenti/blocchi (restano in style.css del progetto)
 *   - layout, background, dimensioni (restano in style.css del progetto)
 *   - custom properties non-colore (es. --header-height): restano nel progetto che le usa
 */

@font-face {
    font-family: 'Futura Bk BT';
    src: url('../fonts/futura/FuturaBT-Book.eot');
    src: url('../fonts/futura/FuturaBT-Book.eot?#iefix') format('embedded-opentype'),
        url('../fonts/futura/FuturaBT-Book.woff2') format('woff2'),
        url('../fonts/futura/FuturaBT-Book.woff') format('woff'),
        url('../fonts/futura/FuturaBT-Book.ttf') format('truetype'),
        url('../fonts/futura/FuturaBT-Book.svg#FuturaBT-Book') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Futura Md BT';
    src: url('../fonts/futura/FuturaBT-Bold.eot');
    src: url('../fonts/futura/FuturaBT-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/futura/FuturaBT-Bold.woff2') format('woff2'),
        url('../fonts/futura/FuturaBT-Bold.woff') format('woff'),
        url('../fonts/futura/FuturaBT-Bold.ttf') format('truetype'),
        url('../fonts/futura/FuturaBT-Bold.svg#FuturaBT-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
}

:root {
    --primary-white: #ffffff;
    --primary-black: #000000;
    --dark-grey: #6c757d;
    --light-grey: #dee2e6;
}

*::selection {
    background: #808080;
    color: #ffffff;
}

body {
    font-family: 'Futura Bk BT', Helvetica, Arial, sans-serif;
    color: #000000;
    line-height: 1.5em;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p {
    font-size: 16px;
}

h1,
.h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Futura Md BT';
    font-weight: 500;
    line-height: 1.5em;
}

h1,
.h1 {
    font-size: 35px;
    font-weight: 600;
    line-height: 1em;
}

h2,
h3 {
    font-size: 25px;
}

h4 {
    font-size: 1em;
    font-weight: normal;
}

h3.list_title,
h4.list_title {
    font-weight: 600;
}

h5,
.h5 {
    line-height: 1em;
}

h6 {
    font-size: 0.75rem;
    line-height: 1.5em;
}

h1 .fw-normal {
    font-family: 'Futura Bk BT';
}

b,
strong {
    font-weight: 900;
}

.abstract {
    font-style: italic;
}
