@import 'animations.css';

:root {
	--font-inter: 'Inter', sans-serif;
	--white: #f7f7f7;
	--black: #232323;
	--gray: #f3f4f6;
	--text-color: #606060;
	--mdb-nav-link-font-size: 16px;
	/* Do not remove is to trick IDE that they exist are loaded in elsewhere */
	--primary-color: ;
	--secondary-color: ;
	--tertiary-color: ;
	--quaternary-color: ;
	--primary: var(--primary-color);
	--secondary: var(--secondary-color);
	--tertiary: var(--tertiary-color);
	--quaternary: var(--quaternary-color);
}

/* ======== GENERAL STYLES ========== */
html, body {
	overflow-x: hidden !important;
	width: 100% !important;
	position: relative !important;
	max-width: 100vw !important;
}

body {
	font-family: var(--font-inter), sans-serif !important;
	font-weight: 400;
	font-size: 18px !important;
	line-height: 1.3em;
	cursor: default;
	color: var(--black) !important;
}

p, ul, ol, li, dl, dt, dd, pre, figure, figcaption, table, th, td, caption {
	color: var(--text-color);
	line-height: 1.6em;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 600;
	line-height: 1.3em;
	color: var(--primary) !important;
}

.theme-settings {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
}

.theme-settings img {
	max-width: 200px;
	height: auto;
	display: block;
	margin: 0;
	order: 2;
}

.theme-slogan {
	flex: 1;
	text-align: center;
	order: 1;
	font-size: 2rem;
	font-weight: 600;
}

@media (max-width: 768px) {
	.theme-settings {
		flex-direction: column;
		gap: 20px;
	}

	.theme-settings img,
	.theme-slogan {
		order: unset;
		width: 100%;
		text-align: center;
	}
}

li {
	list-style: none;
}

.paragraph {
	margin: auto;
	color: var(--text-color);
	text-align: center;
}

.title {
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 20px;
	text-transform: none;
}

.title.secondary {
	color: var(--secondary) !important;
}

.spacing {
	padding-top: 30px !important;
	padding-bottom: 30px !important;
}

::selection {
	background-color: var(--primary);
	color: var(--white);
}

