/* Explain: Theme design tokens (colors, fonts) — single source of truth. - */
:root {
    /* Royal Blue and Gold Theme */
    --primary-color: #1e3a8a; /* Royal Blue */
    --primary-hover: #172554;
    --secondary-color: #273c75;
    --accent-color: #d4af37; /* Gold */
    --accent-hover: #b8860b;
    --background-color: #f8fafc;
    --surface-color: #ffffff;
    --text-color: #0f172a;
    --text-muted: #475569;
    --border-color: #e2e8f0;
    
    /* Fonts supporting Hebrew */
    --font-heading: 'Frank Ruhl Libre', serif;
    --font-body: 'Assistant', sans-serif;
}