

.modal-galeri {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-galeri.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  animation: zoomIn 0.4s ease;
}

.modal-close {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
