/* ====================================
   جود | Joud - Design Tokens (Redesigned)
   ==================================== */
:root {
    /* Primary - University Blue */
    --primary: #093b70;
    --primary-light: #185ba1;
    --primary-dark: #052242;
    --primary-50: #f0f6fc;
    --primary-100: #dceaf7;

    /* Secondary - University Gold */
    --secondary: #b28330;
    --secondary-light: #d6a146;
    --secondary-dark: #856121;
    --secondary-50: #fbf5eb;

    /* Accent - Clean Gray */
    --accent: #64748B;
    --accent-dark: #475569;

    /* Backgrounds */
    --bg-body: #FAFAFA;
    --bg-card: #FFFFFF;
    --bg-header: #FFFFFF;
    --bg-footer: #093b70;
    --bg-hero: #FFFFFF;
    --bg-section-alt: #F4F5F7;
    --bg-glass: rgba(255, 255, 255, 0.95);

    /* Text */
    --text-primary: #1E293B;
    --text-secondary: #475569;
    --text-muted: #94A3B8;
    --text-white: #FFFFFF;
    --text-link: #093b70;

    /* Borders & Shadows */
    --border-color: #E2E8F0;
    --border-radius: 8px;
    /* Sharper borders for minimal look */
    --border-radius-sm: 4px;
    --border-radius-lg: 16px;
    --border-radius-full: 9999px;
    --shadow-sm: 0 2px 4px rgba(9, 59, 112, 0.05);
    --shadow-md: 0 8px 16px -4px rgba(9, 59, 112, 0.08), 0 4px 8px -2px rgba(9, 59, 112, 0.04);
    --shadow-lg: 0 16px 24px -6px rgba(9, 59, 112, 0.12), 0 8px 12px -4px rgba(9, 59, 112, 0.06);
    --shadow-xl: 0 24px 48px -12px rgba(9, 59, 112, 0.18), 0 12px 24px -6px rgba(9, 59, 112, 0.08);
    --shadow-premium: 0 0 0 1px rgba(9, 59, 112, 0.04), 0 20px 40px -10px rgba(9, 59, 112, 0.15);

    /* Typography */
    --font-family: 'Inter', 'Tajawal', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3.5rem;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --line-height: 1.6;

    /* 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;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Z-index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-modal: 300;
    --z-tooltip: 400;

    /* Container */
    --container-max: 1200px;
    --container-padding: var(--space-6);
}