/* Explain: Theme design tokens (colors, fonts) — single source of truth */
:root {
    --primary-color: #1e3a8a; /* Elegant Navy Blue */
    --primary-hover: #172554; 
    --secondary-color: #334155; /* Slate 700 */
    --accent-color: #c4a265; /* Elegant Resort Gold */
    --background-color: #fafaf9; /* Warm off-white */
    --surface-color: #ffffff;
    --text-color: #1c1917;
    --text-muted: #57534e;
    --border-color: rgba(0, 0, 0, 0.05);
    --font-heading: 'Rubik', system-ui, sans-serif;
    --font-body: 'Heebo', system-ui, sans-serif;
}
