/*
Theme Name: Perth Leaflet Theme
Theme URI: https://perthleafletdistribution.com.au/
Author: Ocean Website Design
Author URI: https://oceanwebsitedesign.com.au/
Description: Lightweight custom theme for Perth Leaflet Distribution — a local advertising and leaflet distribution marketplace. No page builder, no framework, minimal JS. Designed to pair with the Perth Leaflet Marketplace plugin, which supplies all marketplace UI.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: perth-leaflet-theme
Tags: custom-menu, featured-images, responsive-layout, accessibility-ready
*/

/*
 * Actual styles live in assets/css/theme.css (site chrome) and are layered on
 * top of the marketplace plugin's tokens.css + marketplace.css so the design
 * system stays in one place. This file exists for the WordPress theme header
 * and a minimal reset only.
 */

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

body {
	margin: 0;
	font-family: var(--plm-font-body, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif);
	color: var(--plm-ink, #16233f);
	background: #ffffff;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

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

a { color: var(--plm-navy-700, #1b2a4a); }

/* Visible focus for keyboard users everywhere, not just marketplace components. */
:focus-visible {
	outline: 3px solid var(--plm-coral-400, #ff8a72);
	outline-offset: 2px;
}

/* Skip link */
.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--plm-navy-800, #16233f);
	color: #fff;
	padding: 12px 20px;
	z-index: 1000;
	text-decoration: none;
	border-radius: 0 0 6px 0;
}
.skip-link:focus {
	left: 0;
}
