/* tokens.css - Design Tokens for Alamaran */

:root {
    /* Color Palette: Editorial, warm, sophisticated */
    --color-bg: #F9F8F6; /* Warm off-white */
    --color-text: #1A1A1A; /* Near black */
    --color-text-muted: #555555;
    --color-accent: #C44536; /* Terracotta / Brick Red */
    --color-surface: #FFFFFF;
    --color-border: #E0DDD8;

    /* Typography */
    /* Amiri for display/serif, IBM Plex Sans Arabic for text/sans */
    --font-display: 'Amiri', serif;
    --font-text: 'IBM Plex Sans Arabic', sans-serif;

    /* Font Sizes - Modular Scale */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    --text-7xl: 4.5rem;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Layout */
    --container-width: 1200px;
    --content-width: 800px;

    /* Borders */
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 8px;

    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 300ms ease-in-out;
}
