/* ==========================================================================
   Hero sections - Schildersbedrijf J. Bastiaansen
   Minimalistische, conversiegerichte hero's
   ========================================================================== */

/* ---------- Home hero ---------- */
.home-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	background: var(--bg-dark);
	color: #fff;
	overflow: hidden;
	padding-top: var(--header-height);
}

.home-hero__media {
	position: absolute;
	inset: 0;
}

.home-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.4;
}

.home-hero__inner {
	position: relative;
	z-index: 2;
	padding: 4rem 0;
	max-width: 700px;
}

.home-hero__eyebrow {
	display: inline-block;
	margin-bottom: 1rem;
	padding: 6px 14px;
	border-radius: 4px;
	background: var(--accent);
	color: #fff;
	font-size: 13px;
	font-weight: 500;
}

.home-hero h1 {
	color: #fff;
	font-size: 2.25rem;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 1.5rem;
}

.home-hero__subtitle {
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.125rem;
	line-height: 1.6;
	margin-bottom: 2rem;
	max-width: 550px;
}

.home-hero p {
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.125rem;
	margin-bottom: 2rem;
}

.home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 2.5rem;
}

/* ---------- Trust badges ---------- */
.trust-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
}

.trust-badge {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.8);
}

.trust-badge .hex-icon {
	width: 18px;
	height: 18px;
	color: var(--accent-light, var(--accent));
	flex-shrink: 0;
}

/* ---------- Home hero onder header ---------- */
.home-hero--under-header {
	min-height: 100vh;
	min-height: 100dvh;
}

.home-hero--under-header::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(31, 35, 40, 0.55);
	z-index: 1;
}

.home-hero--under-header .home-hero__media img {
	opacity: 1;
}

.home-hero--under-header .container {
	position: relative;
	z-index: 2;
}

/* ---------- Page hero ---------- */
.page-hero {
	position: relative;
	background: var(--bg-dark);
	color: #fff;
	overflow: hidden;
	padding: 4rem 0;
}

.page-hero--with-image {
	min-height: 320px;
}

.page-hero__media {
	position: absolute;
	inset: 0;
}

.page-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.35;
}

.page-hero__content {
	position: relative;
	max-width: 700px;
}

.page-hero h1 {
	color: #fff;
	margin-bottom: 1rem;
}

.page-hero p {
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.125rem;
}

/* ---------- Responsive hero ---------- */
@media (min-width: 640px) {
	.home-hero h1 {
		font-size: 2.5rem;
	}
}

@media (min-width: 1024px) {
	.home-hero h1 {
		font-size: 3rem;
	}
	
	.home-hero__inner {
		padding: 6rem 0;
	}
}

@media (max-width: 720px) {
	.home-hero {
		min-height: auto;
		padding: calc(var(--header-height) + 2rem) 0 3rem;
	}
	
	.trust-badges {
		gap: 1rem;
	}
}
