/* Projects Page Styles */

/* Project Cards */
.project-card {
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
}

/* Filter Buttons */
.filter-btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.filter-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.filter-btn:hover::after {
    width: 100%;
    height: 100%;
}

.filter-btn.active {
    background: #d9a444;
    color: white;
}

/* Statistics Section */
.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #d9a444;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.stat-number.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Lightbox Customization */
.lb-data .lb-caption {
    font-family: 'din-medium', sans-serif;
    font-size: 1.2rem;
    color: #fff;
}

.lb-data .lb-details {
    width: 100%;
    text-align: center;
}

.lb-closeContainer {
    position: absolute;
    top: 20px;
    right: 20px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover Effects */
.project-card .project-icon {
    position: relative;
    overflow: hidden;
}

.project-card .project-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.project-card:hover .project-icon::after {
    width: 100%;
    height: 100%;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .project-card {
        margin-bottom: 2rem;
    }
    
    .filter-btn {
        margin-bottom: 0.5rem;
    }
}

/* Load More Button */
.load-more-btn {
    position: relative;
    overflow: hidden;
}

.load-more-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.load-more-btn:hover::after {
    width: 100%;
    height: 100%;
} 