/*
Theme Name: BBC Base
Theme URI: https://boundingboxcreative.com
Author: Bounding Box Creative
Description: Minimal block theme base for single-page brochure sites. Re-skin per client by editing the colour palette and font families in theme.json.
Version: 1.0.0
Requires at least: 6.5
Tested up to: 6.8
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bbc-base
Tags: block-patterns, full-site-editing, one-column, custom-colors, custom-logo, custom-menu, editor-style, wide-blocks
*/

/*
 * Almost all styling lives in theme.json. Only add CSS here for things
 * theme.json genuinely cannot express. Every rule you add here is a rule
 * that has to be maintained per client instead of inherited.
 */

/* Respect reduced-motion preferences. */
@media ( prefers-reduced-motion: reduce ) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* Keyboard focus visible everywhere, mouse focus not. */
:focus:not( :focus-visible ) {
	outline: none;
}

/* Constrain body copy to a comfortable measure. */
.is-layout-constrained > p,
.is-layout-constrained > ul,
.is-layout-constrained > ol {
	max-width: var( --wp--custom--measure );
}

/* Skip link — visible on focus only. */
.skip-link:focus {
	background-color: var( --wp--preset--color--base );
	color: var( --wp--preset--color--contrast );
	clip: auto !important;
	clip-path: none;
	font-size: 0.9rem;
	padding: 0.75rem 1.25rem;
	left: 0.5rem;
	top: 0.5rem;
	text-decoration: none;
	z-index: 100000;
}
