/* style.css */

/* Animazioni di entrata */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stile Card */
.bento-card {
    background-color: white;
    border: 1px solid #eaecf0;
    border-radius: 24px;
    transition: all 0.3s ease;
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.08);
    border-color: #d0d5dd;
}

/* Stile Tag */
.tag {
    padding: 4px 12px;
    background-color: #f2f4f7;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #344054;
}
