/* Additional custom styles to complement Tailwind */
body {
    font-family: 'DM Sans', sans-serif;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #F2E8D5;
}
::-webkit-scrollbar-thumb {
    background: #C05640;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #A04030;
}

/* Selection Color */
::selection {
    background: #C05640;
    color: #FFFFFF;
}
