/* Explain: Theme design tokens for colors, fonts, and overall site identity. - */
:root {
    --primary-color: #0f172a; /* Slate 900 - Deep Navy */
    --primary-hover: #1e293b;
    --secondary-color: #991b1b; /* Red 800 - Crimson */
    --accent-color: #d97706; /* Amber 600 - Gold */
    --background-color: #f8fafc;
    --surface-color: #ffffff;
    --text-color: #334155;
    --text-muted: #64748b;
    --border-color: #e2e8f0;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}