@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #6366f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4f46e5;
}

.dark ::-webkit-scrollbar-track {
    background: #1e1e2d;
}

.dark ::-webkit-scrollbar-thumb {
    background: #8b5cf6;
}

.dark ::-webkit-scrollbar-thumb:hover {
    background: #7c3aed;
}

/* Animation classes */
.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Transition for theme toggle */
.theme-transition * {
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}