/*
Theme Name: Echo-Field
Theme URI: https://citizengardens.org/echo-field
Author: Citizen Gardens – The Foundation of Multiplicity
Description: A sovereign, ASD-aligned, recursive learning theme for WordPress. Built for the QARI Universal Research Platform.
Version: 1.0.0
License: MIT
License URI: https://opensource.org/licenses/MIT
Text Domain: echo-field
Tags: minimal, accessibility-ready, voice-driven, asd-aligned, multiplicity, tensor-based
*/

/* Root Variables */
:root {
    --bg-color: #0f0f1a;
    --accent-color: #72ffd3;
    --text-color: #f1f1f1;
    --dim-text: #aaa;
    --border-color: #444;
    --prime-glow: rgba(114, 255, 211, 0.2);
    --font-size-base: 16px;
    --font-size-large: 1.25rem;
    --spacing-unit: 1rem;
    --radius-soft: 8px;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: var(--font-size-base);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
}

/* Links */
a {
    color: var(--accent-color);
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* Layout */
.container {
    width: 90%;
    max-width: 1080px;
    margin: 0 auto;
    padding: var(--spacing-unit);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: var(--accent-color);
    margin-bottom: 0.5em;
    line-height: 1.3;
}

/* Buttons */
button, .btn {
    background: var(--accent-color);
    color: #000;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-soft);
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}
button:hover, .btn:hover {
    background: #5efcc2;
}

/* Prime-glow Borders */
.prime-glow {
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 12px var(--prime-glow);
    border-radius: var(--radius-soft);
    padding: var(--spacing-unit);
    margin-bottom: var(--spacing-unit);
}

/* Echo Threads (note chains) */
.echo-thread {
    border-left: 3px solid var(--accent-color);
    padding-left: 1rem;
    margin: 1rem 0;
    font-style: italic;
    color: var(--dim-text);
}

/* ASD-aligned Visual Modes */
[data-contrast="high"] {
    background: #000;
    color: #fff;
}
[data-mode="silent"] .voice-btn {
    display: none;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.85rem;
    color: var(--dim-text);
}
