/* Custom Animations and Utilities */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #fbfaf8; /* cream-50 */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f5f3ef;
}
::-webkit-scrollbar-thumb {
    background: #365314;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #2d5a2d;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-bounce-slow {
    animation: float 3s ease-in-out infinite;
}

/* Fade In Animation Classes */
.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);
}

/* Image object-fit fallback */
img {
    max-width: 100%;
    height: auto;
}
