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

body {
    /* Custom font fallback if Google Fonts fail */
    font-family: 'Outfit', sans-serif;
}

/* Geometric Shape Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

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

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

::-webkit-scrollbar-track {
    background: #0F172A;
}

::-webkit-scrollbar-thumb {
    background: #34D399;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #10B981;
}

/* Gradient Text Utility */
.text-gradient {
    background: linear-gradient(to right, #0F172A, #34D399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Reveal Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
