/**
 * CSS Custom Properties — VSGscheibe Light Theme
 * Variable names retained from base theme for compatibility.
 * Distinct from ESG: deep emerald accent (laminated/secure feel).
 *
 * @package VSGscheibe
 */

:root {
    /* Colors — light theme */
    --ts-black: #ffffff;
    --ts-dark: #fafbfc;
    --ts-dark-secondary: #f4f7f6;   /* very subtle green tint */
    --ts-dark-tertiary: #e8edeb;
    --ts-silver: #5a6b66;           /* slate with green undertone */
    --ts-silver-light: #8b97a3;
    --ts-white: #0f2421;            /* primary text — near-black with green tint */
    --ts-accent: #0d6e5c;           /* deep emerald */
    --ts-accent-dark: #0a4f43;      /* darker emerald — for gradients */
    --ts-accent-hover: #15876f;     /* emerald hover */
    --ts-accent-glow: rgba(13, 110, 92, 0.14);
    --ts-purple: #3aa68a;           /* secondary accent: light teal-green */
    --ts-purple-light: #6cc1ac;
    --ts-success: #2a7d59;
    --ts-error: #c44545;

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

    /* Gradients */
    --ts-gradient-mirror: linear-gradient(135deg, rgba(15,36,33,0.02) 0%, rgba(15,36,33,0) 50%, rgba(15,36,33,0.02) 100%);
    --ts-gradient-silver: linear-gradient(180deg, #f4f7f6 0%, #e8edeb 50%, #d4ddd9 100%);
    --ts-gradient-accent: linear-gradient(135deg, #0d6e5c 0%, #15876f 100%);
    --ts-gradient-accent-reverse: linear-gradient(135deg, #15876f 0%, #0d6e5c 100%);

    /* Typography */
    --ts-font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --ts-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 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 — softer corners */
    --ts-radius-sm: 5px;
    --ts-radius-md: 7px;
    --ts-radius-lg: 10px;
    --ts-radius-xl: 14px;
    --ts-radius-full: 9999px;

    /* Shadows — accent-tinted glow + lifted button shadow */
    --ts-shadow-sm: 0 1px 2px rgba(15, 36, 33, 0.04);
    --ts-shadow-md: 0 2px 6px rgba(15, 36, 33, 0.06), 0 1px 2px rgba(15, 36, 33, 0.04);
    --ts-shadow-lg: 0 8px 24px rgba(15, 36, 33, 0.08), 0 2px 6px rgba(15, 36, 33, 0.04);
    --ts-shadow-xl: 0 16px 40px rgba(15, 36, 33, 0.10), 0 4px 12px rgba(15, 36, 33, 0.06);
    --ts-shadow-glow: 0 0 0 3px rgba(13, 110, 92, 0.20);
    --ts-shadow-button: 0 2px 6px rgba(13, 110, 92, 0.18);
    --ts-shadow-button-hover: 0 4px 10px rgba(13, 110, 92, 0.24);
    --ts-shadow-inner: inset 0 1px 2px rgba(15, 36, 33, 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 */
.admin-bar {
    --ts-admin-bar-height: 32px;
}

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