/* Impostazioni di base */
html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  background-color: #F6F5F2; /* bianco caldo neutro (non beige) */
  color: #1A1A1A;            /* quasi-nero più morbido del #000/#111 */
  line-height: 1.5;
}

/* Contenitore centrale */
main {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 20px 80px;
  position: relative;
  z-index: 1;
}

/* Velatura leggerissima (opzionale)
   Con sfondo piatto serve poco: la teniamo quasi impercettibile.
   Per rimuoverla: elimina tutto il blocco body::before.
*/
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.10);
  pointer-events: none;
  z-index: 0;
}

/* Header */
header {
  text-align: center;
  margin-bottom: 64px;
}

header img {
  max-width: 280px;
  height: auto;
  margin-bottom: 24px;
}

h1 {
  font-size: 22px;
  font-weight: normal;
  margin: 0 0 8px 0;
}

header p {
  margin: 0;
  font-size: 15px;
  color: #333333;
}

/* Messaggio centrale */
section {
  text-align: center;
  margin-bottom: 72px;
}

section p:first-child {
  font-size: 20px;
  margin-bottom: 16px;
}

/* Testi sezione */
section p {
  color: #1A1A1A;
}

section p + p {
  color: #333333;
}

/* Contatti */
section:last-of-type p {
  font-size: 15px;
  margin: 6px 0;
}

/* Link (unificati, senza override aggressivi) */
a,
a:link,
a:visited {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-underline-offset: 4px;
}

a:hover {
  text-decoration-thickness: 2px;
}

a:active {
  color: inherit;
}
