/* Explain: Theme design tokens (colors, fonts) — single source of truth. - */
:root {
    --primary-color: #0f172a; /* Navy Blue */
    --primary-hover: #1e293b;
    --secondary-color: #475569;
    --accent-color: #2563eb; /* Vibrant Blue for Accent */
    --accent-hover: #1d4ed8;
    --background-color: #ffffff;
    --surface-color: #f8fafc;
    --text-color: #0f172a;
    --text-muted: #475569;
    --border-color: #e2e8f0;
    --font-heading: 'Tajawal', sans-serif;
    --font-body: 'Tajawal', sans-serif;
}