
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: linear-gradient(to bottom, #e1f5fe, #fffde7);
  color: #333;
}
.header {
  background: #ffeb3b;
  padding: 20px;
  text-align: center;
}
.logo {
  width: 80px;
  height: auto;
}
nav a {
  margin: 0 10px;
  color: #0277bd;
  text-decoration: none;
  font-weight: bold;
}
.section {
  padding: 20px;
  max-width: 900px;
  margin: auto;
}
.locandina {
  margin-top: 30px;
  text-align: center;
}
.locandina-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}
.locandina-img:hover {
  transform: scale(1.01);
}
.footer {
  background: #0288d1;
  color: white;
  text-align: center;
  padding: 20px;
}
@media screen and (max-width: 600px) {
  nav a {
    display: block;
    margin: 5px 0;
  }
  .section {
    padding: 10px;
  }
  .locandina-img {
    width: 100%;
  }
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.gallery-item {
  width: 45%;
  max-width: 100px;
  text-align: center;
}
.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}
.gallery-item img:hover {
  transform: scale(1.03);
}
@media screen and (max-width: 600px) {
  .gallery-item {
    width: 100%;
  }
}
.hero-image {
  position: relative;
  width: 100%;
  height: 200px; /* Modifica l'altezza se serve */
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px; /* Altezza della sfumatura */
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, white 100%);
}