/**
 * CSS Variables - Color Palette and Design Tokens
 * RGyDH Journal v2
 */

:root {
    /* Color Palette */
    --color-background: #fcfcfc;
    --color-secondary: #8B0000;      /* Dark Red - menus, borders, buttons */
    --color-accent: #C5A059;          /* Gold - titles, texts */
    --color-text-primary: #333333;    /* Dark gray for body text */
    --color-text-secondary: #666666;  /* Medium gray for secondary text */
    --color-white: #ffffff;
    
    /* Hover States */
    --color-secondary-hover: #6b0000;
    --color-accent-hover: #b39049;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Typography */
    --font-primary: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Merriweather', Georgia, serif;
    
    --font-size-small: 0.875rem;
    --font-size-base: 1rem;
    --font-size-medium: 1.125rem;
    --font-size-large: 1.25rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 2rem;
    --font-size-3xl: 2.5rem;
    
    /* Layout */
    --container-max-width: 1200px;
    --content-max-width: 800px;
    --sidebar-width: 300px;
    
    /* Borders */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-width: 1px;
    --border-width-thick: 2px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}
