/* ============================================
   Gallery Page Styles
   ============================================ */

/* Gallery animations */
@keyframes galleryFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes galleryScaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-in-up {
    animation: galleryFadeInUp 0.7s ease-out forwards;
}

.animate-scale-in {
    animation: galleryScaleIn 0.5s ease-out forwards;
}

/* Staggered card animation */
.gallery-card {
    animation: galleryFadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.gallery-card:nth-child(1) {
    animation-delay: 0.1s;
}
.gallery-card:nth-child(2) {
    animation-delay: 0.2s;
}
.gallery-card:nth-child(3) {
    animation-delay: 0.3s;
}
.gallery-card:nth-child(4) {
    animation-delay: 0.4s;
}
.gallery-card:nth-child(5) {
    animation-delay: 0.5s;
}
.gallery-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* Lightbox */
.lightbox-overlay {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Hide scrollbar in gallery grid */
.gallery-grid::-webkit-scrollbar {
    display: none;
}
.gallery-grid {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Photo hover shine effect */
.photo-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: 0.5s;
    z-index: 2;
}

.photo-card:hover::before {
    left: 125%;
}

/* Stats glow effect */
.stat-glow {
    box-shadow: 0 0 30px rgba(218, 196, 109, 0.15);
}