section.hero-simple > div {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

section .hero-content {
	padding-bottom: 150px;
	padding-top: 50px;
}

section .hero-content p {
	color: var(--white);
}

/* Mobiele centrering voor hero content */
@media only screen and (max-width: 767px) {
	.hero-simple .hero-content {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
	}
	
	.hero-simple .hero-content .col-8 {
		width: 100%;
		margin-bottom: 20px;
	}
}

@media only screen and (min-width: 992px) {
	section .hero-content {
		padding: 100px 0 200px 0;
	}
}

.image-block {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	height: 100%;
}

.image-block img.event-child {
	width: 100%;
	height: auto;
	object-fit: contain;
	margin-top: 30px;
	margin-bottom: 30px;
}
@media only screen and (min-width: 768px) {
	.image-block img.event-child {
		width: 80%;
	}
}

/* Mobile styles for image-block */
@media (max-width: 768px) {
	.image-block {
		justify-content: center;
	}
}

/* Over ons */
.hero-row {
	min-height: 450px;
	overflow-x: hidden;
}

.hero-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.hero-side {
	background-color: rgb(228, 64, 95);
}

.hero-card {
	left: 18%;
	top: 20%;
	width: 18rem;
	height: auto;
	border-radius: 0 40px 0 40px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media only screen and (min-width: 768px) {
	.hero-card {
		left: 60%;
	}
}

.fw-image {
	object-fit: cover;
	width: 100%;
	height: 500px;
}

img.fw-image:hover {
	transform: none !important;
	filter: none !important;
}

/* Collage styling */
.collage-hero {
	position: relative;
	padding: clamp(48px, 8vw, 96px) 0;
	background: linear-gradient(
			135deg,
			color-mix(in srgb, var(--primary) 85%, #fff 15%) 0%,
			color-mix(in srgb, var(--secondary) 85%, #fff 15%) 100%
	);
}

.collage {
	display: grid;
	grid-template-areas:
      "a a b"
      "a a c"
      "d d c";
	grid-template-columns: 1fr 1fr 1fr;
	gap: 16px;
}

/* image card wrapper carries glow and tilt */
.ph-card {
	--sx: -40%;
	--sop: 0;
	position: relative;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
	transform-style: preserve-3d;
	will-change: transform, box-shadow;
	background: var(--black);
}

.ph-card img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	aspect-ratio: 4 / 3;
	border-radius: 14px;
}

/* areas and responsive aspect ratios */
.collage .ph-card:nth-child(1) {
	grid-area: a;
}

.collage .ph-card:nth-child(2) {
	grid-area: b;
}

.collage .ph-card:nth-child(3) {
	grid-area: c;
}

.collage .ph-card:nth-child(4) {
	grid-area: d;
}

.collage .ph-card:nth-child(4) img {
	aspect-ratio: 16 / 9;
}

.collage .ph-card:only-child {
	grid-area: a / a / span 3 / span 3;
}

.collage .ph-card:first-child:nth-last-child(2),
.collage .ph-card:first-child:nth-last-child(2) ~ .ph-card {
	grid-area: auto;
}

@media (max-width: 992px) {
	/*.collage { grid-template-areas: "a b" "c d"; grid-template-columns: 1fr 1fr; }*/
	/*.ph-card img { aspect-ratio: 16 / 10; }*/
}

@media (max-width: 768px) {
	/*.ph-card {*/
	/*	max-width: 320px; !* or clamp(240px, 80%, 360px) *!*/
	/*	margin: 0 auto;   !* center each card *!*/
	/*}*/
}

/* ======== CONTACT FORM 7 STYLES ========== */
.wpcf7 form {
	color: var(--text-color);
}

.wpcf7-form label {
	color: var(--text-color);
	font-weight: 600;
	margin-bottom: 6px;
	display: block;
}

.wpcf7-form .wpcf7-form-control[type="text"],
.wpcf7-form .wpcf7-form-control[type="email"],
.wpcf7-form .wpcf7-form-control[type="tel"],
.wpcf7-form .wpcf7-form-control[type="url"],
.wpcf7-form .wpcf7-form-control[type="number"],
.wpcf7-form .wpcf7-form-control[type="password"],
.wpcf7-form textarea.wpcf7-form-control,
.wpcf7-form select.wpcf7-form-control {
	width: 100%;
	background: transparent;
	color: var(--text-color);
	border: 0;
	border-bottom: 1px solid var(--text-color);
	padding: 14px 0;
	outline: 0;
	border-radius: 0;
	box-shadow: none;
	appearance: none;
}

.wpcf7-form .wpcf7-form-control::placeholder,
.wpcf7-form textarea.wpcf7-form-control::placeholder {
	color: var(--text-color);
	opacity: .6;
}

.wpcf7-form .wpcf7-form-control:focus-visible {
	outline: 0;
	box-shadow: none;
	border-bottom-color: var(--secondary, var(--secondary));
}

.wpcf7-form .wpcf7-form-control:focus {
	border-bottom-color: var(--primary);
	color: var(--primary);
}

/* label highlight on focus */
.wpcf7-form p:focus-within label {
	color: var(--primary);
}

/*.wpcf7-form {*/
/*    display: grid;*/
/*    gap: 24px;*/
/*}*/
.wpcf7-form > p {
	margin: 0;
}

.wpcf7-form .wpcf7-submit,
.wpcf7-form .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	padding: 14px 22px;
	border: 0;
	border-radius: 999px;
	color: #fff;
	background-image: linear-gradient(90deg, var(--primary), var(--secondary));
	cursor: pointer;
	box-shadow: none;
	outline: 0;
	transition: transform .12s ease, filter .12s ease;
}

.wpcf7-form .wpcf7-submit:hover {
	filter: brightness(1.05);
	transform: translateY(-1px);
	color: var(--white);
}

.wpcf7-form .wpcf7-submit:focus-visible {
	outline: 0;
	box-shadow: none;
}

/* errors */
.wpcf7-form .wpcf7-not-valid {
	border-bottom-color: #d22d2d !important;
}

.wpcf7-form .wpcf7-not-valid-tip {
	color: #d22d2d;
	margin-top: 6px;
	font-size: 0.9rem;
}

/* response message */
.wpcf7 .wpcf7-response-output {
	margin: 12px 0 0;
	border-radius: 6px;
	border-width: 1px;
	padding: 10px 12px;
}

.form-cta {
	background-color: var(--gray);
}

/* ======== GENERAL SOCIAL STYLES ========== */
.social-media-icons {
	width: fit-content;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 15px;
}

.social-icon {
	width: 30px;
	height: 30px;
	margin-right: 7px;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.social-icon.fa-instagram,
.fa-brands.fa-instagram {
	background-color: #E4405F;
	color: #FFF;
}

.social-icon.fa-linkedin,
.fa-brands.fa-linkedin {
	background-color: #0A66C2;
	color: #FFF;
}

.social-icon.fa-x-twitter,
.fa-brands.fa-x-twitter {
	background-color: var(--black);
	color: #FFF;
}

.social-icon.fa-facebook-f,
.fa-brands.fa-facebook-f {
	background-color: #1877F2;
	color: #FFF;
}

.social-icon.fa-envelope,
.fa-solid.fa-envelope {
	background-color: #34465D;
	color: #FFF;
}

.fa-solid.fa-envelope.contact,
.fa-solid.fa-location-dot.contact,
.fa-solid.fa-phone.contact {
	background-color: transparent;
	color: var(--secondary);
	font-size: 20px;
	border: 1px solid var(--text-color);
	padding: 10px;
	height: 40px;
	width: 40px;
}

.social-icon.fa-youtube,
.fa-brands.fa-youtube {
	background-color: #CD201F;
	color: #FFF;
}

.social-icon.fa-tiktok,
.fa-brands.fa-tiktok {
	background-color: var(--black);
	color: #FFF;
}

/* ======== END GENERAL SOCIAL STYLES ========== */
/* ======== Programma sectie ========== */
.schedule-time-bs {
	min-width: 120px; /* Ensures time slots align neatly */
}

.speaker-image-bs {
	width: 60px;
	height: 60px;
	object-fit: cover;
}

.programma-section {
	background: var(--black);
	padding: 100px 20px;
	color: #fff;
	position: relative;
}

.programma-wrapper {
	position: relative;
	z-index: 2;
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.programma-wrapper h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 30px;
}

.programma-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
	text-align: left;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(6px);
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.programma-item {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 30px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 12px;
}

.programma-item:last-child {
	border-bottom: none;
}

.programma-time {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--secondary);
	white-space: nowrap;
}

.programma-onderdeel {
	font-size: 1.2rem;
	line-height: 1.4;
}

@media (max-width: 768px) {
	.praktische-hero h1 {
		font-size: 2.2rem;
	}

	.praktische-hero p {
		font-size: 1rem;
	}

	.programma-item {
		flex-direction: column;
		gap: 10px;
	}

	.programma-time {
		font-size: 1rem;
	}
}

/* ======== BUTTON STYLES ========== */
.btn {
	display: inline-block;
	padding: 12px 20px;
	text-transform: uppercase !important;
	text-decoration: none;
	box-shadow: none !important;
	font-size: 18px !important;
}

.btn-primary {
	background-color: var(--primary) !important;
	color: var(--white) !important;
	font-size: 16px !important;
	border: 2px solid var(--primary) !important;
}

.btn-primary:hover {
	background-color: transparent !important;
	border-color: var(--primary) !important;
	color: var(--primary) !important;
}

.nav-btn {
	background-color: transparent;
	border: 2px solid var(--black);
	border-radius: 30px;
	padding: 12px 30px;
	font-weight: 600;
	transition: all 0.3s ease;
	cursor: pointer;
	color: var(--black);
}

.navbar-dark .nav-btn {
	border: 2px solid var(--white);
	color: var(--white);
}

.nav-btn:hover,
.nav-btn.active {
	background-color: var(--primary);
	border-color: var(--primary);
	color: white;
}

/* ======== END BUTTON STYLES ========== */
/* ======== HEADER STYLES ========== */
.navbar {
	--mdb-navbar-padding-x: 0;
	--mdb-navbar-padding-y: 0.5rem;
	--mdb-navbar-color: var(--black);
	--mdb-navbar-hover-color: var(--primary);
	--mdb-navbar-active-color: var(--primary);
	--mdb-navbar-nav-link-padding-x: 1rem;
}

.navbar-dark, .navbar[data-mdb-theme="dark"] {
	--mdb-navbar-color: var(--white);
	--mdb-navbar-hover-color: var(--gray);
	--mdb-navbar-active-color: var(--primary);
}

.logo {
	width: clamp(125px, 30vw, 185px);
	object-fit: contain;
}

.dropdown-menu {
	width: 15vw;
	padding: 10px;
}

.nav-item .nav-link {
	text-transform: uppercase;
}

/* ======== END HEADER STYLES ========== */
/* ========  base navbar and underline style ========== */
.navbar {
	--mdb-navbar-padding-x: 0;
	--mdb-navbar-padding-y: 0.5rem;
	--mdb-navbar-color: var(--black);
	--mdb-navbar-hover-color: var(--primary);
	--mdb-navbar-active-color: var(--primary);
	--mdb-navbar-nav-link-padding-x: 1rem;
}

.navbar-dark {
	--mdb-navbar-color: var(--white);
	--mdb-nav-link-color: var(--white);
	--mdb-nav-link-hover-color: var(--gray);
}

.navbar-dark .dropdown-menu {
	--mdb-navbar-color: var(--black);
	--mdb-nav-link-color: var(--black);
	--mdb-nav-link-hover-color: var(--primary);
}

/* Underline Effect (Applies to all screen sizes) */
.navbar-nav .nav-link {
	position: relative;
	padding-bottom: 0.5rem;
}

.navbar-nav .nav-link::after, a::after {
	content: '';
	position: absolute;
	border: 0;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background: linear-gradient(to right, var(--primary), var(--secondary));
	transition: width 0.2s ease-in-out, transform 0.2s ease;
}

a.nav-btn::after, a.navbar-brand::after, .noaf::after, .jury-image::after, a:has(.jury-image)::after {
	content: '';
	height: 0;
	display: none;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-item.current-menu-item > .nav-link::after,
a:hover::after {
	width: 100%;
}

a {
	text-decoration: none;
	color: inherit;
	line-height: inherit;
	position: relative;
}

/* ========  end base navbar and underline style ========== */
/* ======== BASE DROPDOWN ========== */
.nav-item.dropdown {
	position: relative;
}

.dropdown-menu {
	position: absolute;
	display: block;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	margin-top: 0;
	border-radius: 0;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.dropdown-menu .nav-link {
	font-size: 13px;
	padding: 0.255em 0.5em;
	border-bottom: unset;
}

/* --- Desktop Dropdown Specifics --- */
@media (min-width: 992px) {
	.dropdown-menu {
		width: 220px;
		border: 1px solid #eee;
		box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15);
	}

	/* Show dropdown on hover with a fade-in */
	.nav-item.dropdown:hover > .dropdown-menu {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}
}

/* ======== END BASE DROPDOWN ========== */
/* ======== MOBILE MENU========== */
@media (max-width: 992px) {
	/* --- Main Mobile Menu --- */
	#navbarSupportedContent {
		margin-top: 20px;
	}

	/* --- Mobile Dropdown Menu --- */
	.navbar-nav .dropdown-menu {
		/* FIX: Reset positioning for mobile to flow within the navbar */
		position: static;
		width: 100%;
		border: none;
		box-shadow: none;
		background-color: rgba(0, 0, 0, 0.02);
		/* FIX: Let slideToggle handle visibility, so remove opacity rules */
		display: none;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		padding-left: 1rem;
	}

	.nav-item .nav-link {
		border-bottom: 2px solid #eee;
	}

	/* Remove border from last nav item */
	.nav-item:last-child .nav-link {
		border-bottom: none;
	}

	/* --- Mobile Dropdown Structure --- */
	.dropdown-wrapper {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
	}

	.dropdown-main-link {
		flex: 1;
		padding-right: 10px;
	}

	.dropdown-toggle-btn {
		background: none;
		border: none;
		padding: 10px;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		min-width: 40px;
	}

	/* This creates the '+' icon */
	.dropdown-arrow {
		display: block;
		width: 18px;
		height: 18px;
		background-image: linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor);
		background-size: 100% 2px, 2px 100%;
		background-position: center;
		background-repeat: no-repeat;
		transition: transform 0.3s ease-in-out;
	}

	/* This rotates the '+' into an 'x' */
	.nav-item.dropdown.submenu-open .dropdown-arrow {
		transform: rotate(45deg);
	}
}

/* ======== END MOBILE MENU========== */

/* Hide dropdown toggle button on desktop */
@media (min-width: 992px) {
	.dropdown-toggle-btn {
		display: none !important;
	}
	
	.dropdown-wrapper {
		display: block;
	}
	
	.dropdown-main-link {
		padding-right: 0;
	}
}

/* ======== END MOBILE TOGGLE ICON (HAMBURGER) ========== */
.navbar-toggler {
	border: none;
	outline: none;
	box-shadow: none !important;
}

.hamburger-icon {
	width: 25px;
	height: 20px;
	position: relative;
	transition: .5s ease-in-out;
	cursor: pointer;
}

.hamburger-icon span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background: var(--mdb-navbar-color, #000);
	border-radius: 3px;
	opacity: 1;
	left: 0;
	transition: .25s ease-in-out;
}

.hamburger-icon span:nth-child(1) {
	top: 0;
}

.hamburger-icon span:nth-child(2) {
	top: 8px;
}

.hamburger-icon span:nth-child(3) {
	top: 16px;
}

.navbar-toggler.active .hamburger-icon span:nth-child(1) {
	top: 8px;
	transform: rotate(135deg);
}

.navbar-toggler.active .hamburger-icon span:nth-child(2) {
	opacity: 0;
	left: -60px;
}

.navbar-toggler.active .hamburger-icon span:nth-child(3) {
	top: 8px;
	transform: rotate(-135deg);
}

.navbar-dark .hamburger-icon span {
	background: var(--mdb-navbar-color, #fff);
}
/* ======== END MOBILE TOGGLE ICON (HAMBURGER) ========== */

/* ======== BLOG PAGE AND STYLE ========== */
.post-card {
	width: 100%;
	background: #fff;
	border-radius: 50px 0 50px 0;
	box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
	overflow: hidden;
	transition: transform .2s ease, box-shadow .2s ease;
	font: 400 14px/1.5 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
	color: #111827;
}

.post-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 32px rgba(0, 0, 0, .12);
}

.post-card__media {
	position: relative;
	display: block;
	aspect-ratio: 4/3;
	overflow: hidden;
	border-bottom: 1px solid #eef0f3;
}

.post-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post-card__badge {
	position: absolute;
	top: 10px;
	right: 10px;
	background: #ff4da6;
	color: #fff;
	font-weight: 700;
	font-size: 12px;
	padding: 6px 10px;
	border-radius: 999px;
	box-shadow: 0 6px 18px rgba(255, 77, 166, .35);
}

.post-card__body {
	padding: 14px 16px 16px;
}

.post-card__title {
	font-size: 18px;
	line-height: 1.35;
	margin: 0 0 8px 0;
	min-height: 3rem;
}

.post-card__title a {
	color: inherit;
	text-decoration: none;
}

.post-card__title a:hover {
	text-decoration: underline;
}

.post-card__excerpt {
	margin: 0 0 12px 0;
	color: #6b7280;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.post-card__meta {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #6b7280;
	font-size: 12px;
}

.post-card__dot {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: currentColor;
}

.single-wrap {
	max-width: 900px;
	margin: 75px auto;
}

.single-meta {
	color: #6b7280;
	font-size: 14px;
	text-align: center;
	margin: 0 0 8px
}

.single-title {
	font-size: 42px;
	line-height: 1.15;
	font-weight: 800;
	text-align: center;
	margin: 0 0 8px;
	color: #0f172a
}

.single-sub {
	color: #475569;
	text-align: center;
	margin: 0 0 18px;
	font-size: 18px
}

.term-pills {
	display: flex;
	gap: 8px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 22px
}

.term-pill {
	display: inline-block;
	background: #eef2f7;
	border: 1px solid #e5e7eb;
	border-radius: 999px;
	padding: 6px 12px;
	font-size: 13px;
	color: #0f172a;
	text-decoration: none
}

.term-pill:hover {
	background: #e9eef6
}

.single-cover {
	border-radius: 12px;
	overflow: hidden;
	margin: 0 0 28px;
	box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
	max-height: 400px;
}

.single-cover img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.content-grid {
	display: grid;
	grid-template-columns:1fr 56px;
	gap: 24px
}

@media (max-width: 992px) {
	.content-grid {
		grid-template-columns:1fr
	}
}

.share-rail {
	position: sticky;
	top: 120px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: center
}

.share-rail a {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	border: 1px solid #e5e7eb;
	background: #fff;
	color: #111827;
	text-decoration: none
}

.share-rail a:hover {
	box-shadow: 0 6px 18px rgba(0, 0, 0, .1)
}

.single-content {
	color: #0f172a;
	font-size: 18px;
	line-height: 1.7
}

.single-content li {
	list-style: unset;
}

.single-content :where(h2,h3) {
	margin-top: 1.8em;
	margin-bottom: .6em
}

.single-content p {
	margin: 0 0 1em
}

/* ======== END BLOG PAGE AND STYLE ========== */
/* ======== FOOTER STYLES ========== */
footer {
	padding-top: 100px;
}

footer > .container {
	margin-bottom: 75px;
}

footer .copyright {
	padding-bottom: 25px;
}

footer, footer .copyright, footer a, footer p, footer ul, footer li {
	background-color: #F3F3F3;
	color: #666;
	font-size: 14px;
	line-height: 1.6em;
}

footer .copyright, .copyright a {
	font-size: 10px;
	color: #666;
}

footer .copyright a:hover, footer a:hover {
	transition: 300ms ease;
	color: var(--primary);
}

footer .footer-area .menu {
	padding: 0;
}

@media (max-width: 767px) {
	/* Commissieleden sectie mobiele styling - titel en afbeelding naast elkaar */
	.container.spacing .row.container.m-0.p-0 {
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
		margin-bottom: 20px !important;
	}

	.container.spacing .row.container.m-0.p-0 .col-md-7 {
		flex: 1 !important;
		padding-right: 15px !important;
	}

	.container.spacing .row.container.m-0.p-0 .col-md-7 h1.title {
		font-size: 1.4rem !important;
		margin-bottom: 0 !important;
		padding: 0 0 0 15px !important;
		line-height: 1.2 !important;
	}

	.container.spacing .row.container.m-0.p-0 .col-md-5 {
		flex-shrink: 0 !important;
		max-width: 120px !important;
	}

	.container.spacing .row.container.m-0.p-0 .col-md-5 img {
		max-height: 80px !important;
		width: auto !important;
		float: none !important;
	}

	/* Footer main container mobile styling */
	footer > .container {
		padding: 0 15px !important;
		margin-bottom: 50px !important;
	}

	/* Footer columns mobile styling */
	footer .row > div[class*="col-md-"] {
		padding: 0 15px 20px 15px !important;
		margin-bottom: 20px !important;
	}

	/* Footer content visibility */
	footer .row > div[class*="col-md-"] > div,
	footer .row > div[class*="col-md-"] > strong,
	footer .row > div[class*="col-md-"] > p {
		visibility: visible !important;
		opacity: 1 !important;
		display: block !important;
	}

	/* Footer widget areas */
	footer .widget {
		margin-bottom: 20px !important;
	}

	footer .widget-title,
	footer h6.title {
		font-size: 16px !important;
		margin-bottom: 10px !important;
		color: #333 !important;
	}

	footer .widget ul,
	footer .widget li,
	footer .widget p,
	footer .widget a {
		visibility: visible !important;
		opacity: 1 !important;
		display: block !important;
		color: #666 !important;
	}

	/* Social icons mobile styling - horizontaal naast elkaar */
	footer .social-media-icons {
		margin-top: 15px !important;
		display: flex !important;
		flex-direction: row !important;
		flex-wrap: wrap !important;
		gap: 10px !important;
		align-items: center !important;
	}

	footer .social-media-icons a,
	footer .social-media-icons .social-icon {
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
		margin-right: 0 !important;
		margin-bottom: 0 !important;
		width: 40px !important;
		height: 40px !important;
	}

	/* Copyright section mobile styling */
	.copyright .container {
		gap: 15px;
		padding: 0 15px !important;
	}

	.copyright .menu {
		justify-content: center !important;
		flex-wrap: wrap;
		gap: 15px !important;
	}

	.copyright .menu li {
		text-align: center;
	}

	#content section:has(.container.my-5) .container.my-5 {
		margin-bottom: 0 !important;
	}

	.jury-slider-controls {
		justify-content: center !important;
		margin-bottom: 0 !important;
	}

	.commissieleden-grid {
		grid-template-columns: repeat(2, 1fr) !important;
		justify-items: center;
		gap: 10px !important;
		padding: 0 10px;
		max-width: 100%;
		margin: 0 auto;
		box-sizing: border-box;
	}

	.commissie-card {
		padding: 15px !important;
		width: 160px !important;
		height: 240px !important;
		display: flex !important;
		flex-direction: column !important;
		justify-content: space-between !important;
		align-items: center !important;
		box-sizing: border-box !important;
		background: #fff;
		border-radius: 16px;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
		transition: transform .2s ease, box-shadow .2s ease;
	}

	.commissie-card:hover {
		transform: translateY(-2px);
		box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
	}

	.commissie-image {
		width: clamp(90px, 18vw, 130px) !important;
		height: clamp(90px, 18vw, 130px) !important;
	}
}

