/* Custom styles for Summit Acupuncture */

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

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

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

::-webkit-scrollbar-thumb {
    background: #C8D3C9;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9FB0A0;
}

/* Selection color */
::selection {
    background-color: #C8D3C9;
    color: #2C3D2E;
}

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

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

/* Gradient text effect (if needed) */
.gradient-text {
    background: linear-gradient(135deg, #5C7A5D 0%, #9FB0A0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtle hover effects for interactive elements */
button, a {
    transition: all 0.3s ease;
}

/* Focus styles for accessibility */
:focus-visible {
    outline: 2px solid #5C7A5D;
    outline-offset: 2px;
}

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

/* Prevent layout shift on images */
img {
    max-width: 100%;
    height: auto;
}
