/* Custom Styles & Overrides */
html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #F5F5F0;
}
::-webkit-scrollbar-thumb {
    background: #C05621;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #1C1917;
}

/* Animation Utilities */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Loader for images */
img {
    opacity: 0;
    transition: opacity 0.5s ease-in;
}
img.loaded {
    opacity: 1;
}
