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

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

.album-section {
  padding: 100px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

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


.album-grid {
  column-count: 3;
  column-gap: 30px;
  visibility: hidden;
  animation: fadeIn 0.5s ease forwards;
  animation-delay: 0.3s;
  
}

.album-grid img {
  width: 100%;
  margin-bottom: 16px;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  break-inside: avoid;
  transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: calc(var(--i, 1) * 0.1s);
}

.album-grid img:hover {
  transform: scale(1.02);
  opacity: 0.95;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

@media (max-width: 1200px) {
  .album-grid {
    column-count: 3;
  }
}

@media (max-width: 800px) {
  .album-grid {
    column-count: 2;
  }
}

@media (max-width: 500px) {
  .album-grid {
    column-count: 1;
    padding: 60px 16px 30px;
  }
}
