/* Tailwind CSS */
@tailwind base;
@tailwind components;
@tailwind utilities;

/* Rounded Elegance Font */
@font-face {
    font-family: 'Rounded Elegance';
    src: url('/fonts/Rounded_Elegance.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Base styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rounded Elegance', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
}

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

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

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}