/* =========================================
   BASE.CSS - Variabili, Reset e Tipografia
   ========================================= */

html { 
    scroll-behavior: smooth; 
}

/* Resetta i margini di default del browser */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Colori Ufficiali CSI Napoli */
:root {
    --csi-blue: #134395;
    --csi-orange: #EC6608;
    --csi-orange-hover: #D15500;
    --white: #ffffff;
    --gray-bg: #f4f4f4;
}

/* Caricamento font locali */
@font-face {
    font-family: 'Barmeno';
    src: url('../fonts/Barmeno-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Barmeno';
    src: url('../fonts/Barmeno-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Applica i font alle classi */
body {
    font-family: 'Roboto', sans-serif; /* Assicurati di avere anche Roboto in locale */
    line-height: 1.6;
    color: #333;
    background-color: var(--gray-bg);
}

h1, h2, h3, h4, h5, h6, .logo {
    font-family: 'Barmeno', sans-serif;
    font-weight: bold;
}

/* Rende tutte le immagini responsive di default per non farle uscire dagli schermi */
img {
    max-width: 100%;
    height: auto;
}