/**
 * CSS Custom Properties - Formspiegel
 *
 * @package Formspiegel
 */

:root {
    /* Colors - warm charcoal base, bronze accent */
    --fs-black: #0d0a08;
    --fs-dark: #14100d;
    --fs-dark-secondary: #1f1a16;
    --fs-dark-tertiary: #2a241f;
    --fs-silver: #c4b8a8;
    --fs-silver-light: #ebe3d4;
    --fs-white: #fdf9f2;
    --fs-accent: #b8865c;
    --fs-accent-hover: #d4a574;
    --fs-accent-glow: rgba(184, 134, 92, 0.28);
    --fs-purple: #6b5d4a;
    --fs-purple-light: #8a7a64;
    --fs-success: #6ba368;
    --fs-error: #c8553d;

    /* Glassmorphism - warm tint */
    --fs-glass-bg: rgba(31, 26, 22, 0.72);
    --fs-glass-border: rgba(235, 227, 212, 0.08);
    --fs-glass-blur: blur(20px);

    /* Gradients */
    --fs-gradient-mirror: linear-gradient(135deg, rgba(253,249,242,0.03) 0%, rgba(253,249,242,0) 50%, rgba(253,249,242,0.04) 100%);
    --fs-gradient-silver: linear-gradient(180deg, #ebe3d4 0%, #c4b8a8 50%, #9d8e7a 100%);
    --fs-gradient-accent: linear-gradient(135deg, #b8865c 0%, #d4a574 100%);
    --fs-gradient-accent-reverse: linear-gradient(135deg, #d4a574 0%, #b8865c 100%);

    /* Typography */
    --fs-font-display: 'Playfair Display', Georgia, serif;
    --fs-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --fs-font-mono: 'JetBrains Mono', 'Courier New', monospace;

    /* Spacing Scale */
    --fs-space-xs: 0.25rem;
    --fs-space-sm: 0.5rem;
    --fs-space-md: 1rem;
    --fs-space-lg: 1.5rem;
    --fs-space-xl: 2rem;
    --fs-space-2xl: 3rem;
    --fs-space-3xl: 4rem;
    --fs-space-4xl: 6rem;

    /* Border Radius - softer, suits round/oval mirrors theme */
    --fs-radius-sm: 8px;
    --fs-radius-md: 14px;
    --fs-radius-lg: 24px;
    --fs-radius-xl: 32px;
    --fs-radius-full: 9999px;

    /* Shadows - warmer cast */
    --fs-shadow-sm: 0 2px 12px rgba(13,10,8,0.32);
    --fs-shadow-md: 0 8px 24px rgba(13,10,8,0.42), 0 2px 8px rgba(13,10,8,0.22);
    --fs-shadow-lg: 0 16px 48px rgba(13,10,8,0.52), 0 4px 16px rgba(13,10,8,0.32);
    --fs-shadow-xl: 0 24px 64px rgba(13,10,8,0.62), 0 8px 24px rgba(13,10,8,0.42);
    --fs-shadow-glow: 0 0 40px var(--fs-accent-glow), 0 0 20px var(--fs-accent-glow);
    --fs-shadow-inner: inset 0 2px 8px rgba(13,10,8,0.32);

    /* Transitions */
    --fs-transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --fs-transition-base: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    --fs-transition-slow: 600ms cubic-bezier(0.4, 0, 0.2, 1);
    --fs-transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Layout */
    --fs-max-width: 1400px;
    --fs-header-height: 90px;
    --fs-admin-bar-height: 0px;
}

/* Admin bar */
.admin-bar {
    --fs-admin-bar-height: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar {
        --fs-admin-bar-height: 46px;
    }
}
