.block-gallery img {
	cursor: zoom-in;
	transition: transform .2s ease;
}
.block-gallery img:hover {
	transform: scale(1.03);
}


/* Gallery slide base */
.gallery-slide {
	position: relative;
}

.gallery-slide-image {
	width: 100%;
	height: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	display: block;
}

/* Overlay */
.gallery-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	background: linear-gradient(
		to right,
		rgba(0,0,0,.55) 0%,
		rgba(0,0,0,.25) 60%,
		rgba(0,0,0,0) 100%
	);
	color: #fff;
}

/* Text styling */
.gallery-title, 
.page-section-hero h3 {
	font-size: clamp(1.75rem, 3vw, 3rem);
	font-weight: 700;
	color: #fff;
}

.gallery-text,
.page-section-hero .block-text {
	font-size: 1.8rem;
	max-width: 600px;
	color: #fff;
}

.page-section-hero .block-text p{
	color: #fff;
}

.swiper-button-prev,
.swiper-button-next {
	color: #fff;
}

.swiper-pagination-bullet {
	background: rgba(255,255,255,.6);
}

.swiper-pagination-bullet-active {
	background: #fff;
}


/* =====================================================
   HERO: image_text overlay mode
===================================================== */

.page-section-hero .block-image-text {
	position: relative;
	overflow: hidden;
	border: 0;
}

/* Zorg dat images altijd full-cover zijn */
.page-section-hero .block-image-text img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* IMAGE TOP (card-img-top) fix */
.page-section-hero .block-image-text .card-img-top {
	position: absolute;
	inset: 0;
	height: 100%;
	z-index: 1;
}

/* IMAGE LEFT / RIGHT fix */
.page-section-hero .block-image-text .row {
	position: static;
}

.page-section-hero .block-image-text .col-md-5,
.page-section-hero .block-image-text .col-md-7 {
	position: static;
	width: 100%;
	max-width: 100%;
	flex: 0 0 100%;
}

/* TEXT OVERLAY */
.page-section-hero .block-image-text .card-body {
	position: absolute;
	inset: 0;
	z-index: 2;

	display: flex;
	flex-direction: column;
	justify-content: center;

	padding: clamp(2rem, 5vw, 4rem);
	color: #fff;

	/* leesbaarheid */
	background: linear-gradient(
		to right,
		rgba(0,0,0,0.95),
		rgba(0,0,0,.35) 60%,
		rgba(0,0,0,0)
	);
}

/* Typography */
.page-section-hero .block-image-text .card-title {
	font-size: clamp(2rem, 4vw, 3.25rem);
	font-weight: 700;
}

.page-section-hero .block-image-text .card-text {
	font-size: 1.1rem;
	max-width: 720px;
}

/* Zorg dat hero een vaste hoogte heeft */
.page-section-hero .block-image-text {
	min-height: clamp(420px, 60vh, 720px);
}

/* Sticky navbar state */
.navbar.is-fixed {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1050;
	animation: slideDown 0.3s ease;
}

/* Kleine schaduw voor diepte */
.navbar.is-fixed {
	box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

body.has-fixed-nav {
	padding-top: var(--nav-height);
}

.navbar-brand {
	font-weight: bold;
	line-height: 1;
	margin-top: 0;
}

/* Smooth in-animatie */
@keyframes slideDown {
	from {
		transform: translateY(-100%);
	}
	to {
		transform: translateY(0);
	}
}