/**
 * Landgoed Het Grote Zand
 * Hero
 * Blocksy Child Theme
 *
 * Bestand:
 * /assets/css/hero.css
 */


/* =========================================================
   HERO
========================================================= */

.hgz-hero {
	position: relative;

	display: flex;
	align-items: center;

	min-height: 680px;

	overflow: hidden;
	isolation: isolate;

	color: var(--hgz-color-white);
}


/* =========================================================
   ACHTERGROND
========================================================= */

.hgz-hero__background,
.hgz-hero__overlay {
	position: absolute;
	inset: 0;
}

.hgz-hero__background {
	z-index: -2;
}

.hgz-hero__background img {
	display: block;

	width: 100%;
	height: 100%;

	object-fit: cover;
	object-position: center center;
}


/* =========================================================
   OVERLAY
========================================================= */

.hgz-hero__overlay {
	z-index: -1;

	background:
		linear-gradient(
			90deg,
			rgba(8, 14, 10, 0.78) 0%,
			rgba(8, 14, 10, 0.60) 38%,
			rgba(8, 14, 10, 0.20) 75%,
			rgba(8, 14, 10, 0.10) 100%
		);
}


/* =========================================================
   CONTAINER
========================================================= */

.hgz-hero__container {
	padding-top: 105px;
	padding-bottom: 105px;
}


/* =========================================================
   CONTENT
========================================================= */

.hgz-hero__content {
	max-width: 760px;
}


/* =========================================================
   EYEBROW
========================================================= */

.hgz-hero__eyebrow {
	display: inline-flex;
	align-items: center;

	margin: 0 0 18px;
	padding: 7px 14px;

	border: 1px solid rgba(255, 255, 255, 0.30);
	border-radius: var(--hgz-radius-pill);

	background: rgba(255, 255, 255, 0.12);

	color: rgba(255, 255, 255, 0.95);

	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 1.4;

	text-transform: uppercase;

	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}


/* =========================================================
   TITEL
========================================================= */

.hgz-hero__title {
	margin: 0;

	color: var(--hgz-color-white);

	font-size: clamp(42px, 5vw, 72px);
	font-weight: 700;
	line-height: 1.08;

	letter-spacing: -0.025em;
}


/* =========================================================
   SUBTITLE
========================================================= */

.hgz-hero__subtitle {
	max-width: 620px;

	margin: 22px 0 30px;

	color: rgba(255, 255, 255, 0.94);

	font-size: 20px;
	line-height: 1.6;
}


/* =========================================================
   FEATURES
========================================================= */

.hgz-hero__features {
	display: flex;
	flex-wrap: wrap;

	gap: 10px 24px;

	margin-bottom: 34px;
}

.hgz-hero__feature {
	display: inline-flex;
	align-items: center;

	gap: 7px;

	color: var(--hgz-color-white);

	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
}


/* =========================================================
   ACTIONS
========================================================= */

.hgz-hero__actions {
	display: flex;
	flex-wrap: wrap;

	gap: 12px;
}


/* =========================================================
   PRIMARY BUTTON
========================================================= */

.hgz-hero .hgz-button--primary {
	border-color: var(--hgz-color-primary-light);

	background: var(--hgz-color-primary-light);

	color: var(--hgz-color-white);
}

.hgz-hero .hgz-button--primary:hover,
.hgz-hero .hgz-button--primary:focus {
	border-color: var(--hgz-color-primary-dark);

	background: var(--hgz-color-primary-dark);

	color: var(--hgz-color-white);
}


/* =========================================================
   SECONDARY BUTTON
========================================================= */

.hgz-hero .hgz-button--secondary {
	border-color: rgba(255, 255, 255, 0.75);

	background: rgba(255, 255, 255, 0.08);

	color: var(--hgz-color-white);

	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.hgz-hero .hgz-button--secondary:hover,
.hgz-hero .hgz-button--secondary:focus {
	border-color: var(--hgz-color-white);

	background: var(--hgz-color-white);

	color: var(--hgz-color-primary);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

	.hgz-hero {
		min-height: 620px;
	}

	.hgz-hero__container {
		padding-top: 85px;
		padding-bottom: 85px;
	}

	.hgz-hero__title {
		font-size: clamp(40px, 7vw, 58px);
	}
}


/* =========================================================
   MOBIEL
========================================================= */

@media (max-width: 600px) {

	.hgz-hero {
		min-height: 650px;

		align-items: flex-end;
	}

	.hgz-hero__container {
		padding-top: 100px;
		padding-bottom: 65px;
	}

	.hgz-hero__overlay {
		background:
			linear-gradient(
				180deg,
				rgba(8, 14, 10, 0.22) 0%,
				rgba(8, 14, 10, 0.78) 65%,
				rgba(8, 14, 10, 0.88) 100%
			);
	}

	.hgz-hero__eyebrow {
		font-size: 11px;
	}

	.hgz-hero__title {
		font-size: 38px;
		line-height: 1.08;
	}

	.hgz-hero__subtitle {
		margin-top: 18px;

		font-size: 17px;
		line-height: 1.6;
	}

	.hgz-hero__features {
		flex-direction: column;
		align-items: flex-start;

		gap: 9px;

		margin-bottom: 28px;
	}

	.hgz-hero__actions {
		flex-direction: column;
	}

	.hgz-hero .hgz-button {
		width: 100%;
	}
}


/* =========================================================
   KLEINE MOBIELE SCHERMEN
========================================================= */

@media (max-width: 400px) {

	.hgz-hero {
		min-height: 630px;
	}

	.hgz-hero__container {
		padding-top: 90px;
		padding-bottom: 55px;
	}

	.hgz-hero__title {
		font-size: 34px;
	}

	.hgz-hero__subtitle {
		font-size: 16px;
	}
}
