/* Base Styles */
body {
    font-family: 'Inter', sans-serif;
}

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

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

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

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

/* Gradients */
.gradient-text {
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: linear-gradient(90deg, #3B82F6, #8B5CF6);
}

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

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Mobile Menu Transition */
#mobileMenu {
    transition: all 0.3s ease-in-out;
}

/* Navbar Background Transition */
#navbar {
    background-color: rgba(17, 24, 39, 0);
}

#navbar.scrolled {
    background-color: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(10px);
    padding-top: 2px;
    padding-bottom: 2px;
}
    