body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #84c3be;
  color: #333;
}

/* HERO */
.hero {
  background: #1b3a1b;
  padding: 50px 20px;
  color: white;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}
.logo {
  width: 20%;
}
.hero-buttons {
  margin-top: 15px;
}
.lang, .btn-programma {
  margin: 5px;
  padding: 8px 12px;
  border: none;
  background: #f1c40f;
  color: #333;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
}

/* GRID BOTTONI */
.grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin: 20px auto;
  max-width: 800px;
}
.day-btn {
  padding: 10px;
  border: 1px solid #ccc;
  background: #eee;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
}
.day-btn.active {
  background: #2e7d32;
  color: white;
}
.day-btn img {
  width: 20px;
  vertical-align: middle;
  margin-right: 5px;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media(max-width: 600px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* DETTAGLI */
.details {
  margin: 20px;
  padding: 20px;
  border: 1px solid #ddd;
  background: #fafafa;
  border-radius: 6px;
  min-height: 80px;
}

/* SLIDESHOW */
.slideshow {
  position: relative;
  max-width: 700px;
  margin: auto;
}
.slide {
  display: none;
  width: 100%;
  border-radius: 8px;
}
.slide.active {
  display: block;
}

/* SEZIONE ARRIVARE */
.arrivare {
  padding: 30px;
}
.arrivare .mappa {
  margin-top: 15px;
  border-radius: 6px;
}

/* FOOTER */
footer {
  background: #1b3a1b;
  color: white;
  padding: 20px;
}
footer a {
  color: #f1c40f;
  text-decoration: none;
}

/* MY THINGS */
.hidden {
  display: none;
}
.visible {
  display: block;
}

.programma {
  line-height: 1.8;
}