@font-face {
  font-family: "Citrus Gothic Solid";
  src: url("../fonts/CitrusGothic-Regular.woff") format("woff2"),
    url("../fonts/CitrusGothic-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* RESET BASE */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

/* PALETTE BASE */
:root {
  --bg-cream: #f5eac1;
  --bg-dark: #202020;
  --text-dark: #111111;
  --text-light: #fff8ec;
  --accent-black: #000000;
}

/* BASE BODY / LAYOUT ROOT */

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.5;
  /* NESSUN padding-bottom: il footer non è fixed */
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
