/* =========================================
   PAGINA TERRITORIO
========================================= */

#territorio {
  background-image: url("../images/background/colazione.jpg"); /* Sfondo fallback */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fdfdfd;
  padding-top: 40px;
  padding-bottom: 280px;
  position: relative;
}

#territorio::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(75, 46, 33, 0.6);
  z-index: 1;
}

#territorio > * {
  position: relative;
  z-index: 2;
}

#territorio img {
  width: 160px;
}

#territorio h1,
#territorio h2 {
  color: #fff8f0;
  text-align: center;
}

#territorio h1 {
  font-size: 48px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

#territorio h2 {
  font-family: "Parisienne", sans-serif;
  font-size: 32px;
}

/* Container per evitare problemi di overflow orizzontale */
.map-container {
  min-height: 300px;
}

/* =========================================
   FIX MOBILE TERRITORIO
========================================= */
@media (max-width: 768px) {
  /* --- FIX HERO MOBILE CENTRATA --- */
  /* Sostituiamo i padding statici con flexbox per centrare i contenuti verticalmente */
  #territorio {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
    min-height: 50vh !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  #territorio h1 {
    font-size: 36px;
  }

  #territorio h2 {
    font-size: 24px;
  }

  /* --- FIX SEZIONI LOCALITÀ --- */
  /* Aggiunge spazio vitale tra il testo descrittivo e la foto della mappa quando si impilano */
  .map-container {
    min-height: 250px !important;
    margin-top: 25px;
  }
}
