/* Explain: Theme design tokens (colors, fonts) — single source of truth. - */
:root {
    /* Primary: Dark Blue */
    --primary-color: #0f2b5b;
    --primary-hover: #173d7a;
    /* Secondary: Light Blue */
    --secondary-color: #38bdf8;
    /* Accent: Gold */
    --accent-color: #d4af37;
    --accent-hover: #b8962e;
    
    --background-color: #ffffff;
    --surface-color: #f8fafc;
    --text-color: #1e293b;
    --text-muted: #475569;
    --border-color: #e2e8f0;
    
    --font-heading: 'Tajawal', sans-serif;
    --font-body: 'Tajawal', sans-serif;
}