body {
  background-image: url('sfondo.png');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  font-family: sans-serif;
  color: black;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

/* Logo principale */
#logomain {
  display: block;
  width: 30%;
  height: auto;
  margin: 2rem auto;
}

/* Navbar stile glass */
#navbar {
  display: flex;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 200, 255, 0.35), rgba(0, 255, 180, 0.25));
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  margin: 2rem 8%;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  font-size: 20px;
}
.navbar_links {
  padding: 20px 40px;
  color: black;
  text-decoration: none;
}
.navbar_links:hover {
  color: #aefcff;
  text-shadow: 0 0 8px rgba(0, 255, 200, 0.8);
}

/* Logo interno */
#logo {
  width: 30%;
  height: auto;
  margin-left: 60px;
}

/* Titoli */
h1, h2, h3 {
  text-align: center;
  font-weight: bold;
}
h1 {
  font-size: 48px;
}
h2 {
  font-size: 36px;
}
h3 {
  font-size: 28px;
}

/* Contenuto con effetto glass */
#content {
  margin: 2rem 15%;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  color: black;
}

/* Testo descrittivo */
.descr {
  font-size: 20px;
  margin: 1rem 10%;
  text-align: justify;
}
.descr-center {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}


/* Contatti */
#contacts {
  font-size: 22px;
  margin: 2rem auto;
  text-align: center;
}

.foto-teatro {
  display: block;
  margin: 2rem auto;
  padding: 1rem;
  max-width: 600px;

  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(200, 255, 250, 0.08));
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.foto-teatro img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.foto-teatro:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 255, 200, 0.4);
}

.didascalia-foto {
  font-size: 20px;
  text-align: center;
}

#generalinfo {
  font-size: 10px;
  font-family: sans-serif;
  color: black;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
  text-align: center;
 }
.footer {
  font-size: 10px;
  font-family: sans-serif;
  color: black;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
  text-align: center;
  bottom: 0;
 }
