/*
Theme Name: Auralis
Theme URI: https://example.com/auralis
Author: Your Name
Author URI: https://example.com
Description: Auralis is a sleek, modern, general-purpose full-site-editing block theme for the newest WordPress. Built for business sites, portfolios, agencies, blogs and landing pages, with configurable header behavior (static, sticky, floating) and first-class support for the default block editor plus third-party block plugins like Otter.
Requires at least: 6.6
Tested up to: 6.8
Requires PHP: 8.0
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: auralis
Tags: full-site-editing, block-patterns, custom-colors, custom-menu, editor-style, featured-images, full-width-template, wide-blocks, one-column, two-columns, three-columns, portfolio, blog, e-commerce

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

Auralis is a block theme. Almost all visual styling (colors, typography, spacing) lives
in theme.json and the style variations under /styles. This stylesheet only carries the
required theme header above plus a small number of base resets and utility rules that
theme.json cannot express, and the compiled output of assets/src is enqueued separately.
*/

/* Minimal base resets not expressible via theme.json */

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

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

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

body {
	margin: 0;
}

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

::selection {
	background-color: var(--wp--preset--color--accent, #635bff);
	color: var(--wp--preset--color--base, #fff);
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: var(--wp--preset--color--base, #fff);
	color: var(--wp--preset--color--contrast, #111);
	display: block;
	height: auto;
	left: 6px;
	top: 6px;
	padding: 1rem 1.5rem;
	z-index: 100000;
	text-decoration: none;
	border-radius: 6px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
