/*
Theme Name: Work Booster Europe
Theme URI: https://wbeurope.eu
Author: Work Booster Europe
Author URI: https://wbeurope.eu
Description: Custom WordPress theme for Work Booster Europe - HR solutions across Europe. Features ACF PRO editable content, Custom Post Types, Polylang multilingual support, and GSAP animations.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 8.0
License: Proprietary
Text Domain: wbe-theme
*/

/* ===================================
   CSS Variables (Design Tokens)
   =================================== */

:root {
  /* Primary Colors - from logo purple */
  --color-primary: #4B3BA5;
  --color-primary-dark: #3A2D84;
  --color-primary-light: #5E4DBE;

  /* Accent Colors - from logo pink & green */
  --color-accent-green: #E84B8A;
  --color-accent-green-dark: #D03A78;
  --color-accent-green-light: #F06BA0;
  --color-accent-orange: #00B450;
  --color-accent-orange-dark: #009A42;
  --color-accent-orange-light: #20CC68;

  /* Neutral Colors */
  --color-dark: #1E1545;
  --color-dark-soft: #2A2060;
  --color-light: #F8FAFC;
  --color-light-alt: #EEF2F6;
  --color-white: #FFFFFF;
  --color-gray-100: #f1f5f9;
  --color-gray-200: #e2e8f0;
  --color-gray-300: #cbd5e1;
  --color-gray-400: #94a3b8;
  --color-gray-500: #64748b;
  --color-gray-600: #475569;
  --color-gray-700: #334155;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  --gradient-hero: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 50%, var(--color-primary-dark) 100%);
  --gradient-cta: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent-green) 100%);
  --gradient-accent: linear-gradient(135deg, var(--color-accent-green) 0%, var(--color-accent-orange) 100%);

  /* Typography */
  --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Lora', Georgia, 'Times New Roman', 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: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;
  --font-size-7xl: 4.5rem;

  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;

  --line-height-tight: 1.1;
  --line-height-snug: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.625;

  /* 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;

  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 2rem;
  --radius-full: 9999px;

  /* 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), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glow-green: 0 0 40px rgba(232, 75, 138, 0.3);
  --shadow-glow-primary: 0 0 40px rgba(75, 59, 165, 0.3);

  /* Dark-to-Light Gradient Tiers */
  --bg-tier1-a: #0e0838;
  --bg-tier1-b: #120a40;
  --bg-tier1-c: #1a1050;
  --bg-tier2-dark: #251c60;
  --bg-tier2-light: #e8e3f5;
  --bg-tier3-a: #f0ecf8;
  --bg-tier3-b: #f4f1fa;
  --bg-tier3-c: #f9f7fc;
  --bg-transition-mid: #c0b8dd;

  /* Glass Effect */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-blur: blur(10px);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);

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

  /* Container */
  --container-max: 1280px;
  --container-padding: var(--space-6);
}

@media (prefers-color-scheme: dark) {
  :root {
    /* Can be extended for dark mode support */
  }
}
