/* Reset en basisstijlen */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Arial, sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #f4f4f4;
}

p {
	font-family: "Roboto", sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
	font-family: "Raleway", sans-serif;
}

h1 {
	font-size: 2.5rem;
    line-height: 2.8rem;
}

h2 {
	font-size: 1.8rem;
}

h3 {
	line-height: 30px;
}

/* Header stijlen */
header {
	background-color: #1c3934;
	padding: 1rem 2rem;
}

.logo img {
	width: 100px;
}

header nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1350px;
	margin: 0 auto;
	/* border-bottom: 1px solid #fff; */
}

.logo {
	color: #fff;
	font-size: 1.5rem;
	font-weight: bold;
}

/* .nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
} */

li a {
	color: #fff;
	text-decoration: none;
	font-size: 0.9rem;
	opacity: 0.8;
	transition: opacity 0.3s ease;
}
header ul {
	display: flex;
	gap: 20px;
	list-style: none;
}

.nav-links li a:hover {
	opacity: 1;
}

.nav-buttons {
	display: flex;
	gap: 1rem;
}

.login,
.signup {
	padding: 0.5rem 1rem;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 0.9rem;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.login {
	background-color: transparent;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.login:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

.signup {
	background-color: #c4ff5e;
	color: #043023;
}

.signup:hover {
	background-color: #b3ee4d;
}

/* Footer stijlen */
footer {
	background-color: #1c3934;
	color: #fff;
	padding: 2rem;
}

.footer-container {
	max-width: 1300px;
	margin: 0 auto;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
}

.footer-column h4 {
	margin-bottom: 1rem;
}

.footer-column ul {
	list-style: none;
}

.footer-column ul li a {
	color: #fff;
	text-decoration: none;
}

.footer-bottom {
	margin-top: 2rem;
	text-align: center;
}

@media screen and (max-width: 720px) {
	h1 {
		font-size: 60px;
		font-size: 1.6rem;
        line-height: 1.8rem;
	}

	h2 {
		font-size: 1.4rem;
        line-height: 1.6rem;
	}

	h3 {
		line-height: 1.4rem;
        font-size: 1.2rem;
	}
	.logo img {
		width: 60px;
	}
	p {
		font-size: 0.875rem;
		line-height: 1.5rem;
	}
}

/*animatie*/
.fade-in {
	animation: autoFade both;
	animation-timeline: view(70% 5%);
}

@keyframes autoFade {
	from {
		opacity: 0;
		transform: translateY(200px) scale(0.3);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.move-up {
	animation: autoFade both;
	animation-timeline: view(95% 40%);
}

@keyframes autoFade {
	from {
		transform: translateY(200px);
	}
	to {
		transform: translateY(0);
	}
}
