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

body {
    /* Custom font setup is in head, this ensures no flash */
    font-family: 'Outfit', sans-serif;
}

/* Gradient text utility if needed outside tailwind config */
.text-gradient {
    background: linear-gradient(135deg, #4C1D95 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Subtle float animation for hero elements */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Hide scrollbar for cleaner look in modal if needed */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