footer h6.title {
	font-weight: 700;
	font-size: 18px;
	line-height: 1.6em;
	margin-bottom: 5px;
}

footer strong {
	color: var(--primary);
}

/* ======== END FOOTER STYLES ========== */
/* ======== HERO STYLES ========== */
.hero-section {
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 80vh;
	display: flex;
	justify-content: center;
	align-items: center
}

.hero-section p {
	color: var(--gray);
}

.hero-section-overlay {
	position: absolute;
	inset: 0;
	background-color: var(--black);
	z-index: 1
}

.hero-section-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: var(--white);
	max-width: 900px;
	padding: 20px
}

.hero-section h1 {
	font-size: 2em;
	font-weight: 700;
	margin-bottom: 20px;
	width: 100%;
	color: var(--white) !important;
}

.hero-section p {
	font-size: 18px;
	margin-bottom: 30px
}

/* ======== END HERO STYLES ========== */
/* ======== EVENTS SLIDER STYLES ========== */
#events-slider {
	overflow: hidden;
	position: relative;
}

#events-slider .events-parent {
	display: flex;
	gap: 20px;
	will-change: transform;
}

.events-row-one {
	margin-bottom: 20px;
	margin-left: -500px;
}

.events-row-two {
	margin-left: -200px;
}

#events-slider .events-parent .event-child {
	width: 600px;
	height: 500px;
	object-fit: cover;
	border-radius: 0 40px 0 40px;
}

