/*
Theme Name: CarbonTrack
Theme URI: https://example.com/carbontrack
Author: Your Company
Author URI: https://example.com
Description: A self-contained emission-tracking application delivered as a WordPress theme. Provides a custom-branded login and a front-end dashboard (data entry, automatic emission calculations, reports) without exposing wp-admin or the WordPress admin bar to regular users. Supports instant client-side language switching (English, Telugu, Hindi).
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: carbontrack
Tags: custom-colors, custom-menu, translation-ready, full-width-template
*/

/* ============================================================
   CarbonTrack Theme — Design System
   Aesthetic: industrial instrumentation. Precision over decoration.
   All real styles are split across assets/css and enqueued in
   functions.php. This file holds the required theme header plus
   base resets so the theme is valid even before enqueues run.
   ============================================================ */

:root {
    --ink-950: #0E1117;
    --ink-900: #151A23;
    --ink-800: #1D232F;
    --ink-700: #2A3140;
    --ink-600: #3D4658;
    --ink-400: #6B7588;
    --ink-300: #9AA3B5;
    --ink-100: #E4E7EE;
    --paper: #F7F6F2;
    --paper-dim: #EDEBE4;
    --signal-amber: #E8A33D;
    --signal-amber-dim: #C98826;
    --slate-teal: #4C8C82;
    --alert-red: #C24A3F;
    --font-display: 'Space Grotesk', 'Arial Narrow', sans-serif;
    --font-body: 'IBM Plex Sans', -apple-system, sans-serif;
    --font-mono: 'IBM Plex Mono', 'Courier New', monospace;
    --radius-sm: 4px;
    --radius-md: 8px;
    --shadow-card: 0 1px 2px rgba(14,17,23,0.06), 0 4px 16px rgba(14,17,23,0.04);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--paper);
    color: var(--ink-900);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
