/* Custom styles for Holzmacher Chiropractic */

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

/* Custom selection color */
::selection {
    background-color: #ED64A6; /* coral-500 */
    color: white;
}

/* Subtle fade-in animation for scroll reveal */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, visibility;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
}

/* Form focus styles */
input:focus,
textarea:focus {
    box-shadow: 0 0 0 1px #ED64A6;
}

/* Button hover effects */
button:hover,
a:hover {
    transition: all 0.3s ease;
}

/* Image hover zoom */
img {
    transition: transform 0.5s ease;
}

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

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

::-webkit-scrollbar-thumb {
    background: #2D3748; /* charcoal */
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ED64A6; /* coral */
}