@media (max-width: 768px) {
	#events-slider .events-parent .event-child {
		width: 300px;
		height: 250px;
	}
}

/* ======== END EVENTS SLIDER STYLES ========== */
/* ======== TEXT BLOCK STYLES ========== */
#text-block p {
	text-align: left;
}

.image-block {
	display: flex;
	justify-content: flex-end;
	margin-top: 20px;
}

/* Mobile styles for image-block */
@media (max-width: 768px) {
	.image-block {
		justify-content: center;
	}
}

.image-block img {
	width: 100%;
	object-fit: cover;
	border-radius: 0 40px 0 40px;
	-webkit-transition-timing-function: linear;
	-o-transition-timing-function: linear;
	transition-timing-function: linear;
}

/* ======== END TEXT BLOCK STYLES ========== */
/* ======== JURY SLIDER STYLES ========== */
#jury-slider {
	overflow: visible;
}

@media only screen and (max-width: 768px) {
	#jury-slider {
		padding-right: 0;
	}
	.jury-image {
		height: 400px !important;
	}
}

.jury-slider-controls {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 30px;
	margin-bottom: 0;
}

.jury-slider-controls .btn {
	background-color: transparent !important;
	border-color: var(--primary) !important;
	color: var(--primary) !important;
	border-radius: 50px;
	padding: 12px 20px;
	transition: background-color 0.3s ease, border-color 0.3s ease;
	z-index: 9999 !important;
}

