/* Custom styles for the Children's Art Training App Website */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom font for artistic headings */
h1, h2, h3 {
    font-family: 'ZCOOL XiaoWei', 'Inter', system-ui, -apple-system, sans-serif;
}

/* Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Feature card hover effects */
.feature-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover {
    box-shadow: 0 25px 50px -12px rgba(79, 70, 229, 0.15);
}

/* Mobile mockup shadow refinement */
.mockup-shadow {
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}

/* Custom scrollbar for better aesthetics */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c7d2fe;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #818cf8;
}
