/* Gallery Specific Styles */
.gallery-container {
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
    min-height: 90vh;
}

.album-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.album-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 
        0 20px 40px rgba(255, 215, 0, 0.3),
        0 0 0 1px rgba(255, 215, 0, 0.5);
}

.album-cover {
    transition: all 0.3s ease;
    filter: brightness(0.9);
}

.album-card:hover .album-cover {
    filter: brightness(1.1);
    transform: scale(1.08);
}

.image-count {
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.4);
}

/* Lightbox improvements */
.lightbox {
    backdrop-filter: blur(5px);
}

.lightbox-content {
    animation: lightboxZoom 0.3s ease-out;
}

@keyframes lightboxZoom {
    from {
        transform: translateY(-50%) scale(0.8);
        opacity: 0;
    }
    to {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
}

/* Admin styles */
.admin-card {
    background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.admin-card:hover {
    border-color: #ffd700;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.1);
}

/* Responsive improvements */
@media (max-width: 576px) {
    .gallery-container {
        padding: 1rem;
    }
    
    .album-card {
        margin-bottom: 1rem;
    }
    
    .album-info {
        padding: 1rem;
    }
}
