/**
 * WULFENIA JOURNAL CSS VARIABLES
 * ===============================
 * Custom branding for Wulfenia Journal
 * Based on existing site colors: olive green (#9EAF06) and dark grey (#464646)
 */

:root {
    /* =============================================
       COLOR PALETTE - WULFENIA THEME
       ============================================= */
    
    /* Primary Colors - Wulfenia olive/lime green */
    --color-primary: #9EAF06;
    --color-primary-light: #b8c91a;
    --color-primary-dark: #7a8a00;
    --color-primary-rgb: 158, 175, 6;
    
    /* Accent Colors - Wulfenia lime green */
    --color-accent: #9EAF06;
    --color-accent-hover: #8a9a00;
    --color-accent-light: #b8c91a;
    --color-accent-rgb: 158, 175, 6;
    
    /* Secondary - Dark grey */
    --color-secondary: #464646;
    --color-secondary-light: #5a5a5a;
    --color-secondary-dark: #383838;
    
    /* Semantic Colors - Status indicators */
    --color-success: #059669;
    --color-success-light: #10b981;
    --color-success-bg: #d1fae5;
    
    --color-warning: #f59e0b;
    --color-warning-light: #fbbf24;
    --color-warning-bg: #fef3c7;
    
    --color-error: #ef4444;
    --color-error-light: #f87171;
    --color-error-bg: #fee2e2;
    
    --color-info: #0ea5e9;
    --color-info-light: #38bdf8;
    --color-info-bg: #e0f2fe;
    
    /* Neutral Colors */
    --color-text-primary: #1f2937;
    --color-text-secondary: #6b7280;
    --color-text-muted: #9ca3af;
    --color-text-inverse: #ffffff;
    
    --color-bg-page: #f3f3f3;
    --color-bg-card: #ffffff;
    --color-bg-hover: #f0f0f0;
    --color-bg-selected: #f5f7e6;
    
    --color-border: #e5e7eb;
    --color-border-light: #f3f4f6;
    --color-border-dark: #d1d5db;
    
    /* Header/Navigation specific - Original Wulfenia style */
    --color-nav-bg: #464646;
    --color-nav-text: #ffffff;
    --color-nav-hover: #000000;
    --color-nav-hover-alt: #1D7B6A;
    --color-footer-bg: #D8DCDF;
    --color-sidebar-title: #9EAF06;
    
    /* =============================================
       TYPOGRAPHY
       ============================================= */
    
    --font-heading: 'Georgia', 'Times New Roman', 'Palatino Linotype', serif;
    --font-body: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    --font-mono: 'Consolas', 'Monaco', 'Courier New', monospace;
    
    /* 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;
    
    /* Line Heights */
    --leading-tight: 1.25;
    --leading-normal: 1.5;
    --leading-relaxed: 1.75;
    
    /* Font Weights */
    --font-normal: 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;
    
    /* =============================================
       LAYOUT
       ============================================= */
    
    --container-max: 1200px;
    --container-narrow: 800px;
    --container-wide: 1400px;
    
    --header-height: 110px;
    --nav-height: 44px;
    --footer-min-height: 200px;
    
    --sidebar-width: 280px;
    
    /* =============================================
       BORDERS & RADIUS
       ============================================= */
    
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    
    --border-width: 1px;
    --border-width-thick: 2px;
    
    /* =============================================
       SHADOWS
       ============================================= */
    
    --shadow-sm: 0 1px 2px 0 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);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    
    /* =============================================
       TRANSITIONS
       ============================================= */
    
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow: 350ms ease;
    
    /* =============================================
       Z-INDEX LAYERS
       ============================================= */
    
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-popover: 600;
    --z-tooltip: 700;
    --z-toast: 800;
    
    /* =============================================
       COMPONENT VARIABLES
       ============================================= */
    
    /* Buttons */
    --btn-padding-x: var(--space-4);
    --btn-padding-y: var(--space-2);
    --btn-font-size: var(--text-sm);
    --btn-font-weight: var(--font-medium);
    --btn-radius: var(--radius-md);
    
    /* Cards */
    --card-padding: var(--space-6);
    --card-radius: var(--radius-lg);
    --card-shadow: var(--shadow-md);
    
    /* Forms */
    --input-padding-x: var(--space-4);
    --input-padding-y: var(--space-3);
    --input-radius: var(--radius-md);
    --input-border-color: var(--color-border);
    --input-focus-color: var(--color-accent);
    
    /* Tables */
    --table-cell-padding: var(--space-3) var(--space-4);
    --table-border-color: var(--color-border);
    --table-header-bg: var(--color-bg-hover);
    --table-stripe-bg: var(--color-bg-page);
    
    /* Navigation */
    --nav-item-padding: var(--space-2) var(--space-4);
    --nav-active-color: var(--color-accent);
    
    /* Badges */
    --badge-padding: var(--space-1) var(--space-2);
    --badge-font-size: var(--text-xs);
    --badge-radius: var(--radius-full);
}