@media (max-width: 480px) {
	.jury-slider-controls {
		position: relative !important;
		z-index: 99999 !important;
		margin-top: 50px !important;
		padding: 20px 0 !important;
		background: rgba(255, 255, 255, 0.9) !important;
		border-radius: 10px !important;
		margin-left: 10px !important;
		margin-right: 10px !important;
	}

	.jury-slider-controls .btn {
		position: relative !important;
		z-index: 99999 !important;
		background-color: var(--primary) !important;
		color: white !important;
		border: 2px solid var(--primary) !important;
		box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
		min-width: 50px !important;
		min-height: 50px !important;
	}
}

.jury-slider-controls .btn:hover {
	background-color: var(--primary) !important;
	border-color: var(--primary) !important;
	color: var(--white) !important;
}

.jury-slide-clickable {
	border-radius: 0 50px 0 50px;
	overflow: hidden;
}

.jury-slide-clickable a {
	position: unset !important;
}

.swiper-slide:hover .jury-slide-badge {
	opacity: 1;
	transform: translateY(0);
}

.jury-slide-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	font-weight: 700;
	font-size: 12px;
	padding: 6px 10px;
	border-radius: 999px;
	opacity: 0;
	transform: translateY(-20px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.jury-slide-badge.senior-bov {
	box-shadow: 0 6px 18px rgba(var(--primary), .35);
	background: var(--primary);
	color: #fff;
}

.jury-slide-badge.junior-bov {
	box-shadow: 0 6px 18px rgba(var(--secondary), .35);
	background: var(--secondary);
	color: #fff;
}

.jury-image {
	width: 100%;
	height: 500px;
	object-fit: cover;
	transition: filter 0.3s ease, transform 0.3s ease;
}

.jury-slide-clickable:hover .jury-image {
	filter: brightness(50%) saturate(50%);
	transform: scale(1.1);
}

.jury-info {
	position: absolute;
	bottom: 20px;
	color: var(--white);
	left: 20px;
	display: block;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.swiper-slide:hover .jury-info {
	opacity: 1;
	transform: translateY(0);
}

.jury-info p {
	font-size: 16px !important;
	font-weight: 500;
	text-transform: none;
}

.jury-info span {
	font-weight: 700;
	font-size: 20px !important;
}

.jury-socials {
	display: flex;
	gap: 10px;
	align-items: center;
}

.jury-socials .btn {
	border-radius: 100px;
	font-size: 18px !important;
	height: 40px;
	display: flex;
	justify-content: center;
	width: 30px;
	align-items: center;
	color: black !important;
	transition: transform 350ms ease;
}

.jury-socials .btn:hover {
	opacity: 0.8;
	transform: scale(1.1);
}

/* ======== END JURY SLIDER STYLES ========== */
/* ======== Number STYLES ========== */
#numbers {
	background-color: var(--black);
}

#numbers .title {
	color: var(--white) !important;
}

