/* CSS Variables - Design System */
:root {
    /* Colors - Based on Golban AG brand */
    --color-gold: #D4AF37;
    --color-gold-light: #E5C858;
    --color-gold-dark: #B8941F;
    
    --color-orange: #FF6B35;
    --color-orange-light: #FFB885;
    --color-orange-dark: #E55A2B;
    
    --color-black: #1A1A1A;
    --color-grey-900: #2D2D2D;
    --color-grey-800: #404040;
    --color-grey-700: #525252;
    --color-grey-600: #666666;
    --color-grey-500: #808080;
    --color-grey-400: #999999;
    --color-grey-300: #B3B3B3;
    --color-grey-200: #CCCCCC;
    --color-grey-100: #E6E6E6;
    --color-grey-50: #F5F5F5;
    --color-white: #FFFFFF;
    
    /* Semantic Colors */
    --color-primary: var(--color-gold);
    --color-secondary: var(--color-orange);
    --color-text: var(--color-black);
    --color-text-light: var(--color-grey-600);
    --color-background: var(--color-white);
    --color-background-alt: var(--color-grey-50);
    
    /* Typography */
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Font Sizes */
    --text-xs: 0.75rem;     /* 12px */
    --text-sm: 0.875rem;    /* 14px */
    --text-base: 1rem;      /* 16px */
    --text-lg: 1.125rem;    /* 18px */
    --text-xl: 1.25rem;     /* 20px */
    --text-2xl: 1.5rem;     /* 24px */
    --text-3xl: 1.875rem;   /* 30px */
    --text-4xl: 2.25rem;    /* 36px */
    --text-5xl: 3rem;       /* 48px */
    --text-6xl: 3.75rem;    /* 60px */
    --text-7xl: 4.5rem;     /* 72px */
    
    /* Font Weights */
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    
    /* Line Heights */
    --leading-tight: 1.25;
    --leading-normal: 1.5;
    --leading-relaxed: 1.75;
    
    /* Spacing */
    --space-1: 0.25rem;     /* 4px */
    --space-2: 0.5rem;      /* 8px */
    --space-3: 0.75rem;     /* 12px */
    --space-4: 1rem;        /* 16px */
    --space-5: 1.25rem;     /* 20px */
    --space-6: 1.5rem;      /* 24px */
    --space-8: 2rem;        /* 32px */
    --space-10: 2.5rem;     /* 40px */
    --space-12: 3rem;       /* 48px */
    --space-16: 4rem;       /* 64px */
    --space-20: 5rem;       /* 80px */
    --space-24: 6rem;       /* 96px */
    --space-32: 8rem;       /* 128px */
    
    /* Container */
    --container-max: 1400px;
    --container-padding: var(--space-6);
    
    /* Border Radius */
    --radius-sm: 0.25rem;   /* 4px */
    --radius-base: 0.5rem;  /* 8px */
    --radius-lg: 1rem;      /* 16px */
    --radius-xl: 1.5rem;    /* 24px */
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-base: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* Z-index */
    --z-dropdown: 50;
    --z-header: 100;
    --z-modal: 200;
    --z-mobile-menu: 150;
    
    /* Breakpoints (for reference in JS) */
    --breakpoint-sm: 640px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 1024px;
    --breakpoint-xl: 1280px;
    --breakpoint-2xl: 1536px;
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    :root {
        /* Add dark mode colors if needed */
    }
}
