/* ARGR - Premium Variables & Theme Configuration */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    /* Fonts */
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-serif: 'Instrument Serif', Georgia, serif;

    /* Spacing System - Architectural Spacing */
    --space-2xs: 0.25rem;
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4.5rem;
    --space-4xl: 6rem;
    --space-section: 8rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Default Theme Variables (Dark Mode as Primary/Default for Tech Luxury) */
    --bg-primary: #070708;
    --bg-secondary: #0e0e10;
    --bg-tertiary: #16161a;
    
    --text-primary: #f5f5f7;
    --text-secondary: #a1a1aa;
    --text-muted: #61616a;
    
    --border-color: rgba(255, 255, 255, 0.06);
    --border-color-hover: rgba(255, 255, 255, 0.12);
    --border-glow: rgba(255, 255, 255, 0.02);
    
    /* Accents */
    --accent-gold: #d4af37;
    --accent-gold-rgb: 212, 175, 55;
    --accent-bronze: #c5a880;
    --accent-bronze-light: #e6c875;
    --accent-glow: rgba(212, 175, 55, 0.15);

    /* Spotlight glow (hover light following cursor) */
    --spotlight-glow: rgba(212, 175, 55, 0.07);
    --spotlight-glow-soft: rgba(212, 175, 55, 0.05);
    
    --brand-primary: #ffffff;
    --brand-primary-rgb: 255, 255, 255;
    
    /* Grid & Spatial Details */
    --grid-color: rgba(255, 255, 255, 0.02);
    --grid-dot: rgba(255, 255, 255, 0.15);
    --grid-size: 60px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.6);
    --shadow-premium: 0 30px 60px -15px rgba(0, 0, 0, 0.8), 0 0 50px rgba(212, 175, 55, 0.03);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-luxury: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Light Theme Variables */
[data-theme="light"] {
    --bg-primary: #f6f6f8;
    --bg-secondary: #ffffff;
    --bg-tertiary: #eeedf2;
    
    --text-primary: #121214;
    --text-secondary: #5a5a62;
    --text-muted: #8e8e96;
    
    --border-color: rgba(0, 0, 0, 0.06);
    --border-color-hover: rgba(0, 0, 0, 0.12);
    --border-glow: rgba(0, 0, 0, 0.01);
    
    /* Accents adjusted for light luxury */
    --accent-gold: #9e7e55;
    --accent-gold-rgb: 158, 126, 85;
    --accent-bronze: #8d6e46;
    --accent-bronze-light: #c5a880;
    --accent-glow: rgba(158, 126, 85, 0.08);

    /* Spotlight glow (hover light following cursor) — brighter & warmer for light bg */
    --spotlight-glow: rgba(206, 162, 70, 0.18);
    --spotlight-glow-soft: rgba(206, 162, 70, 0.12);
    
    --brand-primary: #121214;
    --brand-primary-rgb: 18, 18, 20;
    
    /* Grid & Spatial Details */
    --grid-color: rgba(0, 0, 0, 0.02);
    --grid-dot: rgba(0, 0, 0, 0.08);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.08);
    --shadow-premium: 0 30px 60px -15px rgba(0, 0, 0, 0.07), 0 0 50px rgba(158, 126, 85, 0.02);
}