#numbers .paragraph {
	color: var(--white) !important;
}

.numbers-items {
	margin-top: 35px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.number-item {
	text-align: center;
	color: var(--white);
	border-radius: 0 50px 0 50px;
	height: 200px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-transform: none;
}

.number-item-0 {
	background-color: var(--primary);
}

.number-item-1 {
	background-color: var(--secondary);
}

.number-item-2 {
	background-color: var(--quaternary);
}

.number-item-3 {
	background-color: var(--tertiary);
}

.number {
	font-weight: bolder;
	font-size: 2em;
	line-height: 1;
	color: var(--black);
}

.number::after {
	content: '+';
}

.number-text {
	font-weight: 500;
	margin: 8px auto;
	width: 75%;
	line-height: 1.1;
	color: var(--black);
}

.number-item-bg img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 0 50px 0 50px;
}

/* ======== END Number STYLES ========== */
/* ======== Sponsoren STYLES ========== */
.sponsoring-info {
	background-color: var(--gray);
}

/* Voordelen */
.sponsor-card {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	padding: 30px 25px;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sponsor-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

#sponsoren .sponsor-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 50px;
	width: 75%;
	margin: 0 auto;
	justify-content: center;
	align-items: center;
}

.sponsors-content {
	min-height: 400px;
}

.partners-logo {
	width: 200px;
	height: 80px;
	object-fit: contain;
}

.sponsors-tab-content {
	opacity: 0;
	visibility: hidden;
	height: 0;
	overflow: hidden;
	transition: opacity 0.4s ease,
	visibility 0.4s ease,
	height 0.4s ease;
}

.sponsors-tab-content.active {
	opacity: 1;
	visibility: visible;
	height: auto;
}

.sponsors-tab-buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	margin-bottom: 30px;
}

.sponsor-tab-btn {
	background-color: transparent;
	border: 2px solid #f2f2f2;
	border-radius: 30px;
	padding: 12px 30px;
	font-weight: 600;
	transition: all 0.3s ease;
	cursor: pointer;
}

.sponsor-tab-btn:hover,
.sponsor-tab-btn.active {
	background-color: var(--primary);
	border-color: var(--primary);
	color: white;
}

