/* ============================================
   Design System Variables - Bni Drar Morocco
   Farm Green, Cream Sand, and Harvest Gold
   ============================================ */

:root {
    /* ===== Farm Green (Deep & Trustworthy) ===== */
    --color-primary-50: #ecfdf5;
    --color-primary-100: #d1fae5;
    --color-primary-200: #a7f3d0;
    --color-primary-300: #6ee7b7;
    --color-primary-400: #34d399;
    --color-primary-500: #059669;
    --color-primary-600: #047857;
    --color-primary-700: #047857;
    --color-primary-800: #065f46;
    --color-primary-900: #064e3b;
    --color-primary-950: #022c22;

    /* ===== Harvest Gold (Rich Accent) ===== */
    --color-accent-50: #fffbeb;
    --color-accent-100: #fef3c7;
    --color-accent-200: #fde68a;
    --color-accent-300: #ecc06a;
    --color-accent-400: #eab308;
    --color-accent-500: #ca8a04;
    --color-accent-600: #b06f24;
    --color-accent-700: #b45309;
    --color-accent-800: #92400e;
    --color-accent-900: #78350f;

    /* ===== Neutral (Warm Grays) ===== */
    --color-neutral-50: #f9fafb;
    --color-neutral-100: #f3f4f6;
    --color-neutral-200: #e5e7eb;
    --color-neutral-300: #d1d5db;
    --color-neutral-400: #9ca3af;
    --color-neutral-500: #6b7280;
    --color-neutral-600: #4b5563;
    --color-neutral-700: #374151;
    --color-neutral-800: #1f2937;
    --color-neutral-900: #111827;

    /* Semantic Colors */
    --color-success: #166534;
    --color-warning: #9a3412;
    --color-error: #991b1b;
    --color-info: #155e75;

    /* ===== Light Theme (Warm & Clean) ===== */
    --bg-primary: #fdfbf7;
    /* Extremely light cream */
    --bg-secondary: #f4f1ea;
    /* Soft beige */
    --bg-tertiary: #e9e5dc;
    /* Darker beige for borders/accents */
    --bg-elevated: #ffffff;
    /* Pure white for cards */
    --bg-surface: var(--bg-elevated);
    --surface-300: var(--border-color);

    --text-primary: #1a231d;
    /* Nearly black green */
    --text-secondary: #404f44;
    /* Deep distinct grey-green */
    --text-tertiary: #6b7c70;

    --border-color: rgba(26, 35, 29, 0.08);
    --border-razor: 1px solid rgba(26, 35, 29, 0.1);
    --border-color-strong: rgba(26, 35, 29, 0.2);
    --shadow-color: rgba(26, 35, 29, 0.06);

    /* ===== Gradients & Glass ===== */
    --gradient-primary: linear-gradient(135deg, #fdfbf7 0%, #f4f1ea 100%);
    --gradient-gold: linear-gradient(135deg, #ca8a04 0%, #b06f24 100%);

    --glass-bg: rgba(253, 251, 247, 0.85);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-blur: 12px;
    --glass-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);

    /* ===== Spacing System (Generous Whitespace) ===== */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 3.5rem;
    --space-2xl: 5rem;
    --space-3xl: 7.5rem;
    --space-4xl: 10rem;
    --space-5xl: 12rem;

    /* ===== Typography (Village Warm) ===== */
    --font-family-primary: 'Cairo', 'Inter', sans-serif;
    /* Added Inter for clear UI text */
    --font-family-heading: 'Amiri', 'Playfair Display', serif;

    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-md: var(--font-size-base);
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2.25rem;
    --font-size-4xl: 3rem;
    --font-size-5xl: 4rem;
    --font-size-6xl: 5rem;
    --font-size-7xl: 6rem;

    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    --line-height-tight: 1.1;
    --line-height-normal: 1.6;
    --line-height-relaxed: 1.8;

    /* ===== Edges (Soft/Organic) ===== */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    /* ===== Shadows (Soft/Organic) ===== */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02), 0 4px 8px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.04), 0 12px 24px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 8px 12px rgba(0, 0, 0, 0.06), 0 24px 48px rgba(0, 0, 0, 0.06);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.08), 0 32px 64px rgba(0, 0, 0, 0.08);

    /* ===== Transitions (Calm) ===== */
    --transition-base: 200ms ease;
    --transition-slow: 400ms ease;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

    /* ===== Z-Index Scale ===== */
    --z-dropdown: 100;
    --z-sticky: 500;
    --z-fixed: 1000;
    --z-navigation: 1100;
    --z-skip-link: 1200;
    --z-modal: 2000;

    /* ===== Container ===== */
    --container-max-width: 1400px;
    --container-padding: 2rem;
}

/* Dark mode removed — this site uses light mode only. */
