/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.attivo {
  display: flex;
  opacity: 1;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.lightbox-contenuto {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 120px;
}

.lightbox-immagine-wrapper {
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
}

.lightbox-immagine {
  max-width: 1080px;
  max-height: 1280px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Pulsante chiudi */
.lightbox-chiudi {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid white;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10002;
  transition: background-color 0.2s ease;
}

.lightbox-chiudi:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.lightbox-chiudi span {
  line-height: 1;
}

/* Frecce navigazione */
.lightbox-freccia {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid white;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10002;
  transition: background-color 0.2s ease;
  font-family: 'font-awesome-light-300';
}

.lightbox-freccia:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.lightbox-freccia-sinistra {
  left: 30px;
}

.lightbox-freccia-destra {
  right: 30px;
}

.lightbox-freccia span {
  line-height: 1;
}