/*
Theme Name: HandyHub Liberia
Theme URI: https://handyhubliberia.com
Author: HandyHub Liberia
Author URI: https://handyhubliberia.com
Description: Custom theme for HandyHub Liberia — Find. Hire. Build. A marketplace connecting customers with verified skilled professionals across Liberia. Built per the project blueprint (see /docs in the project root) as a modular stack: this theme + Advanced Custom Fields + a business directory plugin + WooCommerce + a forms plugin. See README.md in this theme for full setup instructions.
Version: 0.1.0
Requires at least: 6.4
Requires PHP: 8.1
Tested up to: 6.6
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: handyhub
Tags: custom-background, custom-logo, custom-menu, featured-images, translation-ready, woocommerce

This is the base stylesheet. WordPress requires this file and its header
comment above to recognize the theme. Component and page styles are split
into assets/css/ and enqueued from functions.php — see that file for the
full list. Keeping this file to resets/base rules only avoids one giant
stylesheet that's hard for a developer to navigate.
*/

/* ==========================================================================
   Base reset — full design tokens live in assets/css/tokens.css
   ========================================================================== */

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

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

body {
	margin: 0;
	background: var(--hh-surface);
	color: var(--hh-ink);
	font-family: var(--hh-font-body);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

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

a {
	color: inherit;
	text-decoration: none;
}

button {
	font: inherit;
	color: inherit;
}

ul, ol {
	margin: 0;
}

h1, h2, h3, h4 {
	font-family: var(--hh-font-display);
	margin: 0;
	text-wrap: balance;
	letter-spacing: -0.01em;
}

p {
	margin: 0;
}

:focus-visible {
	outline: 2.5px solid var(--hh-focus);
	outline-offset: 3px;
	border-radius: 4px;
}

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

/* Screen-reader-only utility, used by skip links and accessible labels */
.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(--hh-surface-raised);
	border-radius: 4px;
	box-shadow: var(--hh-shadow-card);
	clip: auto !important;
	clip-path: none;
	color: var(--hh-ink);
	display: block;
	font-size: 14px;
	font-weight: 700;
	height: auto;
	left: 6px;
	line-height: normal;
	padding: 12px 18px;
	text-decoration: none;
	top: 6px;
	width: auto;
	z-index: 100000;
}

.wrap {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 28px;
}

@media (max-width: 620px) {
	.wrap {
		padding: 0 20px;
	}
}
