/* ===============================
   PALETTE
   =============================== */

:root {
    --color-sand: #756E53;          /* tono terroso */
    --color-orange: #EB5D2A;        /* Arancione corallo */
    --color-ivory: #EAE5DF;         /* avorio chiaro */
    --color-stone-gray: #656565;    /* grigio pietra */
    --color-midnight: #0B1925;      /* blu notte profondo */
    --color-white: #FFFFFF;
    --color-focus: #FFBF47;
}

/* ===============================
   BACKGROUNDS & FONTS
   =============================== */

/* Sfondo */
.bg-olive-brown {
    background-color: var(--color-olive-brown) !important;
}

.bg-sand {
    background-color: var(--color-sand) !important;
}

.bg-ivory {
    background-color: var(--color-ivory) !important;
}

.bg-stone-gray {
    background-color: var(--color-stone-gray) !important;
}

.bg-midnight {
    background-color: var(--color-midnight) !important;
}

/* Colore testo */
.text-olive-brown {
    color: var(--color-olive-brown) !important;
}

.text-sand {
    color: var(--color-sand) !important;
}

.text-ivory {
    color: var(--color-ivory) !important;
}

.text-stone-gray {
    color: var(--color-stone-gray) !important;
}

.text-midnight {
    color: var(--color-midnight) !important;
}