/**
 * Van Vuuren — hero, footer, brand sticker (plain CSS, no Sass)
 * Colors / breakpoints aligned with theme variables.
 */

/* --- Helpers --- */
.u-visuallyHidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* --- m-brandSticker --- */
.m-brandSticker {
	position: relative;
	flex-shrink: 0;
	width: 88px;
	height: 88px;
}

@media (min-width: 576px) {
	.m-brandSticker {
		width: 104px;
		height: 104px;
	}
}

.m-brandSticker__svg {
	display: block;
	width: 100%;
	height: auto;
}

.m-brandSticker__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.m-brandSticker__shape {
	fill: #8b003c;
}

.m-brandSticker__text {
	font-family: 'rucksackblack', sans-serif;
	fill: #fff;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

@media (min-width: 576px) {
	.m-brandSticker__text {
		font-size: 12px;
	}
}

.m-brandSticker.-hero {
	align-self: flex-end;
	margin-top: 1.5rem;
}

@media (min-width: 768px) {
	.m-brandSticker.-hero {
		position: absolute;
		right: 1.5rem;
		bottom: 2rem;
		margin-top: 0;
	}
}

.m-brandSticker.-footer {
	width: 72px;
	height: 72px;
	z-index: 1;
}

@media (min-width: 576px) {
	.m-brandSticker.-footer {
		position: absolute;
		right: 0;
		top: 2rem;
		transform: translateX(100%);
		width: 8.5rem;
		height: 8.5rem;
	}
}

/* --- hero --- */
.home .o-hero {
	position: relative;
	min-height: 550px;
	max-height: 550px;
}

@media (max-width: 600px) {
	.home .o-hero {
		background-size: 250% !important;
		background-position: 31% 22% !important;
	}
}

.o-hero:before {
    content: "";
    background-repeat: no-repeat;
background-image: url('/wp-content/themes/vanvuuren/assets/images/header-shape-white.svg');    position: absolute;
	background-position: center;
    background-size: cover;
    top: 0;
    right: 0;
    bottom: 0;
    left: -15rem;
    width: 100%;
    height: 27rem;
    margin-right: auto;
  	margin-left: auto;
}


.o-hero:after {
	content: ""; 
	background-color: white;
	width: 100vw;
	height: 5.5rem;
	position: absolute;
	top: 0;
	left: 0;
}

.o-hero .vc_col-xs-6 {
	width: 100% !important;
}

.o-hero .vc_column-inner {
	z-index: 1;
}

#o-hero__title.o-hero__title {
	font-size: 60px !important;
	line-height: 1 !important;
}

.o-hero__stickerSticky {
	position: absolute;
	right: 0;
	bottom: -8rem;
	width: 8.5rem;
	height: auto;
}

.o-hero__button {
	position: absolute !important;
    bottom: -3rem;
}

.o-hero__sticker {
	width: 25rem;
	height: auto;
	margin-top: -1.25rem;
}

@media (max-width: 1100px) {
	.o-hero:after {
		height: 4.65rem;
	}

	#o-hero__title.o-hero__title {
		width: 150%;
		font-size: 60px !important;
	}

	.o-hero__stickerSticky {
		right: 1rem;
		bottom: -3.7rem;
		width: 9.5rem;
	}

	.o-hero .vc_column_container:before {
		height: 233px;
	}

	.o-hero:before {
		left: -5rem;
		width: 140%;
		height: 23rem;
		margin: 0;
	}
}

@media (max-width: 768px) {	
	.o-hero:before {
		left: -5rem;
		width: 160%;
		height: 23rem;
		margin: 0;
	}

	.o-hero:after {
		display: none;
	}
}

@media (max-width: 480px) {	
	.o-hero:before {
		height: 20rem;
		left: 0;
	}

	#o-hero__title.o-hero__title {
		font-size: 40px !important;
	}

	.o-hero__sticker {
		width: 15.5rem;
	}

	.o-hero__stickerSticky {
		right: 1rem;
		bottom: -15rem;
		width: 7.5rem;
	}
}

/* --- o-site-footer --- */
.o-site-footer {
	background-color: #fff;
	color: #232f5d;
	position: relative;
	overflow: hidden;
}

.o-site-footer:after {
	content: '';
	background-color: #232f5d;
	position: absolute;
	top: 0;
	left: 0;
	width: 200vw;
	height: 4.03rem;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	max-width: 1000%;
	z-index: 0;
}

.o-site-footer__inner {
	max-width: 1170px;
	min-height: 320px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 110px;
	position: relative;
}

