/* CSS Variables - Design Tokens */
:root {
  /* Colors - Light Mode (Inspired by deeperjapan.com) */
  --color-background: #ffffff;
  --color-background-alt: #f7f7f5;
  --color-text-primary: #1a1a1a;
  --color-text-secondary: #6b6b6b;
  --color-accent: #B18449;
  --color-accent-hover: #9a7340;
  --color-accent-dark: #1a1a1a;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-border: #e5e5e5;

  /* Typography */
  --font-primary: 'Cormorant Garamond', Georgia, serif;
  --font-secondary: 'Montserrat', 'Helvetica Neue', sans-serif;

  /* Font Sizes - Larger for premium feel */
  --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;
  --text-7xl: 5.5rem;
  --text-8xl: 6.5rem;

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

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

  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --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;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;

  /* Container */
  --container-max: 1200px;
  --container-padding: var(--space-4);
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
  :root {
    --color-background: #1a1a1a;
    --color-background-alt: #2d2d2d;
    --color-text-primary: #f5f5f5;
    --color-text-secondary: #b0b0b0;
    --color-accent: #d4945f;
    --color-accent-dark: #4a9aa5;
  }
}

/* Manual Dark Mode Toggle */
[data-theme="dark"] {
  --color-background: #1a1a1a;
  --color-background-alt: #2d2d2d;
  --color-text-primary: #f5f5f5;
  --color-text-secondary: #b0b0b0;
  --color-accent: #d4945f;
  --color-accent-dark: #4a9aa5;
}
