/* ============================================
   SWEDEN THEME - COLOR VARIABLES
   Zweeds blauw en geel kleurenschema
   ============================================ */

:root {
  /* Primary Colors - Swedish Flag */
  --sweden-blue: #006AA7;
  --sweden-yellow: #FECC00;
  
  /* Blue Variations */
  --blue-dark: #003D5C;
  --blue-medium: #4A9BD1;
  --blue-light: #E8F4F8;
  --blue-pale: #F0F8FC;
  
  /* Yellow Variations */
  --yellow-dark: #D4A800;
  --yellow-light: #FFEB99;
  --yellow-pale: #FFF9E5;
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #EEEEEE;
  --gray-300: #E0E0E0;
  --gray-400: #BDBDBD;
  --gray-500: #9E9E9E;
  --gray-600: #757575;
  --gray-700: #616161;
  --gray-800: #424242;
  --gray-900: #212121;
  
  /* Text Colors */
  --text-primary: #212121;
  --text-secondary: #616161;
  --text-disabled: #9E9E9E;
  --text-on-blue: #FFFFFF;
  --text-on-yellow: #003D5C;
  
  /* Semantic Colors */
  --success: #4CAF50;
  --warning: #FF9800;
  --error: #F44336;
  --info: var(--sweden-blue);
  
  /* Shadows */
  --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.15);
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
}
