/*
Theme Name: Australia Motors
Theme URI: https://www.australiamotors.com/
Author: Australia Motors
Author URI: https://www.australiamotors.com/
Description: Custom production theme for Australia Motors — a real-owner vehicle review platform. Every figure on every page is read live from the Australia Motors Platform plugin's database; the theme ships with zero hardcoded vehicle data, ratings, or review content.
Version: 1.0.0
Requires at least: 6.5
Requires PHP: 8.1
Tested up to: 6.7
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: australia-motors
Domain Path: /languages
*/

/* Actual styles are enqueued from assets/css/*.css (see inc/enqueue.php) so
   they can be cached and split sensibly. This file carries only the theme
   header WordPress requires, plus the design-token reset every stylesheet
   below builds on. */

:root {
	--am-navy: #14264A;
	--am-navy-dark: #0B1730;
	--am-navy-mid: #1D3563;
	--am-gold: #C99A3A;
	--am-gold-light: #E3BE72;
	--am-warm-white: #FAF7F1;
	--am-white: #FFFFFF;
	--am-ink: #1B2233;
	--am-ink-soft: #4B5468;
	--am-border: #E4E1D8;
	--am-success: #1E7B4D;
	--am-danger: #B3261E;
	--am-radius: 10px;
	--am-radius-sm: 6px;
	--am-shadow: 0 1px 3px rgba(20, 38, 74, 0.08), 0 6px 20px rgba(20, 38, 74, 0.06);
	--am-container: 1180px;
	--am-font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--am-font-display: Georgia, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--am-font-body);
	color: var(--am-ink);
	background: var(--am-warm-white);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
:focus-visible { outline: 3px solid var(--am-gold); outline-offset: 2px; }
