/* Explain: Theme colors and fonts for a dark mode aesthetic. - */
:root {
    --primary-color: #3b82f6;
    --primary-hover: #2563eb;
    --secondary-color: #27272a;
    --accent-color: #60a5fa;
    --logo-subtitle-color: #93c5fd;
    --button-color: #3b82f6;
    --background-color: #18181b;
    --surface-color: #27272a;
    --footer-bg: #18181b;
    --text-color: #f4f4f5;
    --text-muted: #a1a1aa;
    --border-color: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(39, 39, 42, 0.72);
    --glass-border: rgba(255, 255, 255, 0.15);
    --nav-bg: rgba(24, 24, 27, 0.85);
    --field-bg: #3f3f46;
    --sage-soft: rgba(96, 165, 250, 0.15);
    --sage-dark: #93c5fd;
    --terracotta-soft: rgba(147, 197, 253, 0.22);
    --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.4);
    --shadow-button: 0 8px 20px rgba(59, 130, 246, 0.3);
    --font-heading: 'Lora', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-logo: 'Playfair Display', serif;
}