/* Gallery CSS - True Masonry Layout */
/* Container styling */
.gallery-images {
  max-width: 1400px;
  margin: 0 auto !important;
  padding: 40px 20px;
}

/* Gallery Items - Positioned by JavaScript */
.gallery-item {
  position: absolute;
  background: transparent;
  box-sizing: border-box;
  /* Start hidden - will animate when scrolled into view */
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Animate when coming into view */
.gallery-item.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Wrapper */
.gallery-item-wrapper {
  display: block;
  width: 100%;
}

/* Anchor tags */
.gallery-item-wrapper a {
  display: block;
  line-height: 0;
}

/* Images */
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

/* Hover effect */
.gallery-item:hover img {
  transform: scale(1.02);
}

/* Loading state */
.gallery-item.loading {
  opacity: 0.3;
}

/*# sourceMappingURL=masonry.css.map */
