/*
Theme Name: Advertiser Marketplace
Theme URI: https://publinza.com
Author: Publinza
Author URI: https://publinza.com
Description: Advertiser-only digital PR, guest posting, and backlink marketplace platform. A zero-build block theme on WordPress core + Gutenberg — no page builder, no custom block build step.
Version: 1.0.0
Requires at least: 6.6
Requires PHP: 8.0
Tested up to: 6.7
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: advertiser-marketplace
Tags: block-theme, full-site-editing, saas, marketing

This stylesheet intentionally carries no layout rules — all design tokens
live in theme.json so they're editable from the Site Editor. This file
exists because WordPress requires it to identify the theme, and holds only
what theme.json cannot express: dark-mode overrides and a
prefers-reduced-motion rule shared by every pattern.
*/

/* ==========================================================================
   Dark mode — theme.json emits CSS custom properties but has no native
   prefers-color-scheme / data-theme branching, so that logic lives here,
   layered on top of the --wp--preset--color--* variables theme.json defines.
   ========================================================================== */

@media (prefers-color-scheme: dark) {
	:root:not([data-theme="light"]) {
		--wp--preset--color--surface: #0f1526;
		--wp--preset--color--surface-2: #141b2e;
		--wp--preset--color--surface-3: #1a2238;
		--wp--preset--color--text-primary: #edeff4;
		--wp--preset--color--text-secondary: #a9b0c0;
		--wp--preset--color--text-muted: #9099ac;
		--wp--preset--color--border: #232b40;
		--wp--preset--color--border-strong: #313b55;
		--wp--preset--color--blue: #5b86f5;
		--wp--preset--color--blue-tint: #16234a;
		--wp--preset--color--teal: #2dbfa8;
		--wp--preset--color--teal-tint: #0e2c29;
	}
}

:root[data-theme="dark"] {
	--wp--preset--color--surface: #0f1526;
	--wp--preset--color--surface-2: #141b2e;
	--wp--preset--color--surface-3: #1a2238;
	--wp--preset--color--text-primary: #edeff4;
	--wp--preset--color--text-secondary: #a9b0c0;
	--wp--preset--color--text-muted: #9099ac;
	--wp--preset--color--border: #232b40;
	--wp--preset--color--border-strong: #313b55;
	--wp--preset--color--blue: #5b86f5;
	--wp--preset--color--blue-tint: #16234a;
	--wp--preset--color--teal: #2dbfa8;
	--wp--preset--color--teal-tint: #0e2c29;
}

/* Respect reduced motion across every pattern. */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		transition-duration: 0.001ms !important;
	}
}
