/* --- Foto squadra --- */
.fotosquadra {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.fotosquadra img {
  width: 30%;
  max-width: 600px;
  border-radius: 15px;
  border: 2px solid rgba(0, 0, 0, 0.7); /* bordo nero semitrasparente */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3); /* ombra morbida */
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}
.fotosquadra:hover img {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4); /* ombra leggermente più evidente */
  border: 2px solid rgba(0, 0, 0, 0.9); /* bordo un po’ più scuro al passaggio del mouse */
}


/* --- Lightbox --- */
.lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(0,0,0,0.7);
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 40px;
  font-size: 2rem;
  color: white;
  background: rgba(0,0,0,0.5);
  padding: 8px 15px;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  transition: background 0.3s ease;
}

.lightbox-close:hover {
  background: #6D0D1B;
}

.close-text {
  font-size: 1rem;
  margin-left: 5px;
  vertical-align: middle;
  font-weight: 400;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .fotosquadra img {
    width: 95%;
  }
  .lightbox-close {
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
  }
}
