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

body {
    font-family: 'Lato', sans-serif;
}

h1, h2, h3, h4, .font-playfair {
    font-family: 'Playfair Display', serif;
}

/* Mobile menu animation */
#mobile-menu {
    transition: all 0.3s ease-in-out;
}

/* Custom scrollbar for webkit */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #1a2c4e;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #0f1c36;
}
