/**
 * Bastion Ecosystem Shared Design Tokens
 * Common CSS variables for luxury dark hospitality theme
 */
:root {
    /* Brand Accent Colors */
    --accent: #f59e0b;
    --accent-hover: #d97706;
    --accent-glow: rgba(245, 158, 11, 0.4);
    
    /* Surface & Background Dark Tones */
    --bg-dark: #0b1120;
    --bg-darker: #080f1a;
    --bg-glass: rgba(15, 23, 42, 0.78);
    --bg-glass-hover: rgba(30, 41, 59, 0.92);
    --bg-card: #0f172a;
    --bg-card-hover: #1e293b;
    --border-glass: rgba(255, 255, 255, 0.12);
    --border-glass-hover: rgba(245, 158, 11, 0.35);

    /* Text Tones */
    --text-light: #f8fafc;
    --text-muted: #cbd5e1;
    --text-dimmed: #94a3b8;

    /* Typography */
    --font-main: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;

    /* Transitions & Shadows */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.45);
    --shadow-glow: 0 0 25px rgba(245, 158, 11, 0.35);
}
