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

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

.font-archivo {
    font-family: 'Archivo', sans-serif;
}

.font-sans {
    font-family: 'DM Sans', sans-serif;
}

/* Mobile menu transitions */
#mobile-menu.open {
    display: flex;
    opacity: 1;
}

#mobile-menu.close {
    opacity: 0;
}

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

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

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

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