/* css/variables.css */

:root {
  /* Dark Theme (Default) */
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #1a1a1a;
  --bg-card: #141414;
  --bg-elevated: #1e1e1e;
  --bg-overlay: rgba(0, 0, 0, 0.85);
  --bg-glass: rgba(10, 10, 10, 0.8);

  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-tertiary: #666666;
  --text-muted: #444444;

  --accent: #c9a96e;
  --accent-hover: #d4b87a;
  --accent-muted: rgba(201, 169, 110, 0.15);
  --accent-glow: rgba(201, 169, 110, 0.3);

  --border: #222222;
  --border-light: #2a2a2a;
  --border-accent: rgba(201, 169, 110, 0.3);

  --danger: #e74c3c;
  --success: #2ecc71;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Sizing */
  --container-max: 1400px;
  --container-narrow: 1000px;
  --navbar-height: 72px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  --transition-slower: 800ms ease;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 20px rgba(201, 169, 110, 0.15);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 50%;
}

[data-theme="light"] {
  --bg-primary: #faf9f7;
  --bg-secondary: #f5f3f0;
  --bg-tertiary: #eeece8;
  --bg-card: #ffffff;
  --bg-elevated: #ffffff;
  --bg-overlay: rgba(255, 255, 255, 0.9);
  --bg-glass: rgba(250, 249, 247, 0.85);

  --text-primary: #1a1a1a;
  --text-secondary: #555555;
  --text-tertiary: #888888;
  --text-muted: #bbbbbb;

  --accent: #8B7355;
  --accent-hover: #7a644a;
  --accent-muted: rgba(139, 115, 85, 0.1);
  --accent-glow: rgba(139, 115, 85, 0.2);

  --border: #e5e2dd;
  --border-light: #eeece8;
  --border-accent: rgba(139, 115, 85, 0.3);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 20px rgba(139, 115, 85, 0.1);
}