/* static/css/gallery.css - GALLERY PAGE SPECIFIC STYLES */
.gallery-hero-bg {
  background-image: url('/static/img/gallery-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Gallery item animations */
.gallery-item {
  transition: all 0.3s ease-in-out;
}

.gallery-item:hover {
  transform: translateY(-8px);
}

/* Lightbox animations */
#lightbox-modal {
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .gallery-hero-bg {
    background-position: 60% center;
  }
  
  .gallery-item {
    margin-bottom: 1rem;
  }
}

/* Line clamp for text overflow */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}