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

.home-hero {
	position: relative;
	display: flex;
	min-height: 640px;
	align-items: center;
	overflow: hidden;

	background:
		linear-gradient(
			135deg,
			#f8fbff 0%,
			#edf4fb 55%,
			#f8f4ed 100%
		);
}


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

.home-hero__background {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.home-hero__background::before {
	position: absolute;

	top: -220px;
	right: -160px;

	width: 590px;
	height: 590px;

	border-radius: 50%;

	background: rgba(163, 211, 224, 0.28);

	content: "";
}

.home-hero__background::after {
	position: absolute;

	bottom: -230px;
	left: -180px;

	width: 500px;
	height: 500px;

	border-radius: 50%;

	background: rgba(239, 184, 73, 0.12);

	content: "";
}


/* =========================================================
   GRID
   ========================================================= */

.home-hero__grid {
	position: relative;
	z-index: 2;

	display: grid;

	grid-template-columns:
		minmax(0, 1.05fr)
		minmax(380px, 0.95fr);

	align-items: center;

	gap: clamp(40px, 7vw, 90px);

	padding-block: clamp(58px, 7vw, 95px);
}


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

.home-hero__content {
	max-width: 690px;
}

.home-hero__title {
	margin-bottom: 22px;
}

.home-hero__intro {
	max-width: 660px;

	margin-bottom: 28px;

	color: var(--joyce-text);

	font-size: clamp(1.05rem, 1.5vw, 1.2rem);

	line-height: 1.7;
}


/* =========================================================
   CTA'S
   ========================================================= */

.home-hero__actions {
	display: flex;

	flex-wrap: wrap;

	gap: 14px;

	margin-bottom: 28px;
}


/* =========================================================
   VOORDELEN
   ========================================================= */

.home-hero__benefits {
	display: flex;

	flex-wrap: wrap;

	gap: 12px 22px;

	margin: 0;
	padding: 0;

	list-style: none;
}

.home-hero__benefits li {
	display: inline-flex;

	align-items: center;

	gap: 8px;

	color: var(--joyce-heading);

	font-size: 0.92rem;
	font-weight: 650;
}

.check-icon {
	display: inline-flex;

	width: 24px;
	height: 24px;

	align-items: center;
	justify-content: center;

	border-radius: 50%;

	background: rgba(36, 122, 82, 0.12);

	color: var(--joyce-success);

	font-size: 0.8rem;
	font-weight: 900;
}


/* =========================================================
   FOTO JOYCE
   ========================================================= */

.home-hero__visual {
	position: relative;
}

.hero-photo-card {
	position: relative;

	width: min(100%, 500px);

	margin-left: auto;

	overflow: hidden;

	border: 10px solid rgba(255, 255, 255, 0.9);

	border-radius: 36px;

	background: var(--joyce-white);

	box-shadow: var(--joyce-shadow-medium);
}

.hero-photo-card__image {
	display: block;

	width: 100%;
	height: 560px;

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

	background: #eef3f8;
}


/* =========================================================
   CITAAT OP FOTO
   ========================================================= */

.hero-photo-card__badge {
	position: absolute;

	right: 20px;
	bottom: 20px;

	max-width: 310px;

	padding: 16px 20px;

	border-radius: 16px;

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

	box-shadow: var(--joyce-shadow-small);

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

.hero-photo-card__quote {
	margin: 0;
}

.hero-photo-card__quote p {
	margin: 0 0 7px;

	color: var(--joyce-blue-dark);

	font-family: Georgia, serif;

	font-size: 0.92rem;
	font-style: italic;

	line-height: 1.5;
}

.hero-photo-card__quote cite {
	display: block;

	color: var(--joyce-muted);

	font-size: 0.78rem;
	font-style: normal;
	font-weight: 700;

	line-height: 1.3;
}


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

@media (max-width: 900px) {

	.home-hero {
		min-height: auto;
	}

	.home-hero__grid {
		grid-template-columns: 1fr;

		padding-block: 55px 65px;
	}

	.home-hero__visual {
		width: 100%;
		max-width: 560px;

		margin-inline: auto;
	}

	.hero-photo-card {
		margin-inline: auto;
	}

}


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

@media (max-width: 680px) {

	.hero-photo-card {
		border-width: 7px;
		border-radius: 26px;
	}

	.hero-photo-card__image {
		height: 430px;
	}

	.hero-photo-card__badge {
		right: 14px;
		bottom: 14px;

		max-width: calc(100% - 28px);

		padding: 13px 15px;
	}

	.hero-photo-card__quote p {
		font-size: 0.84rem;
	}

	.hero-photo-card__quote cite {
		font-size: 0.74rem;
	}

}