html,body {
  font-family: 'Fredoka', sans-serif;
  background: hsla(68, 71%, 96%, 0.988);
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
  width: 100%;
  text-align: center;
  color: #333333;
}

h2 {
  font-size: 30px;
  margin-top: 40px;
  color: #346634;;
}

p {
  color:#244724 ;
}

.tenda {
  margin-top: 50px;
  margin-bottom: 50px;
}

.mappa {
  max-width: 150%;
  height: auto;
  border: 2px solid #346634;
  transition: transform 0.3s ease;

}

.mappa:hover {
  transform: scale(1.03);
}


.popup {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  position: absolute;
  justify-content: center;  /* centrare verticalmente */
  align-items: center;      /* centrare orizzontalmente */
  text-align: center;     
  left: 50%;
  transform: translateX(-50%);
  background: #FBFFE3FC;
  border: 2px solid #346634;
  padding: 10px 10px;
  height: 190px;
  width: 250px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  z-index: 1000;
}

.popup.show {
  opacity: 1;
  pointer-events: all;
}

.prenota-btn {
  display: inline-block;
  margin-top: 5px;
  padding: 10px 20px;
  background-color: #80B280;
  color: white;
  text-decoration: underline;
  border-radius: 6px;
  font-weight: bold;
  font-size: 15px;
}

.prenota-btn:hover {
  background-color: #6fa76f;
}

.hidden {
  display: none;
}

.close {
  float: right;
  cursor: pointer;
  font-size: 20px;
  color: #346634;
}

#link {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 16px;
  background-color: #80B280;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

#link:hover {
  background-color: #6fa76f;
}

.navbar {
  background-color: #346634 ;
  color: #FBFFE3FC;
  margin: 0px;
  padding: 55px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.navbar:hover {
  transform: translateY(-10px);
}

.navbar h1 {

  margin: 0px;
  font-size: 40px !important;;
  flex-grow: 1;
  text-align: left;
  padding-left: 100px;
}

.logo {
  height: 100px;
  width: auto;
}

.navbar-contact {
  display: flex;
  flex-direction: column;
  text-align: right;
  padding-right: 50px;

}

.navbar-contact a {
  color: #FBFFE3FC;
  text-decoration: underline;
  font-size: 14px;
  margin: 0;

}

.navbar-contact a:hover {
  text-decoration: underline;
  color: #80B280;
}

.info-tenda {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: left;
}

.info-tenda h2 {
  color: #346634;
  font-size: 28px;
  margin-bottom: 10px;
}

.info-tenda p {
  color: #244724;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}


.foto-oasi {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px auto;
  flex-wrap: nowrap;
  padding: 0 20px;
}

.foto-oasi img {
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.foto-oasi img:hover {
  transform: scale(1.03);
}



