/* Custom Styles for Kind & Karing Hearts */

html {
    scroll-behavior: smooth;
}

body {
    /* Custom properties for easy theming */
    --color-primary: #c7764d;
    --color-secondary: #9f5032;
}

/* Fade-in animation for scroll elements */
.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);
}

/* Staggered animation delays */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

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

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

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

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

/* Map grayscale transition handled in HTML class */
