@import "tailwindcss";

@theme {
    --color-primary: #1a3a5c;
    --color-primary-dark: #0f2940;
    --color-secondary: #e8a82e;
    --color-secondary-dark: #c98e1f;
    --color-accent: #25d366;
    --color-gray-light: #f5f5f5;
    --color-gray-medium: #e0e0e0;
    --color-gray-dark: #333333;
    --color-text: #444444;
    --color-text-light: #666666;
    --font-sans: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--color-text);
    font-family: var(--font-sans);
}

h1 {
    color: #ffffff;
}

h2,
h3,
h4,
h5,
h6 {
    color: var(--color-primary);
}