/* static/css/tokens.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* Fallback to Inter if Google Sans Flex is not available locally */
:root {
    /* Typography */
    --font-primary: 'Google Sans Flex', 'Inter', -apple-system, sans-serif;
    --font-heading: 'Google Sans Flex', 'Playfair Display', serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 3.5rem;
    --spacing-xxl: 4.5rem;
    
    /* Borders & Shadows */
    --border-radius-sm: 0px; /* Sharp luxury edges */
    --border-radius-md: 2px;
    --border-radius-lg: 4px;
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.08); /* Sophisticated subtle shadow */
    --shadow-md: 0 10px 30px rgba(0,0,0,0.15);
    
    /* Colors (Fallback, meant to be overridden by Jinja injection) */
    --color-primary: #111111;
    --color-secondary: #D4AF37; /* Metallic Gold */
    --color-accent: #ffffff;
    
    /* Neutral Palette */
    --color-background: #FAFAFA; /* Off-white for body to make cards stand out */
    --color-surface: #ffffff;
    --color-text: #222222;
    --color-text-light: #666666;
    --color-border: #E5E5E5;
    --color-success: #1E4620;
    --color-error: #5C1A1A;
}

@media (max-width: 768px) {
    :root {
        --spacing-md: 1rem;
        --spacing-lg: 1.5rem;
        --spacing-xl: 2.5rem;
        --spacing-xxl: 3.5rem;
    }
}
