/**
 * CSS Variables - Realnih Digital
 * Design System inspired by SEO Light theme
 */

:root {
    /* Primary Colors - Blue Sky Gradient (Bright & Fresh) */
    --primary-navy: #1e40af;
    --primary-dark: #1e40af; /* Alias for primary-navy */
    --primary-blue: #3b82f6;
    --primary-light: #60a5fa;
    --primary-sky: #0ea5e9;
    --primary-gradient: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 50%, #60a5fa 100%);

    /* Accent Colors - Pink & Orange */
    --accent-pink: #ff4d94;
    --accent-pink-hover: #ff6b6b;
    --accent-orange: #ff8c42;
    --accent-gradient: linear-gradient(135deg, #ff4d94 0%, #ff6b6b 50%, #ff8c42 100%);

    /* Secondary Colors */
    --secondary-cyan: #06b6d4;
    --secondary-purple: #8b5cf6;

    /* Neutral Colors */
    --white: #ffffff;
    --light-bg: #f8fafc;
    --gray-50: #f9fafb;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --dark: #1e293b;
    --black: #0f172a;

    /* Semantic Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;

    /* Font Families */
    --font-primary: 'Inter', 'Segoe UI', 'Roboto', -apple-system, sans-serif;
    --font-headings: 'Plus Jakarta Sans', 'Inter', sans-serif;

    /* Font Sizes */
    --text-xs: 0.75rem;      /* 12px */
    --text-sm: 0.875rem;     /* 14px */
    --text-base: 1rem;       /* 16px */
    --text-lg: 1.125rem;     /* 18px */
    --text-xl: 1.25rem;      /* 20px */
    --text-2xl: 1.5rem;      /* 24px */
    --text-3xl: 1.875rem;    /* 30px */
    --text-4xl: 2.25rem;     /* 36px */
    --text-5xl: 3rem;        /* 48px */
    --text-6xl: 3.75rem;     /* 60px */

    /* Font Weights */
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;

    /* Line Heights */
    --leading-tight: 1.25;
    --leading-normal: 1.5;
    --leading-relaxed: 1.75;

    /* Spacing System (8px base) */
    --spacing-1: 0.25rem;    /* 4px */
    --spacing-2: 0.5rem;     /* 8px */
    --spacing-3: 0.75rem;    /* 12px */
    --spacing-4: 1rem;       /* 16px */
    --spacing-5: 1.25rem;    /* 20px */
    --spacing-6: 1.5rem;     /* 24px */
    --spacing-8: 2rem;       /* 32px */
    --spacing-10: 2.5rem;    /* 40px */
    --spacing-12: 3rem;      /* 48px */
    --spacing-16: 4rem;      /* 64px */
    --spacing-20: 5rem;      /* 80px */
    --spacing-24: 6rem;      /* 96px */

    /* Border Radius */
    --radius-sm: 0.375rem;   /* 6px */
    --radius-md: 0.5rem;     /* 8px */
    --radius-lg: 0.75rem;    /* 12px */
    --radius-xl: 1rem;       /* 16px */
    --radius-2xl: 1.5rem;    /* 24px */
    --radius-full: 9999px;   /* Fully rounded */

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-pink-glow: 0 4px 20px rgba(255, 77, 148, 0.4);
    --shadow-blue-glow: 0 4px 20px rgba(59, 130, 246, 0.4);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Container Max Width */
    --container-max: 1200px;
    --container-wide: 1400px;
    --container-narrow: 800px;
}
