/* Custom Styles for Root of Wellness Chiropractic */

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

/* Subtle Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

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

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

::-webkit-scrollbar-thumb {
    background: #800020;
    border-radius: 5px;
}

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

/* Form Focus States */
input:focus, textarea:focus {
    background-color: #FDF2F2;
}

/* Image Hover Effects */
img {
    max-width: 100%;
    height: auto;
}
