@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* ====================
   SFONDO GENERALE
==================== */
body {
  font-family: "Inter", sans-serif;
  background-image: url('sfondopagina1.jpg'); /* Inserisci qui la tua immagine */
  background-size: cover;       /* copre tutto lo schermo */
  background-position: center;  /* centra l’immagine */
  background-repeat: no-repeat; /* non ripete */
  background-attachment: fixed; /* effetto parallax leggero */
  color: #0b6fa4;
  margin: 0;
  padding: 0;
  height: 100%;
  position: relative;
}

/* Overlay semitrasparente per migliorare leggibilità testo */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3); /* modifica opacità se serve più contrasto */
  z-index: -1; /* sotto i contenuti */
}

/* ====================
   TABELLA ESTERNA
==================== */
.tabella-esterna {
  width: 100%;
  border-collapse: collapse;
  font-family: Roboto, sans-serif;
}

/* ====================
   HERO IMAGE
==================== */
.sfondo-hero {
  background-image: url('hero1.png'); /* hero separata */
  background-size: cover;
  background-position: center;
  height: 300px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center; /* centra verticalmente */
  align-items: center;
}

/* Titolo principale */
.titolo {
  color: #0b6fa4;
  font-size: 3rem;
  font-weight: 600;
  margin: 0;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}

/* Sottotitolo */
.sottotitolo {
  color: #0b6fa4;
  font-size: 1.5rem;
  text-align: center;
  background-color: rgba(255,255,255,0.3);
  padding: 10px 20px;
  margin: 10px auto;
  border-radius: 5px;
}

/* ====================
   TABELLA INTERNA
==================== */
.tabella-interna {
  border: 2px solid red;
  border-collapse: collapse;
  margin: 30px auto;
  width: 80%;
  color: #0b6fa4;
  font-family: Arial, sans-serif;
}

.tabella-interna th,
.tabella-interna td {
  border: 1px solid red;
  padding: 12px 18px;
}

.tabella-interna th {
  background-color: #f5f5f5;
  text-align: center;
  font-weight: bold;
}

.tabella-interna td {
  text-align: left;
  vertical-align: top;
}

.titolo-tabella {
  text-align: center;
  font-size: 1.4em;
  font-weight: bold;
  color: #0b6fa4;
  margin-bottom: 10px;
}
