/* ===== GALERI ===== */
#galeri { background: var(--cream); }
.galeri-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.galeri-item {
  background: #dde8d4;
  border-radius: 10px;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s, box-shadow .2s;
}
.galeri-item:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 4px 12px rgba(0,0,0,0.1); 
}
.galeri-item .g-img { 
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.galeri-item:hover .g-img {
  transform: scale(1.05);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  z-index: 9000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  background: var(--cream);
  border-radius: 16px;
  padding: 32px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
}
.lightbox-close {
  position: absolute;
  top: 12px; right: 16px;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-mid);
  background: none;
  border: none;
  line-height: 1;
}

.lightbox-caption {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--green-dark);
}
