@tailwind base;
@tailwind components;
@tailwind utilities;

/* Custom Animations */
@keyframes wave {

    0%,
    100% {
        height: 0.5rem;
    }

    50% {
        height: 1.25rem;
    }
}

.animate-wave {
    animation: wave 1s infinite ease-in-out;
}

.animation-delay-100 {
    animation-delay: 0.1s;
}

.animation-delay-200 {
    animation-delay: 0.2s;
}

.animation-delay-300 {
    animation-delay: 0.3s;
}

.animation-delay-400 {
    animation-delay: 0.4s;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Form Focus States */
input:focus,
textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
    /* Brand Blue with opacity */
}