/* styles/animations.css - Animations and transitions */

* {
    transition: background-color 0.3s ease, color 0.3s ease;
}

.skill-item {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-tile {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.modal {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Fade in animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}
