/* =========================================
   PROJECTS SECTION - ANIMATIONS
   Entrance & Hover Effects
========================================= */

/* Title Entrance */
.projects-title {
    animation: projTitleFadeIn 1s var(--proj-transition-smooth) forwards;
}

@keyframes projTitleFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card Entrance - Staggered */
.project-item {
    opacity: 0;
    transform: translateY(30px);
    animation: projCardFadeIn 0.8s var(--proj-transition-smooth) forwards;
}

@keyframes projCardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.project-item:nth-child(1) {
    animation-delay: 0.1s;
}

.project-item:nth-child(2) {
    animation-delay: 0.2s;
}

.project-item:nth-child(3) {
    animation-delay: 0.3s;
}

.project-item:nth-child(4) {
    animation-delay: 0.4s;
}

.project-item:nth-child(5) {
    animation-delay: 0.5s;
}