/* ============================================
   Takween Foundation - CSS Variables
   جمعية تكوين للتنمية والتطوير
   ============================================ */

:root {
    /* Primary Colors - Flat Design Only */
    --color-primary: #026632;
    --color-primary-dark: #01522a;
    --color-primary-light: #038a43;

    /* Secondary/Accent Color */
    --color-accent: #f48d04;
    --color-accent-dark: #d47a03;
    --color-accent-light: #ff9f1c;

    /* Neutral Colors */
    --color-white: #ffffff;
    --color-bg-light: #f8f9fa;
    --color-bg-gray: #f0f2f5;
    --color-text-primary: #1a1a1a;
    --color-text-secondary: #4a4a4a;
    --color-text-muted: #6c757d;
    --color-border: #e0e0e0;
    --color-border-light: #eeeeee;

    /* Typography */
    --font-arabic: 'Cairo', 'Noto Sans Arabic', sans-serif;
    --font-english: 'Inter', 'Segoe UI', sans-serif;
    --font-urdu: 'Noto Nastaliq Urdu', 'Jameel Noori Nastaleeq', serif;

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

    /* Font Weights */
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 6rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 50%;

    /* Shadows - Subtle */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow: 350ms ease;

    /* Container Widths */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1200px;
    --container-2xl: 1400px;

    /* Header Height */
    --header-height: 80px;
    --header-height-mobile: 64px;

    /* Z-Index Layers */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-tooltip: 600;
}

/* RTL Support Variables */
[dir="rtl"] {
    --text-align: right;
    --flex-direction: row-reverse;
}

[dir="ltr"] {
    --text-align: left;
    --flex-direction: row;
}
