/**
 * CSS Custom Properties, Begehbares Glas Light Theme
 * Variable names retained from base theme for compatibility.
 * Brand: Sky-blue primary (#0369a1) on near-white surfaces.
 * Industry-standard cool palette, matches Glas-Star, Glasolux, Plickert positioning.
 *
 * @package Begehbaresglas
 */

:root {
    /* Surfaces, near-white with subtle cool tint */
    --ts-black: #ffffff;
    --ts-dark: #fbfbfc;
    --ts-dark-secondary: #f1f4f8;   /* soft blue-tinted surface */
    --ts-dark-tertiary: #e2e8ee;
    --ts-silver: #475569;           /* slate-600, muted body */
    --ts-silver-light: #94a3b8;     /* slate-400, hints */
    --ts-white: #0f172a;            /* slate-900, primary text */
    --ts-accent: #0369a1;           /* sky-700, primary brand */
    --ts-accent-dark: #075985;      /* sky-800, gradient end */
    --ts-accent-hover: #0ea5e9;     /* sky-500, hover/highlight */
    --ts-accent-glow: rgba(3, 105, 161, 0.14);
    --ts-purple: #38bdf8;           /* sky-400, secondary accent (light) */
    --ts-purple-light: #bae6fd;     /* sky-200, very light surface */
    --ts-success: #2a7d59;          /* universal success green (unchanged) */
    --ts-error: #c44545;

    /* Glassmorphism */
    --ts-glass-bg: rgba(255, 255, 255, 0.92);
    --ts-glass-border: rgba(15, 23, 42, 0.08);
    --ts-glass-blur: blur(8px);

    /* Gradients */
    --ts-gradient-mirror: linear-gradient(135deg, rgba(15,23,42,0.02) 0%, rgba(15,23,42,0) 50%, rgba(15,23,42,0.02) 100%);
    --ts-gradient-silver: linear-gradient(180deg, #f1f4f8 0%, #e2e8ee 50%, #cbd5e1 100%);
    --ts-gradient-accent: linear-gradient(135deg, #0369a1 0%, #0ea5e9 100%);
    --ts-gradient-accent-reverse: linear-gradient(135deg, #0ea5e9 0%, #0369a1 100%);

    /* Typography */
    --ts-font-display: 'Bricolage Grotesque', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --ts-font-body: 'Inter Tight', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --ts-font-mono: 'JetBrains Mono', 'Courier New', monospace;

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

    /* Border Radius */
    --ts-radius-sm: 5px;
    --ts-radius-md: 7px;
    --ts-radius-lg: 10px;
    --ts-radius-xl: 14px;
    --ts-radius-full: 9999px;

    /* Shadows, cool slate-tinted + sky glow on buttons */
    --ts-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
    --ts-shadow-md: 0 2px 6px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
    --ts-shadow-lg: 0 8px 24px rgba(15, 23, 42, 0.08), 0 2px 6px rgba(15, 23, 42, 0.04);
    --ts-shadow-xl: 0 16px 40px rgba(15, 23, 42, 0.10), 0 4px 12px rgba(15, 23, 42, 0.06);
    --ts-shadow-glow: 0 0 0 3px rgba(3, 105, 161, 0.20);
    --ts-shadow-button: 0 2px 6px rgba(3, 105, 161, 0.20);
    --ts-shadow-button-hover: 0 4px 10px rgba(3, 105, 161, 0.26);
    --ts-shadow-inner: inset 0 1px 2px rgba(15, 23, 42, 0.04);

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

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

.admin-bar {
    --ts-admin-bar-height: 32px;
}

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