/* Custom Styles for Tompkinsville Nutrition */

html {
    scroll-behavior: smooth;
}

body {
    background-color: #f8fafc; /* Slate 50 */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #0a192f;
}
::-webkit-scrollbar-thumb {
    background: #d4af37;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #e5c158;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0; /* Start hidden */
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

/* Utility to hide elements before animation */
.js-animate {
    opacity: 0;
}
.js-animate.is-in-view {
    opacity: 1;
    animation: fadeInUp 0.8s ease-out forwards;
}
