/* ======================================
   GALERI AUKYCLOTH - Pinterest Style
====================================== */
body {
  font-family: 'Inter', sans-serif;
  background: #f9f9f9;
  color: #222;
  margin: 0;
  padding: 0;
}

.gallery-section {
  padding: 150px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

/* ========== Masonry Layout ========== */
.gallery-container {
  column-count: 4;
  column-gap: 20px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: fadeIn 0.5s ease both;
}

.gallery-item img {
  width: 100%;
  display: block;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

/* Hover efek */
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Animasi muncul */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}

/* Responsif */
@media (max-width: 1200px) {
  .gallery-container { column-count: 3; }
}

@media (max-width: 900px) {
  .gallery-container { column-count: 2; }
}

@media (max-width: 600px) {
  .gallery-container { column-count: 1; }
}
