/* Smooth scrolling is handled by Tailwind class 'scroll-smooth' on html tag */

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

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

/* Hide scrollbar for cleaner look but keep functionality */
::-webkit-scrollbar {
    width: 8px;
}

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

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

::-webkit-scrollbar-thumb:hover {
    background: #FF69B4;
}

/* Button "Run Away" Animation Class */
.run-away {
    position: absolute;
    transition: all 0.2s ease;
}

/* Preloader Transition */
.fade-out {
    opacity: 0;
    pointer-events: none;
}

.fade-in {
    opacity: 1;
}
