/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY + SFONDO */
body {
  font-family: Arial, Helvetica, sans-serif;
  background-image: url("Illumina Show Provvisorio.PNG");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #000;
  color: #ffffff;
  min-height: 150vh;
  min-width: 100vh;
  margin-left: auto;
  margin-right: auto;
}

/* SEZIONE PRINCIPALE */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 5vh 5vw;
}

/* TITOLO */
.titolo {
  background-color: rgba(0, 0, 0, 0.65);
  padding: 20px;
  border-radius: 12px;
  max-width: 500px;
}

.titolo img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: +30;
  margin-bottom: 1rem;
}

.titolo h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.titolo p {
  font-size: 1rem;
  line-height: 1.4;
}

/* DESCRIZIONE */
.descrizione {
  background-color: rgba(0, 0, 0, 0.65);
  padding: 20px;
  border-radius: 12px;
  max-width: 600px;
}

.descrizione p {
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* LINK */
a {
  color: #00ccff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* TABELLA */
.tabella {
  width: 90%;
  margin: 4rem auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: rgba(0, 0, 0, 0.6);
}

td {
  padding: 10px;
  border: 1px solid #ffffff;
  text-align: center;
}

/* MOBILE */
@media (max-width: 768px) {

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .titolo,
  .descrizione {
    max-width: 100%;
  }

  td {
    font-size: 0.85rem;
    padding: 8px;
  }
}
