/* Custom animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

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

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

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #0ea5e9, #8b5cf6);
    border-radius: 10px;
}

/* Selection colors */
::selection {
    background: #8b5cf6;
    color: white;
}
/* Smooth transitions */
a, button, .language-option {
    transition: all 0.3s ease;
}

/* Language selector in mobile menu */
@media (max-width: 767px) {
    #mobile-menu language-selector {
        display: block;
        margin: 16px 0;
    }
    
    #mobile-menu .language-selector {
        width: 100%;
    }
    
    #mobile-menu .selected-language {
        justify-content: center;
    }
    
    #mobile-menu .language-options {
        position: static;
        margin-top: 8px;
    }
}
/* Responsive tweaks */
@media (max-width: 640px) {
    .hero-text {
        font-size: 2.5rem;
    }
}