/* ==========================================================================
   DANSK COOKWARE - BRIGHT SCANDINAVIAN DESIGN SYSTEM
   Inspired by Kobenstyle Enamel Colors & Mid-Century Modern Design
   ========================================================================== */

:root {
  /* ==========================================================================
     KOBENSTYLE SIGNATURE COLORS - The Heart of the Brand
     ========================================================================== */

  /* Primary - Vibrant Teal/Turquoise (Fresh, Modern, Scandinavian) */
  --color-teal: #00A5A8;
  --color-teal-light: #4CC9CB;
  --color-teal-dark: #007A7D;

  /* Chili Red - Bold, Warm, Iconic */
  --color-red: #D32F2F;
  --color-red-light: #EF5350;
  --color-red-dark: #B71C1C;

  /* Sun Gold Yellow - Cheerful, Energetic */
  --color-yellow: #F9A825;
  --color-yellow-light: #FDD835;
  --color-yellow-dark: #F57F17;

  /* Midnight Blue - Classic, Trustworthy */
  --color-blue: #1E3A5F;
  --color-blue-light: #2E5B8A;
  --color-blue-dark: #0F1F33;

  /* ==========================================================================
     BRAND ASSIGNMENT
     ========================================================================== */

  --color-primary: var(--color-teal);
  --color-primary-light: var(--color-teal-light);
  --color-primary-dark: var(--color-teal-dark);

  --color-secondary: var(--color-red);
  --color-secondary-light: var(--color-red-light);
  --color-secondary-dark: var(--color-red-dark);

  --color-accent: var(--color-yellow);

  /* ==========================================================================
     NEUTRAL PALETTE - Scandinavian Light & Airy
     ========================================================================== */

  --color-white: #FFFFFF;
  --color-cream: #FFFEF7;
  --color-ivory: #FAF8F3;
  --color-sand: #F5F0E6;
  --color-warm-gray: #E8E2D6;
  --color-stone: #D4CCC0;
  --color-wood: #B8A992;

  /* Text Colors - Warm Neutrals */
  --color-text: #2C2825;
  --color-text-muted: #6B6560;
  --color-text-light: #9A948C;
  --color-text-inverse: #FFFFFF;

  /* ==========================================================================
     SURFACE COLORS
     ========================================================================== */

  --color-bg: var(--color-white);
  --color-bg-alt: var(--color-ivory);
  --color-bg-warm: var(--color-sand);
  --color-bg-dark: var(--color-blue-dark);

  /* ==========================================================================
     BORDER & INTERACTION
     ========================================================================== */

  --color-border: var(--color-warm-gray);
  --color-border-light: var(--color-sand);
  --color-focus: var(--color-teal);

  /* ==========================================================================
     STATUS COLORS
     ========================================================================== */

  --color-success: #4CAF50;
  --color-warning: var(--color-yellow);
  --color-error: var(--color-red);
  --color-info: var(--color-blue-light);

  /* ==========================================================================
     TYPOGRAPHY - Clean Scandinavian
     ========================================================================== */

  /* Fonts */
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-mono: 'JetBrains Mono', 'Consolas', monospace;

  /* Weights */
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;

  /* Scale - Fluid & Readable */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.5rem;
  --text-6xl: 4.5rem;

  /* Line Heights */
  --leading-tight: 1.2;
  --leading-snug: 1.35;
  --leading-normal: 1.5;
  --leading-relaxed: 1.65;

  /* Letter Spacing */
  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.05em;
  --tracking-wider: 0.1em;

  /* ==========================================================================
     SPACING - Open & Breathable
     ========================================================================== */

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

  /* ==========================================================================
     LAYOUT
     ========================================================================== */

  --container-max: 1400px;
  --container-narrow: 900px;
  --container-wide: 1600px;

  /* ==========================================================================
     RADIUS - Soft & Friendly
     ========================================================================== */

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* ==========================================================================
     SHADOWS - Subtle Elevation
     ========================================================================== */

  --shadow-sm: 0 1px 3px rgba(44, 40, 37, 0.08);
  --shadow-md: 0 4px 12px rgba(44, 40, 37, 0.1);
  --shadow-lg: 0 8px 24px rgba(44, 40, 37, 0.12);
  --shadow-xl: 0 16px 48px rgba(44, 40, 37, 0.15);
  --shadow-inner: inset 0 2px 8px rgba(44, 40, 37, 0.06);

  /* ==========================================================================
     TRANSITIONS
     ========================================================================== */

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --duration-slow: 400ms;

  /* ==========================================================================
     Z-INDEX
     ========================================================================== */

  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-toast: 500;

  /* ==========================================================================
     COMPONENT SIZING
     ========================================================================== */

  --btn-height-sm: 36px;
  --btn-height-md: 44px;
  --btn-height-lg: 52px;
  --btn-height-xl: 60px;

  --input-height: 48px;

  --header-height: 72px;
}
