/* Stile generale della pagina */
body {
  font-family: Arial, sans-serif;
  background-color: #e6f2ff; /* azzurro chiaro */
  color: #333;
  margin: 20px;
  padding: 0;
}

/* Titoli principali */
h1 {
  color: #004080;
  margin-bottom: 20px;
}

/* Stile per la sezione anteprime in homepage */
.anteprima {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.anteprima img {
  max-width: 300px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.anteprima img:hover {
  transform: scale(1.05);
  cursor: pointer;
}

/* Stile per la galleria */
.galleria {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.galleria img {
  width: 300px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.galleria img:hover {
  transform: scale(1.05);
  cursor: pointer;
}

/* Link di ritorno */
.back-link {
  text-align: center;
  margin-top: 40px;
}

.back-link a {
  text-decoration: none;
  color: #0077cc;
  font-weight: bold;
}

.back-link a:hover {
  text-decoration: underline;
  color: #004080;
}