/* Custom Animations and Complex Utilities not easily mapped to pure Tailwind classes */

html {
    scroll-behavior: smooth;
}

.glass-bg {
    background: rgba(17, 69, 74, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s cubic-bezier(0.5, 0, 0, 1);
}

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

@keyframes float-bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

.wa-float-anim {
    animation: float-bounce 2s infinite;
}

.wa-float-anim:hover {
    animation: none;
}

