/* Custom Styles for Plumbing Companies Landing Page */

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

/* Waveform Animation */
@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;
}

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

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

::-webkit-scrollbar-thumb {
    background: #0284c7;
    /* Plumbing Blue */
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0369a1;
}

/* Form Focus States */
input:focus,
textarea:focus {
    outline: none;
    border-color: #0284c7;
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.2);
}

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