/* style.css for luukarends.nl */

body {
	color: #1f1f1f;
	background-color: #fdfdf6;
	font-family: "Inter 600";
}

/* Anchors */

a {
	color: #131f0d;
	text-decoration: none;
}

/* Icons */

.icons {
	display: flex;
	justify-content: space-between;
}

.icons > div {
	display: flex;
	gap: .5rem;
}

.icon {
	padding: 24px 48px;
	border-radius: 40px;
	background-color: #f0f3e8;
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	font-size: 1.125rem;
}

.icon .bi {
	font-size: 1.25rem;
}

/* Hero */

.hero {
	min-height: 50vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.hero-title {
	font-size: 5rem;
}

	@media (min-width: 1200px) {
		.hero {
			min-height: 75vh;
		}

		.hero-title {
			font-size: 9rem;
		}
	}

.eagle {
	position: absolute;
	font-size: 5rem;
	animation: flyEagle 5s linear forwards;
}

@keyframes flyEagle {
	0% {
		transform: translateX(100vw) translateY(100vh); /* Start at bottom right */
	}
	100% {
		transform: translateX(-100vw) translateY(-100vh); /* Move to top left */
	}
}

/* Hide the eagle when the animation is finished */
.eagle:after {
	content: ''; /* Create an empty pseudo-element */
	display: block;
	width: 100%;
	height: 100%;
	background-color: transparent; /* Set the background color to transparent */
	content: none; /* Hide the content */
	display: none; /* Hide the element */
}

/* Columns */

.col-title {
	font-size: 2rem;
}

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

.col-item {
	padding: 2.5rem;
	border-radius: 3rem;
	background-color: #f0f3e8;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 100%;
	min-height: 250px;
}

	@media (min-width: 1200px) {
		.col-item {
			min-height: 500px;
		}
	}

.col-image {
	height: 612px;
}

	@media (min-width: 1200px) {
		.col-image {
			height: 1024px;
		}
	}

.col-image img {
	width: 100%;
	height: 100%;
	border-radius: 3rem;
	object-fit: cover;
	object-position: 75% 50%;
}

.col-highlight {
	color: #131f0d;
	background-color: #d9e7cb;
}

.col-highlight .col-title {
	font-size: 2rem;
}

	@media (min-width: 1200px) {
		.col-highlight .col-title {
			font-size: 4rem;
		}
	}

.col-work {
	color: #1c1d06;
	background-color: #e6e4bf;
}

.col-client {
	background-color: #f4f1e4;
}

.col-client img {
	max-width: 320px;
}

	@media (max-width: 768px) {
		.col-client img {
			max-width: 240px;
		}
	}

.col-message {
	background-color: #ffdad9;
	color: #2d1516;
}

.col-message a {
	color: #2d1516;
	opacity: .75;
	text-decoration: underline;
}

/* Belasting */

.content-title {
	font-size: 2rem;
	margin-bottom: 1.5rem;
}

.content-block {
	font-size: 1.125rem;
	line-height: 1.75;
}

.content-block a {
	opacity: .5;
}