/* =============================================================================
   REMOTIR WWW - THEME SYSTEM
   =============================================================================
   CSS Custom Properties for branding and theming.
   Change these values to adjust the look and feel across the entire site.
   ============================================================================= */

:root {
    /* =========================================================================
       COLORS - BACKGROUNDS
       ========================================================================= */
    --color-bg-primary: #05052C;          /* Main dark background */
    --color-bg-elevated: #151b2b;         /* Slightly lighter for cards */
    --color-bg-surface: #1a2035;          /* Surface elements */
    
    /* =========================================================================
       COLORS - TEXT
       ========================================================================= */
    --color-text-primary: #ffffff;        /* Main text on dark bg */
    --color-text-secondary: #d5d7da;      /* Subtitles, descriptions */
    --color-text-muted: #717680;          /* Muted text, inactive nav */
    --color-text-placeholder: #535862;    /* Placeholders */
    
    /* =========================================================================
       COLORS - BRAND
       ========================================================================= */
    --color-brand-primary: #4f5db3;       /* Brand blue */
    --color-brand-accent: #6366f1;        /* Accent purple/indigo */
    
    /* =========================================================================
       COLORS - UI ELEMENTS
       ========================================================================= */
    --color-border: rgba(255, 255, 255, 0.1);
    --color-border-strong: rgba(255, 255, 255, 0.2);
    
    /* Button colors */
    --color-btn-primary-bg: #ffffff;
    --color-btn-primary-text: #414651;
    --color-btn-primary-border: #d5d7da;
    --color-btn-ghost-bg: rgba(255, 255, 255, 0.1);
    --color-btn-ghost-text: #ffffff;
    
    /* =========================================================================
       TYPOGRAPHY
       ========================================================================= */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Font sizes */
    --text-xs: 0.75rem;      /* 12px */
    --text-sm: 0.875rem;     /* 14px */
    --text-md: 1rem;         /* 16px */
    --text-lg: 1.125rem;     /* 18px */
    --text-xl: 1.25rem;      /* 20px */
    --text-2xl: 1.5rem;      /* 24px */
    --text-3xl: 1.75rem;     /* 28px */
    --text-4xl: 2rem;        /* 32px */
    --text-5xl: 2.5rem;      /* 40px */
    --text-6xl: 3rem;        /* 48px */
    --text-7xl: 3.875rem;    /* 62px */
    
    /* Font weights */
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    
    /* Line heights */
    --leading-none: 1;
    --leading-tight: 1.1;
    --leading-snug: 1.2;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    
    /* Letter spacing */
    --tracking-tight: -0.02em;
    --tracking-normal: 0;
    --tracking-wide: 0.02em;
    
    /* =========================================================================
       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 */
    
    /* =========================================================================
       LAYOUT
       ========================================================================= */
    --container-max: 1100px;
    --container-padding: 18px;
    --nav-height: 80px;
    --section-padding: 96px;
    
    /* =========================================================================
       BORDERS & RADIUS
       ========================================================================= */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    /* =========================================================================
       SHADOWS
       ========================================================================= */
    --shadow-xs: 0 1px 2px rgba(10, 13, 18, 0.05);
    --shadow-sm: 0 1px 3px rgba(10, 13, 18, 0.1);
    --shadow-md: 0 4px 6px rgba(10, 13, 18, 0.1);
    --shadow-lg: 0 10px 15px rgba(10, 13, 18, 0.1);
    --shadow-btn: 0 1px 2px rgba(10, 13, 18, 0.05), 
                  inset 0 0 0 1px rgba(10, 13, 18, 0.18), 
                  inset 0 -2px 0 rgba(10, 13, 18, 0.05);
    
    /* =========================================================================
       TRANSITIONS
       ========================================================================= */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
    
    /* =========================================================================
       Z-INDEX
       ========================================================================= */
    --z-base: 0;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-tooltip: 500;
}