/* ======== END SPONSOR STYLES ========== */
/*============ SPONSOR PAKKETTEN ============== */
.package-card {
	flex: 1 1 220px;
	/*max-width: 250px;*/
	background: #fff;
	border-radius: 12px;
	padding: 30px 20px;
	/*text-align: center;*/
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.package-card {
	border-top: 5px solid var(--secondary)
}

.packages-wrapper {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(1, 1fr); /* mobile default */
}

@media (min-width: 768px) {
	.packages-wrapper {
		grid-template-columns: repeat(2, 1fr); /* tablet */
	}
}

@media (min-width: 1200px) {
	.packages-wrapper {
		grid-template-columns: repeat(4, 1fr); /* desktop */
	}
}

.package-card h3 {
	font-weight: 700;
	margin-bottom: 10px;
}

.package-card .price {
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 15px;
	color: var(--text-color);
}

.package-card ul {
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: left;
}

.package-card ul li {
	margin-bottom: 10px;
	font-size: 1rem;
}

.package-card ul li::before {
	content: "✔";
	margin-right: 8px;
	color: green;
}

.package-card a {
	display: inline-block;
	padding: 12px 18px;
	font-weight: 600;
	color: var(--white);
	background: var(--black);
	border-radius: 8px;
	text-decoration: none;
	transition: background 0.3s;
	margin-top: auto;
	text-align: center;
}

.package-card a:hover {
	background: #444;
}

/*============ END SPONSOR PAKKETTEN ============== */
/*============ PARTNERS ============== */
.swiper-container {
	mask-image: linear-gradient(
			to right,
			transparent 0%,
			white 10%,
			white 90%,
			transparent 100%
	);
}

.logo-slide img {
	width: 90%;
	height: 100%;
	object-fit: contain;
}

.swiper-wrapper {
	align-items: center;
	transition-timing-function: linear;
}

.logo-slide {
	width: 200px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	border-radius: 50px 0 50px 0;
	background-color: #fff;
}

/*============ END PARTNERS ============== */
/*============ LOGO FINALIST ============== */
.logo-finalist {
	width: auto;
	height: 200px;
	object-fit: contain;
	object-position: center center;
}

/*============ SINGLE NOMINEE ============== */
.hero-nominee {
	height: 600px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.logo-finalisten {
	max-width: 250px;
	height: auto;
}

#shape_divider {
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 100%;
	height: 100px;
	z-index: 999;
	transform: rotate(180deg);
	pointer-events: none;
}

.finalists-title {
	font-size: 2.5rem;
	font-weight: 700;
}

.finalists-desc {
	font-size: 1rem;
	max-width: 700px;
	margin: 0 auto;
}

.finalist-card {
	border-radius: 0 40px 0 40px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

.finalist-link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.finalist-img {
	width: 75%;
	height: 180px;
	object-fit: cover;
	display: block;
	margin: 0 auto;
}

.finalist-img--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
}

.finalist-body {
	padding: 15px;
	text-align: left;
}

.text-center .finalist-body {
	text-align: left;
}

.finalist-name {
	font-size: 1.1rem;
	font-weight: 600;
	margin: 0 0 5px 0;
}

.finalist-role {
	margin: 0;
	font-size: .9rem;
}

/* ======== MEDIA QUERIES ========== */
@media (min-width: 992px) {
	.menu-contact-knop-container .nav-link {
		color: black !important;
	}
}

@media (max-width: 1200px) {
	.contact-button {
		display: none !important;
	}
}

@media (min-width: 768px) {
	.title {
		font-size: 3rem;
	}

	.hero-section h1 {
		font-size: 4vw;
		margin-bottom: 20px;
		max-width: 70%;
	}

	.hero-section p {
		font-size: 1.25rem;
		margin-bottom: 30px;
		max-width: 40%;
	}

	#menu-main-menu {
		gap: 3rem;
	}

	.text-blocks {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.swap {
		display: flex;
		justify-content: space-between;
		flex-direction: row-reverse;
		margin-top: 100px;
	}

	.swap .image-block {
		justify-content: flex-start;
	}

	.image-block img {
		width: 700px;
		height: 700px;
		border-radius: 0 100px 0 100px;
	}

	.jury-slider-controls {
		margin-top: 20px;
	}
}

@media (max-width: 1024px) {
	.numbers-items {
		grid-template-areas:
            "number-item-0 number-item-1"
            "number-item-2 number-item-3"
            "number-item-4 number-item-5"
            "number-item-6 number-item-7";
	}

	.number-item-0 {
		grid-area: number-item-0;
	}

	.number-item-1 {
		grid-area: number-item-1;
	}

	.number-item-2 {
		grid-area: number-item-3;
	}

	.number-item-3 {
		grid-area: number-item-2;
	}

	.number-item-4 {
		grid-area: number-item-5;
	}

	.number-item-5 {
		grid-area: number-item-4;
	}

	.number-item-6 {
		grid-area: number-item-6;
	}

	.number-item-7 {
		grid-area: number-item-7;
	}
}

@media (min-width: 1024px) {
	.number-item-bg img, .number-item {
		height: 300px;
	}

	.numbers-items {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* ======== END MEDIA QUERIES ========== */
/* ===== JUNIOR BOV PART ===== */
.page-top-header {
	text-align: center;
	padding: 25px 0;
	font-size: 2.5rem;
	font-weight: normal;
}

.junior-title {
	font-weight: normal;
	font-size: 2rem;
	text-align: left;
	margin-bottom: 10px;
}

.junior-subtitle {
	font-weight: normal;
	font-size: 1rem;
	margin-bottom: 5px;
}

.junior-lead {
	font-size: 0.95rem;
	margin-bottom: 30px;
}

.junior-name-card {
	transition: background 0.3s, color 0.3s;
}

.junior-name-card:hover {
	cursor: pointer;
}

.dummy-photo {
	transition: background 0.3s, border 0.3s;
	border-radius: 8px;
}

.dummy-photo:hover {
	cursor: pointer;
}

.text-center-container {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 15px;
}

.orange-block {
	width: 120px;
	height: 120px;
	border-radius: 8px;
}

.junior-hero-subtitle {
	font-size: 1.2rem;
	max-width: 800px;
	margin: 0 auto;
	color: #ffffff !important;
}

/* ===== CONTENT SECTION ===== */
.junior-intro-section {
	background: #fff;
	padding: 70px 20px;
	position: relative;
	z-index: 1;
}

.junior-section-title {
	font-size: 2.2rem;
	text-align: center;
	font-weight: 700;
	margin-bottom: 20px;
	color: #222;
}

.junior-lead-text {
	text-align: center;
	font-size: 1.15rem;
	line-height: 1.8;
	color: #555;
	max-width: 900px;
	margin: 0 auto 40px;
}

/* ===== JURY SECTION ===== */
.junior-jury-section {
	margin: 60px auto 40px;
	max-width: 1200px;
	text-align: center;
}

.junior-jury-title {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 25px;
	color: #222;
}

.junior-jury-wrapper {
	margin-bottom: 40px;
}

/* ===== CRITERIA ===== */
.junior-criteria-title {
	text-align: center;
	font-size: 2rem;
	font-weight: 700;
	margin: 50px 0 20px;
}

.junior-criteria-text {
	text-align: center;
	font-size: 1.15rem;
	line-height: 1.8;
	color: #555;
	max-width: 900px;
	margin: 0 auto 60px;
}

/* ===== END JUNIOR BOV PART ===== */
/* ===== JURY PART ===== */
.jury-section {
	background: #fff;
	padding-top: 50px;
	padding-bottom: 50px;
	color: var(--text-color);
}

.jury-section h2 {
	font-size: 2.2rem;
	font-weight: 700;
	text-align: left;
	margin-bottom: 25px;
	color: #222;
}

.jury-section div.intro {
	color: var(--text-color);
	font-size: 1.15rem;
	line-height: 1.8;
	max-width: 900px;
	margin: 0 auto 50px;
}

div.intro {
	max-width: 65%;
}

/* Extra sectie */
.jury-values {
	margin: 60px auto;
	max-width: 1100px;
}

.jury-value-box.col-md-4 {
	width: 31.33333333% !important;
	margin: 0 10px;
}

@media (max-width: 768px) {
    .jury-value-box.col-md-4 {
        width: 100% !important; 
        margin: 10px 0;
    }
}

.jury-value-box {
	border-radius: 12px;
	padding: 25px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	text-align: center;
}

.jury-value-box:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 32px rgba(0, 0, 0, .12);
}

.jury-value-box h3 {
	font-size: 1.4rem;
	margin-bottom: 10px;
	color: var(--black);
}

.jury-value-box p {
	font-size: 1rem;
	color: #666;
	line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
	.jury-hero h1 {
		font-size: 2.2rem;
	}

	.jury-hero p {
		font-size: 1rem;
	}

	/* Jury values mobile styling */
	.jury-values {
		margin: 40px auto;
		padding: 0 15px;
	}

	.jury-value-box.col-md-4 {
		width: 100% !important;
		margin: 0 0 20px 0 !important;
	}

	.jury-value-box {
		padding: 20px;
		margin-bottom: 20px;
	}

	.jury-section h2 {
		font-size: 1.8rem;
	}

	.jury-section div.intro {
		font-size: 1rem;
		max-width: 100%;
		margin-bottom: 30px;
	}

	div.intro {
		max-width: 100%;
	}
}

/* ===== END JURY PART ===== */
/*============ OVER PAGINA ============== */
.over-hero {
	background: url('http://localhost/bov/wp-content/uploads/2025/08/pexels-wendywei-1190298.jpg') center center / cover no-repeat;
	padding: 100px 40px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #fff;
	width: 100%;
	border-radius: 0;
	overflow: hidden;
}

.over-hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1;
}

.over-hero .hero-content {
	position: relative;
	z-index: 2;
	width: 60%;
}

.over-hero h1 {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 20px;
}

.over-hero p {
	font-size: 1.3rem;
	max-width: 650px;
}

/* Hero card met hover (zoals icon-cards) */
.over-hero .hero-card {
	position: relative;
	z-index: 2;
	background: #fff;
	color: var(--text-color);
	padding: 30px 20px;
	border-radius: 12px;
	width: 35%;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.over-hero .hero-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.over-hero .hero-card h3 {
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 10px;
}

.over-hero .hero-card p {
	font-size: 1rem;
	color: #333;
}

.intro-text {
	text-align: center;
	padding: 60px 20px;
	max-width: 850px;
	margin: 0 auto;
}

.intro-text h2 {
	font-size: 2.2rem;
	font-weight: 700;
	margin-bottom: 20px;
}

.intro-text p {
	font-size: 1.2rem;
	line-height: 1.8;
	color: #555;
}

.extra-section {
	background: #f8f9fa;
	padding: 60px 20px;
	text-align: center;
}

.extra-section h2 {
	font-size: 2rem;
	margin-bottom: 20px;
}

.extra-section p {
	max-width: 850px;
	margin: 0 auto 30px;
	font-size: 1.1rem;
	line-height: 1.8;
	color: #555;
}

/* Icon cards */
.icon-cards {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 25px;
	margin-top: 40px;
}

.icon-card {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	padding: 30px 20px;
	width: 300px;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.icon-card i {
	font-size: 2.5rem;
	color: var(--secondary);
	margin-bottom: 15px;
}

.icon-card h3 {
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--secondary);
}

.icon-card p {
	font-size: 1rem;
	color: var(--text-color);
}

@media (max-width: 992px) {
	.over-hero {
		flex-direction: column;
		text-align: center;
	}

	.over-hero .hero-content,
	.over-hero .hero-card {
		width: 100%;
		margin: 10px 0;
	}

	.over-hero h1 {
		font-size: 2.2rem;
	}

	.over-hero p {
		font-size: 1rem;
	}

	.icon-card {
		width: 100%;
	}
}

.junior-hero {
	background-color: #ffd699;
	padding: 80px 20px;
	position: relative;
	text-align: center;
	color: var(--text-color);
}

/*============ END OVER PAGINA ============== */
/*============ PROGRAM ============== */
.card {
	border: none;
}

.card-img-top {
	object-fit: cover;
	aspect-ratio: 4 / 3;
	border-radius: 50px 0 50px 0;
}

@media onyl screen and (max-width: 768px) {
	.card-img-top {
		max-height: 350px !important;
	}
}

/*============ END PROGRAM ============== */

/*============ COMMISSIE LEDEN ============== */
.no-image {
	width: 100%;
	height: 100%;
	background: #f4f4f4;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #aaa;
	border-radius: inherit;
}

.commissie-card {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
	padding: 24px;
	text-align: center; /* Zorgt dat alles netjes gecentreerd staat */
}

/* Afbeeldingscontainer */
.commissie-image {
	border-radius: 8px;
	width: clamp(110px, 18vw, 140px); /* Kleiner dan voorheen */
	height: clamp(170px, 24vw, 200px); /* Iets hoger */
	margin: 0 auto; /* Centraal */
	overflow: hidden; /* Voor nette randen bij object-fit */
}

/* Afbeelding zelf */
.commissie-image img {
	object-fit: cover;
	border-radius: inherit;
	width: 100%;
	height: 100%;
	display: block;
}

/* Responsiveness extra tuning */
@media (max-width: 768px) {
	.commissie-image {
		width: 100px;
		height: 150px;
	}
}

@media (max-width: 480px) {
	.commissie-image {
		width: 90px;
		height: 135px;
	}
}

/*============ END COMMISSIE LEDEN============== */

/*============ SCROLL HERO ============== */
.scroll-icon-container {
	z-index: 999;
}

.scrolldown {
	--color: white;
	--sizeX: 30px;
	--sizeY: 50px;
	position: relative;
	width: var(--sizeX);
	height: var(--sizeY);
	border: calc(var(--sizeX) / 10) solid var(--color);
	border-radius: 50px;
	box-sizing: border-box;
	margin-bottom: 64px;
}

.scrolldown::before {
	content: "";
	position: absolute;
	bottom: 30px;
	left: 50%;
	width: 6px;
	height: 6px;
	margin-left: -3px;
	background-color: var(--color);
	border-radius: 100%;
	animation: scrolldown-anim 2s infinite;
	box-sizing: border-box;
	box-shadow: 0 -5px 3px 1px #ffffff66;
}

@keyframes scrolldown-anim {
	0% {
		opacity: 0;
		height: 6px;
	}
	40% {
		opacity: 1;
		height: 10px;
	}
	80% {
		transform: translate(0, 20px);
		height: 10px;
		opacity: 0;
	}
	100% {
		height: 3px;
		opacity: 0;
	}
}
.chevrons {
	padding: 6px 0 0 0;
	margin-left: -3px;
	margin-top: 48px;
	width: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.chevrondown {
	position: relative;
	border: solid var(--color);
	border-width: 0 3px 3px 0;
	display: inline-block;
	width: 10px;
	height: 10px;
	transform: rotate(45deg);
}
.chevrondown:nth-child(odd) {
	animation: pulse 500ms ease infinite alternate;
}
.chevrondown:nth-child(even) {
	animation: pulse 500ms ease infinite alternate 250ms;
}
@keyframes pulse {
	from {
		opacity: 0;
	}
	to {
		opacity: 0.5;
	}
}
/*============ END SCROLL HERO ============== */
