/* --- Foto Squadra --- */
.foto-squadra-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.foto-squadra-container img {
  width: 40%;
  max-width: 650px;
  border-radius: 15px;
  border: 3px solid #222; /* piccolo bordo nero */
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.foto-squadra-container:hover img {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* --- 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 {
    width: auto;
    height: auto;
  max-width: 90%;
  max-height: 90%;
  border-radius: 15px;
  box-shadow: 0 0 30px rgba(0,0,0,0.7);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: white;
  background: rgba(0,0,0,0.5);
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Rajdhani', sans-serif;
  transition: background 0.3s ease;
}

.lightbox-close:hover {
  background: #048742;
}

 @media (max-width: 768px) {
    .foto-squadra-container img {
        width: 95%;
 }
}
