/*
Theme Name: UniMax Starter
Theme URI: https://unimax.site
Author: UniMax Network
Author URI: https://unimax.site
Description: Universal API-driven WordPress theme. Premium design system with live-editable palette via REST API.
Version: 1.1.0
Requires at least: 6.1
Tested up to: 6.7
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: unimax-starter
Tags: full-site-editing, block-patterns, wide-blocks
*/

/* ================================================================
   UniMax Starter — Baseline
   Component/landing styles live in assets/css/premium.css
   ================================================================ */

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: var(--unimax-body-font, 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif);
    color: var(--unimax-foreground, #0b1020);
    background: var(--unimax-background, #ffffff);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--unimax-heading-font, 'Outfit', 'Inter', system-ui, sans-serif);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: var(--unimax-foreground, #0b1020);
    margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }

a {
    color: var(--unimax-primary, #6366f1);
    text-decoration: none;
    transition: color 0.2s ease;
}
a:hover { color: var(--unimax-accent, #06b6d4); }

:focus-visible {
    outline: 2px solid var(--unimax-primary, #6366f1);
    outline-offset: 2px;
    border-radius: 4px;
}

::selection {
    background: var(--unimax-primary, #6366f1);
    color: #fff;
}

img, svg, video {
    max-width: 100%;
    height: auto;
    display: block;
}

button { font-family: inherit; }
