/* Custom Button from Uiverse.io by Ali-Tahmazi99 */
.uiverse-btn {
	display: inline-block;
	width: 150px;
	height: 35px;
	border-radius: 10px;
	border: 1px solid #ffa100;
	position: relative;
	overflow: hidden;
	transition: all 0.5s ease-in;
	z-index: 1;
	background: #ffa100;
	cursor: pointer;
}

.uiverse-btn::before,
.uiverse-btn::after {
	content: '';
	position: absolute;
	top: 0;
	width: 0;
	height: 100%;
	transform: skew(15deg);
	transition: all 0.5s;
	z-index: -1;
}

.uiverse-btn::before {
	left: -10px;
	background: #e34e1e;
}

.uiverse-btn::after {
	right: -10px;
	background: #212529;
}

.uiverse-btn:hover::before,
.uiverse-btn:hover::after {
	width: 58%;
}

.uiverse-btn span {
	color: black;
	font-size: 18px;
	transition: all 0.3s ease-in;
	position: relative;
	z-index: 2;
}

.uiverse-btn:hover span {
	color: white;
}

/* Diagonale scheiding */
.hero-section {
	display: flex;
	height: 90vh;
	position: relative;
	overflow: hidden;
	background-color: #e34e1e;
	color: white;
}

/* Tekstgedeelte */
.hero-text {
	flex: 1;
	padding: 5rem 4rem;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	animation: fadeInUp 1s ease forwards;
}

.hero-text h1 {
	font-size: 3.5rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 1.5rem;
}

.hero-text p {
	font-size: 1.3rem;
	margin: 1.5rem 0;
	max-width: 550px;
	line-height: 1.6;
	opacity: 0.95;
}

/* CTA Button */
.hero-btn {
	display: inline-block;
	margin-top: 2rem;
	padding: 0.6rem 1.2rem;
	width: 240px;
	background-color: #fff;
	color: #e34e1e;
	border-radius: 8px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.hero-btn:hover {
	background-color: #212529;
	color: #fff;
	transform: translateY(-3px);
}

/* Image side */
.hero-image {
	flex: 1.6;
	background: url('/img/banner2.png') no-repeat center center;
	background-size: cover;
	clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
	position: relative;
	animation: fadeInRight 1s ease forwards;
}

.hero-image::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to left, rgba(0,0,0,0.25), rgba(0,0,0,0));
}

/* Animaties */
@keyframes fadeInUp {
	from {
		transform: translateY(40px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes fadeInRight {
	from {
		transform: translateX(60px);
		opacity: 0;
	}

	to {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes growLine {
	from {
		width: 0;
		opacity: 0;
	}

	to {
		width: 100px;
		opacity: 1;
	}
}

.feature-box {
	transition: all 0.3s ease;
	padding: 30px 20px;
	border-radius: 15px;
	background-color: #fff;
}

.feature-box:hover {
	transform: translateY(-8px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.feature-box i {
	color: #007bff;
	transition: all 0.3s ease;
}

.feature-box:hover i {
	color: #0056b3;
	transform: scale(1.2);
}

body {
	background-color: #f8f9fa;
}

h2 {
	font-weight: 600;
}

.scroll-fade {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease-out;
}

.scroll-fade.show {
	opacity: 1;
	transform: translateY(0);
}


/* Responsive */
@media (max-width: 768px) {
	.hero-section {
		flex-direction: column;
		height: auto;
		text-align: center;
	}

	.hero-text {
		padding: 3rem 1.5rem;
		align-items: center;
	}

	.hero-text h1 {
		font-size: 2.5rem;
	}

	.hero-image {
		clip-path: none;
		width: 100%;
		min-height: 300px;
		background: url('/img/banner2.png') no-repeat center center;
		background-size: cover;
		margin-top: 0;
		display: block;
		position: relative;
	}

	.hero-divider {
		margin: 1rem auto;
	}

	.hero-text p {
		max-width: 100%;
	}

	.row.text-center > .col-md-4 {
		margin-bottom: 0.5rem; /* afstand tussen de kolommen als ze gestapeld zijn */
	}
}