@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lightbox-caption.fade {
  animation: fadeInUp 0.4s ease;
}

#lightbox-instagram.fade {
  animation: fadeInUp 0.9s ease;
}

body {
  background-color: black;
  color: white;
  font-family: 'Manrope', sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.page-container {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 20px;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-item {
  animation: fadeInUp 0.6s ease both;
  animation-delay: calc(var(--i, 1) * 0.1s);
}


.gallery-item img:hover {
  transform: scale(1.03);
  opacity: 0.9;
}
