/* Home Page Styles - Stili specifici per la pagina home */

.category-card {
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.175);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-color: var(--category-color);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--category-color);
}

.category-image {
    width: 100%;
    height: 100px;
    object-fit: contain;
    border-radius: 8px 8px 0 0;
    padding: 1rem;
    background-color: #f8f9fa;
}

.category-card .btn-primary {
    background-color: var(--category-color, var(--footer-color));
    border-color: var(--category-color, var(--footer-color));
}

.category-card .card-title{
    font-weight: 400;
}

/* URCHIN Card */
.urchin-card {
    background: linear-gradient(135deg, #e8f4fc 0%, #d0e8f5 100%);
    color: #2B689C;
    border: 1px solid #b8d4e8;
    border-radius: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.urchin-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(43, 104, 156, 0.15);
}

.urchin-card h4 {
    color: #2B689C;
}

/* Stats CTA Section */
.stats-cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
}

.stats-cta-section .btn {
    padding: 1rem 3rem;
    font-size: 1.2rem;
}

.stats-cta-section .display-4 {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .category-image {
        height: 70px;
    }

    .stats-cta-section {
        padding: 2rem 1rem;
    }

    .stats-cta-section .btn {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }
}