/* Font e base */
body {
  margin: 0;
  font-family: 'League Spartan', sans-serif;
  background-image: url("./struttura-polifunzionale.JPG");
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  color: #333;
}

@media (max-width: 768px) {
  body {
    background-position: center top;
    background-size: auto 100vh;
  }
}


/* Contenuto con sfondo leggero e leggibile */
.contenitore-home {
  background: rgba(255, 255, 255, 0.75); /* bianco semitrasparente */
  padding: 30px;
  border-radius: 12px;
  max-width: 1000px;
  margin: auto;
}

/* Header */
.testata {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  background: transparent;
  text-align: center;
  border-bottom: 2px solid #ccc;
}

.header-img {
  width: 100%;
  object-fit: contain;
  display: block;
}

/* Animazione pulsante per il testo header */
@keyframes pulsazione {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.6;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.header-testo {
  font-size: 32px;
  font-weight: 900;
  color: #ed8805;
  margin: 10px 0 20px;
  animation: pulsazione 1.8s infinite ease-in-out;
  font-family: 'League Spartan', sans-serif;
}

/* Volantino */ .volantino-container { position: relative; max-width: 1000px; margin: auto; margin-top: 20px; } .sfondo { width: 100%; display: block; }

/* Giorni cliccabili – estesi su intero rettangolo */
.giorno {
  position: absolute;
  cursor: pointer;
  display: block;
 /* background-color: rgba(255, 140, 0, 0.2); */ /* solo per test visivo */
  z-index: 10;
}

/* Coordinate regolate per coprire bene i rettangoli arancioni */
#giorno25 {
  top: 0%;
  left: 4%;
  width: 92%;
  height: 24%;
}

#giorno26 {
  top: 26%;
  left: 4%;
  width: 92%;
  height: 22.5%;
}

#giorno27 {
  top: 50%;
  left: 4%;
  width: 92%;
  height: 24%;
}

#giorno28 {
  top: 76%;
  left: 4%;
  width: 92%;
  height: 23.5%;
}

/* Footer */
footer {
  background: #eee;
  padding: 20px;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 40px;
}

/* Testo evidenziato */
.info-servizi p:first-child {
  font-weight: 900;
  font-size: 20px;
  color: #2C4F96;
  text-transform: uppercase;
  font-family: 'League Spartan', sans-serif;
}

.info-servizi p:nth-child(2) {
  font-weight: 900;
  font-size: 26px;
  color: #ed8805;
  font-family: 'League Spartan', sans-serif;

}

.info-manifestazione p:first-child {
  font-weight: 700;
  font-family: 'League Spartan', sans-serif;
}

.info-manifestazione p:nth-child(2) {
  font-weight: 700;
  font-family: 'League Spartan', sans-serif;
  text-transform: uppercase;
}

.social-riga {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.social-riga span {
  font-weight: 700;
  font-size: 18px;
  color: #333;
}

/* Loghi social */
.social-icon {
  width: 40px;
  height: 40px;
  display: inline-block;
  vertical-align: middle;
  object-fit: contain;
}