/*
Theme Name: DigiTheme
Theme URI: https://digio.no
Description: Skreddersydd, lettvektig tema for Digitools og Teerex. Basert på et robust Design System.
Version: 1.1.7
Author: Digio AS
Author URI: https://digio.no
License: Proprietary
Text Domain: digitheme
*/

/**
 * DIGITHEME DESIGN TOKENS
 */
:root {
    /* Colors - Brand */
    --dt-accent:       #10b981;
    --dt-accent-2:     #3b82f6;
    --dt-accent-3:     #8b5cf6;
    
    /* Colors - Neutral (Light) */
    --dt-bg:           #f8fafc;
    --dt-panel:        #ffffff;
    --dt-card:         #ffffff;
    --dt-border:       #e2e8f0;
    --dt-text:         #1e293b;
    --dt-text-light:   #475569;
    --dt-muted:        #64748b;
    --dt-muted-light:  #94a3b8;
    
    /* Colors - Semantic */
    --dt-success:      #10b981;
    --dt-info:         #3b82f6;
    --dt-warn:         #f59e0b;
    --dt-danger:       #ef4444;

    /* Colors - Brand specific */
    --pt-primary:       #ff9500;
    --pt-primary-light: #ffb347;
    --pt-primary-dark:  #e67e00;

    /* Typography */
    --dt-font:         var(--dt-font-main, 'Space Grotesk', 'Segoe UI', system-ui, -apple-system, sans-serif);
    --dt-font-mono:    'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    
    /* Spacing Scale (T-shirt sizes) */
    --dt-s-2xs: 0.25rem;  /* 4px */
    --dt-s-xs:  0.5rem;   /* 8px */
    --dt-s-sm:  0.75rem;  /* 12px */
    --dt-s-md:  1rem;     /* 16px */
    --dt-s-lg:  1.5rem;   /* 24px */
    --dt-s-xl:  2rem;     /* 32px */
    --dt-s-2xl: 3rem;     /* 48px */
    --dt-s-3xl: 4rem;     /* 64px */

    /* Radii */
    --dt-r-sm: 6px;
    --dt-r-md: 12px;
    --dt-r-lg: 20px;
    --dt-r-full: 9999px;

    /* Shadows */
    --dt-shadow-sm:    0 1px 3px rgba(0,0,0,0.06);
    --dt-shadow-md:    0 4px 16px rgba(0,0,0,0.08);
    --dt-shadow-lg:    0 12px 40px rgba(0,0,0,0.12);
    --dt-shadow-inner: inset 0 2px 4px 0 rgba(0,0,0,0.06);

    /* Transitions */
    --dt-trans-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --dt-trans-md:   250ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Layout */
    --dt-container-width: 1200px;
    --dt-header-height: 80px;
}

/**
 * DARK MODE TOKENS
 */
body.dt-dark-mode {
    --dt-bg:           #0f172a;
    --dt-panel:        #0b1323;
    --dt-card:         #111a2e;
    --dt-border:       #1f2b44;
    --dt-text:         #f1f5f9;
    --dt-text-light:   #cbd5e1;
    --dt-muted:        #94a3b8;
    --dt-muted-light:  #64748b;
    
    --dt-shadow-sm:    0 1px 3px rgba(0,0,0,0.3);
    --dt-shadow-md:    0 4px 16px rgba(0,0,0,0.4);
    --dt-shadow-lg:    0 12px 40px rgba(0,0,0,0.5);
}

/**
 * BASE STYLES
 */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px; /* Base for rems */
}

body {
    font-family: var(--dt-font);
    background: var(--dt-bg);
    color: var(--dt-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background var(--dt-trans-md), color var(--dt-trans-md);
}

/* Screen Reader Only Utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
