/* Custom styles beyond Tailwind */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #FDFCF8;
}

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

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

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

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

/* Animation utilities */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth image loading */
img {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

img[data-src] {
    opacity: 0;
}
