/* ============================================================
   HARDTWALDBATTERIE – Design Tokens
   Union of all CSS custom properties across all pages
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=JetBrains+Mono:wght@300;400&display=swap');

:root {
    /* === Backgrounds === */
    --bg-void: #0a0a0a;
    --bg-deep: #0d0f0e;
    --bg-forest: #111612;
    --bg-card: #0f1110;

    /* === Accent Colors === */
    --accent-gold: #c9a227;
    --accent-bronze: #8b6914;
    --accent-ember: #8b2500;
    --accent-fire: #ff6b35;
    --accent-blood: #5c1a1a;

    /* === Text Colors === */
    --text-light: #e8e4dc;
    --text-muted: #7a7568;
    --text-dim: #4a4840;

    /* === Gradients === */
    --gradient-ritual: linear-gradient(135deg, #1a1512 0%, #0d0f0e 50%, #0a1210 100%);
    --gradient-gold: linear-gradient(135deg, #c9a227 0%, #8b6914 100%);
    --gradient-fire: linear-gradient(135deg, #8b2500 0%, #c9a227 100%);

    /* === Glows === */
    --glow-gold: 0 0 40px rgba(201, 162, 39, 0.3);
    --glow-ember: 0 0 60px rgba(139, 37, 0, 0.4);
    --glow-fire: 0 0 80px rgba(255, 107, 53, 0.3);
}
