/* Custom styles that extend Tailwind */
html {
    scroll-behavior: smooth;
}

body {
    /* Subtle texture if desired, otherwise plain color is fine */
    background-image: radial-gradient(circle at 1px 1px, rgba(168, 114, 168, 0.05) 1px, transparent 0);
    background-size: 20px 20px;
}

/* Animation utilities */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0; /* Initial state before animation */
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #F9F5FA;
}
::-webkit-scrollbar-thumb {
    background: #E8D5EB;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #D4B3D6;
}
