/* Homepage: uitgelichte banners (Fitness / Kickboksen & Zaktraining) */

.fh-showcase {
	position: relative;
	display: block;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
	text-decoration: none;
}

.fh-showcase img {
	display: block;
	width: 100%;
	height: 400px;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.fh-showcase:hover img {
	transform: scale(1.05);
}

.fh-showcase-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 28px;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.55) 70%, rgba(0, 0, 0, 0.88) 100%);
}

.fh-showcase .fh-showcase-overlay h3 {
	color: #fff !important;
	font-weight: 800;
	font-size: 1.6rem;
	text-transform: none;
	margin: 0 0 4px;
}

.fh-showcase .fh-showcase-overlay p {
	color: rgba(255, 255, 255, 0.88) !important;
	font-size: 0.95rem;
	margin: 0 0 12px;
}

.fh-showcase-link {
	display: inline-flex;
	align-items: center;
	color: #6fcbf5;
	font-weight: 700;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	transition: transform 0.25s ease, color 0.25s ease;
}

.fh-showcase:hover .fh-showcase-link {
	color: #fff;
	transform: translateX(4px);
}

@media (max-width: 767px) {
	.fh-showcase img {
		height: 280px;
	}

	.fh-showcase-overlay {
		padding: 20px;
	}

	.fh-showcase-overlay h3 {
		font-size: 1.35rem;
	}
}
