/**
 * CSS Custom Properties - Dailydishy Theme
 * All brand colors, typography, spacing, and design tokens
 */

:root {
    /* Brand Colors - Based on Dailydishy Logo */
    --dh-green: #205028;
    --dh-green-dark: #18391c;
    --dh-green-light: #f0f6f1;
    --dh-green-mid: #d4e8d7;
    --dh-accent: #a3cd66;
    --dh-accent-dark: #8bb854;
    --dh-accent-light: #e8f4d9;

    /* Neutral Colors */
    --dh-white: #fff;
    --dh-black: #1a1a1a;
    --dh-text: #1c1c1c;
    --dh-text-body: #3a3a3a;
    --dh-text-muted: #777;
    --dh-border: #e4e4e4;
    --dh-bg: #fff;
    --dh-bg-soft: #fafafa;

    /* Typography */
    --dh-font-serif: 'Lora', Georgia, serif;
    --dh-font-serif-display: 'Playfair Display', Georgia, serif;
    --dh-font-ui: 'Inter', system-ui, -apple-system, sans-serif;

    /* Spacing */
    --dh-space-xs: 4px;
    --dh-space-sm: 8px;
    --dh-space-md: 16px;
    --dh-space-lg: 24px;
    --dh-space-xl: 32px;
    --dh-space-2xl: 48px;
    --dh-space-3xl: 64px;

    /* Border Radius */
    --dh-radius-sm: 8px;
    --dh-radius: 12px;
    --dh-radius-lg: 16px;
    --dh-radius-full: 9999px;

    /* Shadows */
    --dh-shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06);
    --dh-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --dh-shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);

    /* Transitions */
    --dh-ease: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    --dh-ease-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);

    /* Layout */
    --dh-content-width: 720px;
    --dh-container-width: 1160px;
    --dh-header-height: 72px;
    --dh-sidebar-width: 300px;
}

/* Dark mode support (future) */
@media (prefers-color-scheme: dark) {
    :root {
        /* Override with dark values when needed */
    }
}
