/* =====================================================
   LIBRARYDOOR - Design Tokens
   Inherited from The Library Speakeasy
   ===================================================== */

:root {
  /* Primary Colors */
  --color-midnight: #0a0a0a;
  --color-leather: #1a1714;
  --color-charcoal: #2a2622;

  /* Accent Colors */
  --color-copper: #b87333;
  --color-copper-light: #d4965a;
  --color-copper-dark: #8b5a2b;
  --color-gold: #d4af37;
  --color-gold-dim: #a68b2e;

  /* Text Colors */
  --color-cream: #f5f0e6;
  --color-parchment: #c9b99a;
  --color-muted: #8b8178;

  /* Status Colors */
  --color-success: #2ecc71;
  --color-error: #c0392b;

  /* Utility Colors */
  --color-overlay: rgba(10, 10, 10, 0.85);
  --color-overlay-heavy: rgba(10, 10, 10, 0.95);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Cormorant Garamond', Garamond, serif;
  --font-accent: 'Cinzel', serif;

  /* Font Sizes */
  --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: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;

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

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;

  /* Borders & Radius */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px rgba(184, 115, 51, 0.3);
  --shadow-glow-gold: 0 0 30px rgba(212, 175, 55, 0.4);
  --shadow-glow-success: 0 0 30px rgba(46, 204, 113, 0.4);
  --shadow-glow-error: 0 0 30px rgba(192, 57, 43, 0.4);

  /* Transitions */
  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;
  --duration-slower: 800ms;
  --ease-default: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Z-Index */
  --z-base: 0;
  --z-above: 10;
  --z-overlay: 100;
  --z-modal: 1000;
}
