/* Gallery Grid */
.gg-box {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

.gg-box img {
  width: 100%;
 /* height: 250px;*/
  object-fit: cover;
  cursor: pointer;
  border-radius: 12px;
  transition: 0.3s ease;
}

.gg-box img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Lightbox */
#gg-screen {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.gg-image img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 12px;
  animation: zoom 0.3s ease;
}

@keyframes zoom {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.gg-bt {
  position: absolute;
  color: white;
  font-size: 45px;
  cursor: pointer;
  user-select: none;
  padding: 10px;
}

.gg-close {
  top: 20px;
  right: 30px;
}

.gg-prev {
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.gg-next {
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}