/**
 * BuildPress — Frontend Styles
 *
 * Minimal base: box-sizing reset, system font stack, skip-link,
 * fallback layout for when Elementor doesn't handle a location.
 */

/* ─── Reset ─────────────────────────────────────────────────── */

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

/* ─── Base ──────────────────────────────────────────────────── */

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #1a1a1a;
	background: #ffffff;
}

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

a {
	color: inherit;
}

/* ─── Skip Link (accessibility) ─────────────────────────────── */

.skip-link {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
	z-index: 999999;
	padding: 8px 16px;
	background: #1a1a1a;
	color: #ffffff;
	font-size: 14px;
	text-decoration: none;
}

.skip-link:focus {
	left: 8px;
	top: 8px;
	width: auto;
	height: auto;
	overflow: visible;
}

/* ─── Fallback Header / Footer ──────────────────────────────── */

.buildpress-header {
	padding: 16px 24px;
	border-bottom: 1px solid #e0e0e0;
}

.buildpress-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
}

.buildpress-site-title {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
}

.buildpress-site-title a {
	text-decoration: none;
}

.buildpress-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 24px;
}

.buildpress-nav a {
	text-decoration: none;
	font-size: 14px;
}

.buildpress-footer {
	padding: 24px;
	border-top: 1px solid #e0e0e0;
	text-align: center;
	font-size: 14px;
	color: #666666;
}

.buildpress-footer__inner {
	max-width: 1200px;
	margin: 0 auto;
}

/* ─── Fallback Content Area ─────────────────────────────────── */

.buildpress-content {
	max-width: 800px;
	margin: 0 auto;
	padding: 40px 24px;
}

.buildpress-content h1 {
	font-size: 32px;
	margin: 0 0 24px;
}

.buildpress-404 {
	text-align: center;
	padding: 80px 24px;
}

/* ─── Section Widgets ──────────────────────────────────────── */

.buildpress-section-widget {
	width: 100% !important;
}
