/* variables.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  /* Typography */
  --font-primary: 'Outfit', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  /* Spacing System (8px base) */
  --space-1: 0.5rem;   /* 8px */
  --space-2: 1rem;     /* 16px */
  --space-3: 1.5rem;   /* 24px */
  --space-4: 2rem;     /* 32px */
  --space-6: 3rem;     /* 48px */
  --space-8: 4rem;     /* 64px */
  --space-12: 6rem;    /* 96px */
  --space-16: 8rem;    /* 128px */
  --space-24: 12rem;   /* 192px */

  /* Borders & Radii */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light Theme Variables */
[data-theme="light"] {
  --bg-primary: #f9f9f8;       
  --bg-secondary: #f0f0ed;     
  --bg-tertiary: #e5e5e1;
  --bg-overlay: rgba(249, 249, 248, 0.85);
  
  --text-primary: #121212;     
  --text-secondary: #5c5c5c;   
  --text-inverse: #f9f9f8;
  
  --border-color: #e0e0dc;
  --border-hover: #d0d0cc;
  
  --accent: #b39b7d;           
  --accent-hover: #9c8567;
  
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  
  --nav-bg: rgba(249, 249, 248, 0.9);
}

/* Dark Theme Variables */
[data-theme="dark"] {
  --bg-primary: #0a0a0a;       
  --bg-secondary: #141414;     
  --bg-tertiary: #1f1f1f;
  --bg-overlay: rgba(10, 10, 10, 0.85);
  
  --text-primary: #f9f9f8;     
  --text-secondary: #9e9e9e;   
  --text-inverse: #121212;
  
  --border-color: #2a2a2a;
  --border-hover: #3a3a3a;
  
  --accent: #c4ab8d;           
  --accent-hover: #dac1a3;
  
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.5);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.6), 0 2px 4px -1px rgba(0,0,0,0.4);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.6), 0 4px 6px -2px rgba(0,0,0,0.4);
  
  --nav-bg: rgba(10, 10, 10, 0.9);
}