/* Responsive layout for provided HTML */
.o-site-footer__primary {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.o-site-footer__inner:before {
	content: '';
	display: block;
	background-color: #232f5d;
	position: absolute;
	top: 0;
	left: 0;
	transform: translateX(-100%);
    width: 125rem;
	height: 18rem;
}

.o-site-footer__inner:after {
	content: '';
	background-image: url('../images/basis_vorm_blauw.png');
	background-repeat: no-repeat;
	background-position: top;
	background-size: contain;
	position: absolute;
	top: 0;
	left: 0;
    width: 67rem;
	height: 18rem;
	z-index: 0;
}

@media (max-width: 1300px) {
	.m-brandSticker.-footer {
		transform: unset;
	}
}

@media (max-width: 1100px) {
	.o-site-footer__primary {
		margin-right: 2.5rem;
		margin-left: 2.5rem;
	}
	.o-site-footer__inner {
		width: 100%;
		padding-top: 84px;
	}
	.o-site-footer__inner:before {
		width: 90rem;
		height: 34rem;
	}
	.o-site-footer__inner:after {
		height: 100%;
	}
}

@media (min-width: 1100px) {
	.o-site-footer__primary {
		display: grid;
		grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 1fr) auto;
		gap: 2.25rem 3rem;
		align-items: start;
	}
}

@media (min-width: 992px) {
	.o-site-footer__primary {
		gap: 2.5rem 4rem;
	}
}

.o-site-footer__logo {
	display: inline-block;
	margin-top: 3rem;
}

@media (min-width: 1100px) {
	.o-site-footer__logo {
		margin-top: 0;
		margin-bottom: 0;
	}
}

.o-site-footer__logoImg {
	display: block;
	max-width: 220px;
	height: auto;
}

@media (min-width: 1100px) {
	.o-site-footer__logoImg {
		max-width: 260px;
	}
}

/* Impreza w-socials in custom footer */
.o-site-footer__logo-social .o-site-footer__wSocials.w-socials {
	margin-top: 1rem;
}

@media (min-width: 1100px) {
	.o-site-footer__logo-social .o-site-footer__wSocials.w-socials {
		margin-top: 0;
	}
}

.o-site-footer__social {
	list-style: none;
	padding-left: 0;
	margin-bottom: 1.5rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1rem;
}

@media (min-width: 1100px) {
	.o-site-footer__social {
		margin-bottom: 0;
		justify-content: flex-end;
	}
}

.o-site-footer__socialLink {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-decoration: none;
	transition: all 0.2s ease-in-out;
}

.o-site-footer__socialLink:hover,
.o-site-footer__socialLink:focus-visible {
	opacity: 0.85;
}

.o-site-footer__socialIcon {
	display: block;
	line-height: 0;
}

.o-site-footer__socialIcon img {
	display: block;
	width: 28px;
	height: auto;
	max-height: 28px;
	object-fit: contain;
}

.o-site-footer__socialLabel {
	font-family: 'rucksackbook', sans-serif;
	font-size: 0.9375rem;
	text-decoration: underline;
}

.o-site-footer__nav {
	margin-bottom: 1.5rem;
}

@media (min-width: 1100px) {
	.o-site-footer__nav {
		margin-bottom: 0;
	}
}

.o-site-footer__menu {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
	margin-left: 0;
}

.o-site-footer__menu a {
	font-size: 16px;
	font-weight: 400;
	text-decoration: none;
	border-bottom: 2px solid transparent;
	transition: opacity 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.o-site-footer__menu a:hover,
.o-site-footer__menu a:focus-visible {
	opacity: 0.85;
	border-bottom-color: currentColor;
}

.o-site-footer__menu .sub-menu {
	list-style: none;
	padding-left: 0.75rem;
	margin-top: 0.35rem;
	margin-bottom: 0;
	opacity: 0.9;
}

.o-site-footer__menu .sub-menu a {
	font-size: 0.9375rem;
}

.o-site-footer__contact {
	font-size: 18px;
	line-height: 1.65;
}

.o-site-footer__contact a {
	color: inherit;
	text-decoration: underline;
}

.o-site-footer__contact a:hover,
.o-site-footer__contact a:focus-visible {
	opacity: 0.85;
}

.o-site-footer__content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin-left: 0;
}

@media (max-width: 1100px) {
	.o-site-footer__contact {
		margin-top: 8rem;
	}

	.o-site-footer__content {
		order: 4;
		margin-bottom: 5rem;
	}
}

.o-site-footer__logo-social {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

@media (min-width: 1100px) {
	.o-site-footer__logo-social {
		padding-top: 0.25rem;
	}
}

.o-site-footer__address br {
	line-height: inherit;
}

.o-site-footer .m-brandSticker.-footer {
	justify-self: end;
	align-self: start;
}

@media (max-width: 1100px) {
	.o-site-footer .m-brandSticker.-footer {
		left: auto;
		right: 2.5rem;
		transform: unset;
		align-self: flex-start;
	}
}

@media (max-width: 768px) {
	.o-site-footer .m-brandSticker.-footer {
		right: auto;
	}
}

.o-site-footer__copyright {
	margin: 0;
	font-size: 16px;
	font-weight: 500;
	margin-top: 1rem;
}

.u-shapeBlue:before {
	content: '';
	display: block;
	background-image: url('/wp-content/themes/vanvuuren/assets/images/page-shape-blue.svg');
	background-repeat: no-repeat;
	background-position: top;
	background-size: contain;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}