/* Explain: Theme design tokens (colors, fonts) — single source of truth */
:root {
    --primary-color: #0f172a; /* Dark Navy Blue */
    --primary-hover: #1e293b;
    --accent-color: #f97316; /* Warm Orange */
    --accent-hover: #ea580c;
    --background-color: #fdfbf7; /* Light beige / Off-white */
    --surface-color: #ffffff;
    --text-color: #111827;
    --text-muted: #4b5563;
    --border-color: #e5e7eb;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}