@tailwind base;
@tailwind components;
@tailwind utilities;

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for background blobs - unchanged as the movement is good */
@keyframes blob {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}

.animate-blob {
    animation: blob 7s infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

.animation-delay-4000 {
    animation-delay: 4s;
}

/* Custom Scrollbar - BRIGHT THEME UPDATE */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f5f9; /* slate-100 */
    border-left: 1px solid #e2e8f0; /* slate-200 */
}
 
/* Handle */
::-webkit-scrollbar-thumb {
    background: #cbd5e1; /* slate-300 */
    border-radius: 5px;
    border: 2px solid #f1f5f9; /* Creates padding around thumb */
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #8A2BE2; /* Brand purple */
}