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

body {
    background-color: #E7E5E4; /* stone-100 */
}

/* Geometric decorative elements */
.geometric-accent {
    position: absolute;
    z-index: -1;
}

/* Smooth image loading */
img {
    loading: lazy;
}

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

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

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

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