/*
Theme Name: Aurea
Theme URI:
Author: Umbradev
Author URI: https://umbradev.es/
Description: Ultra lightweight starter theme designed exclusively for Elementor.
Version: 1.0.4
Requires at least: 6.4
Tested up to: 6.9
Requires PHP: 8.0
Text Domain: aurea
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-logo, featured-images, translation-ready
Copyright: © 2026 Umbradev
*/

/* --------------------------------------------------------------
# Base styles
-------------------------------------------------------------- */

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

body {
	margin: 0;
	font-family:
		-apple-system,
		BlinkMacSystemFont,
		"Segoe UI",
		sans-serif;
	font-size: 16px;
	line-height: 1.7;
	color: #2a2a2a;
	background: #f7f7f7;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Text selection */

::selection {
	background: #111;
	color: #fff;
}

/* --------------------------------------------------------------
# Links
-------------------------------------------------------------- */

a {
	color: inherit;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}

a:hover {
	text-decoration: none;
}

/* Smooth transitions */

a,
button,
input,
textarea,
select {
	transition:
		color 0.2s ease,
		background-color 0.2s ease,
		border-color 0.2s ease,
		opacity 0.2s ease;
}

/* --------------------------------------------------------------
# Accessibility
-------------------------------------------------------------- */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
	outline: 2px solid #000;
	outline-offset: 2px;
}

/* Screen reader text */

.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;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	clip: auto !important;
	clip-path: none;
	color: #000;
	display: block;
	height: auto;
	left: 5px;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Skip link */

.skip-link {
	position: absolute;
	left: -9999px;
	top: auto;
}

.skip-link:focus {
	left: 10px;
	top: 10px;
	background: #000;
	color: #fff;
	padding: 10px;
	z-index: 1000;
}

/* --------------------------------------------------------------
# Typography
-------------------------------------------------------------- */

p {
	margin-top: 0;
	margin-bottom: 1em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
	margin-bottom: 0.75em;
	line-height: 1.25;
	font-weight: 700;
	color: #111;
}

blockquote {
	margin: 2em 0;
	padding: 1em 1.5em;
	border-left: 4px solid #111;
	background: #fff;
	border-radius: 4px;
	font-style: italic;
}

/* --------------------------------------------------------------
# Forms
-------------------------------------------------------------- */

input,
textarea,
button,
select {
	font: inherit;
	max-width: 100%;
	padding: 10px 14px;
	box-sizing: border-box;
	border: 1px solid #ddd;
	border-radius: 4px;
	background: #fff;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
	border-color: #111;
}

button {
	cursor: pointer;
}