@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap');

@font-face {
	font-family: 'RoundkeySoft-Bold';
	src: url('fonts/RoundkeySoft-Bold.otf') format('opentype');
}

@font-face {
	font-family: 'Ubuntu';
	src: url('fonts/Ubuntu-Regular.ttf') format('truetype');
}

:root {
	--background-light: #f2f2f2;
	--box-light: #e3e3e3;
	--text-light: #1c1c1c;

	--background-dark: #1c1c1c;
	--box-dark: #292929;
	--text-dark: #f2f2f2;

	--accent-color: #2e8b57;
	--accent-text-color: #f3f3f3;
}

html {
	box-sizing: border-box;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}

body {
	background-color: var(--background-light);
	color: var(--text-light);
	font-family: 'Ubuntu', sans-serif;
	margin: 0;
	padding: 25px;
	transition:
		opacity 0.5s ease,
		visibility 0.5s ease;
	zoom: 0.8;
}

body.loading {
	opacity: 0;
	visibility: hidden;
}

body.loaded {
	opacity: 1;
	visibility: visible;
}

main {
	max-width: 1800px;
	margin: 0 auto;
}

.box {
	background-color: var(--box-light);
	border-radius: 50px;
	min-height: 100px;
	padding: 25px;
}

header {
	max-width: 1800px;
	margin: 0 auto 25px auto;
}

.menu-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 25px;
}

.logo-box {
	background-color: var(--box-light);
	border-radius: 50px;
	min-height: 100px;
	padding: 0 25px;
	display: flex;
	align-items: center;
}

.logo-box a {
	text-decoration: none;
	color: inherit;
}

.logo {
	height: 50px;
}

.hamburger-menu {
	background-color: var(--box-light);
	border-radius: 50px;
	width: 100px;
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.hamburger-menu i {
	font-size: 45px;
}

.hamburger-menu i,
.close-menu i,
.theme-toggle i,
.accessibility-toggle i {
	line-height: 0;
}

.accessibility-toggle {
	background-color: var(--box-light);
	border-radius: 50px;
	width: 100px;
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

body.dark-mode .accessibility-toggle {
	background-color: var(--box-dark);
}

.accessibility-toggle i {
	font-size: 45px;
	color: var(--text-light);
}

body.dark-mode .accessibility-toggle i {
	color: var(--text-dark);
}

.btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 100px;
	font-family: 'RoundkeySoft-Bold', sans-serif;
	font-size: 25px;
	text-decoration: none;
	padding: 25px;
	border-radius: 50px;
	border: none;
	cursor: pointer;
	transition:
		background-color 0.2s ease,
		color 0.2s ease;
}

.btn-accent {
	background-color: var(--accent-color);
	color: var(--accent-text-color);
}

.btn-accent:hover {
	background-color: var(--accent-text-color);
	color: var(--accent-color);
}

.btn-primary {
	background-color: var(--accent-color);
	color: var(--accent-text-color);
	width: 100%;
	min-height: 100px;
	font-family: 'RoundkeySoft-Bold', sans-serif;
	font-size: 25px;
	text-decoration: none;
	padding: 25px;
	border-radius: 50px;
	border: none;
	cursor: pointer;
	transition:
		background-color 0.2s ease,
		color 0.2s ease;
}

.btn-primary:hover {
	background-color: var(--accent-text-color);
	color: var(--accent-color);
}

.menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(5px);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 0.3s ease,
		visibility 0.3s ease;
}

.menu-overlay.active {
	opacity: 1;
	visibility: visible;
}

.side-menu {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	max-width: 500px;
	height: 100%;
	background-color: transparent;
	z-index: 1000;
	transform: translateX(100%);
	transition: transform 0.3s ease;
	display: flex;
	flex-direction: column;
	padding: 25px;
	overflow-y: auto;
}

.side-menu.active {
	transform: translateX(0);
}

.menu-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.side-menu .logo-box {
	background-color: transparent;
	min-height: auto;
	padding: 0;
}

.close-menu {
	background-color: var(--box-light);
	border-radius: 50px;
	width: 100px;
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.close-menu i {
	font-size: 45px;
}

.menu-header-right {
	display: flex;
	gap: 25px;
}

.theme-toggle {
	background-color: var(--box-light);
	border-radius: 50px;
	width: 100px;
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.theme-toggle i {
	font-size: 45px;
	transition: transform 0.3s ease;
}

.menu-items {
	list-style: none;
	padding: 0;
	margin: 0;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.menu-items a {
	display: block;
	background-color: var(--box-light);
	border-radius: 50px;
	height: 100px;
	line-height: 100px;
	padding: 0 25px;
	text-decoration: none;
	color: var(--text-light);
	font-family: 'RoundkeySoft-Bold', sans-serif;
	font-size: 25px;
	text-align: center;
	transition:
		background-color 0.2s ease,
		color 0.2s ease;
}

.menu-items a.active-link {
	background-color: var(--accent-color);
	color: var(--accent-text-color);
	pointer-events: none;
}

body.menu-open {
	overflow: hidden;
}

body.dark-mode {
	background-color: var(--background-dark);
	color: var(--text-dark);
}

body.dark-mode .box,
body.dark-mode .logo-box,
body.dark-mode .hamburger-menu,
body.dark-mode .vacature-card-bottom,
body.dark-mode .close-menu,
body.dark-mode .theme-toggle,
body.dark-mode .menu-items a {
	background-color: var(--box-dark);
	color: var(--text-dark);
}

body.dark-mode .button {
	background-color: var(--accent-color);
	color: var(--accent-text-color);
}

body.light-mode .menu-items a:hover {
	background-color: var(--text-light);
	color: var(--box-light);
}

body.dark-mode .menu-items a:hover {
	background-color: var(--text-dark);
	color: var(--box-dark);
}

footer {
	max-width: 1800px;
	margin: 25px auto 0 auto;
}

.footer-box {
	background-color: var(--accent-color);
	color: var(--accent-text-color);
	padding: 25px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer-box p {
	font-family: 'RoundkeySoft-Bold', sans-serif;
	font-size: 35px;
	margin: 0;
	text-align: center;
}

.menu-items a {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--box-light);
	border-radius: 50px;
	height: 100px;
	padding: 0 25px;
	text-decoration: none;
	color: var(--text-light);
	font-family: 'RoundkeySoft-Bold', sans-serif;
	font-size: 25px;
	transition:
		background-color 0.2s ease,
		color 0.2s ease;
}

.chat-fab {
	position: fixed;
	bottom: 25px;
	right: 25px;
	width: 100px;
	height: 100px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	transition: transform 0.2s ease;
	z-index: 100;
}

.chat-fab:hover {
	transform: scale(1.1);
}

.chat-fab i {
	font-size: 45px;
	color: var(--accent-text-color);
	line-height: 0;
}

@media (min-width: 769px) {
	.chat-fab {
		right: 50px; /* Larger margin on desktop */
	}
}

/* Presentatie Specifieke Stijlen */
.presentation-container {
	max-width: 1200px;
	margin: 0 auto;
	/* De box class handhaaft de achtergrondkleur en border-radius */
}

.slide {
	margin-bottom: 40px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--box-light); /* Gebruik een variabele voor consistentie */
}

body.dark-mode .slide {
	border-bottom: 1px solid var(--box-dark);
}

.slide:last-child {
	border-bottom: none;
}

.slide h1,
.slide h2 {
	color: var(--accent-color); /* Gebruik de accentkleur van de website */
	margin-top: 0;
	font-family: 'RoundkeySoft-Bold', sans-serif;
}

.slide p {
	line-height: 1.6;
	font-family: 'Ubuntu', sans-serif;
	color: var(--text-light);
}

body.dark-mode .slide p {
	color: var(--text-dark);
}

.slide img {
	max-width: 100%;
	height: auto;
	display: block;
	margin-top: 20px;
	border-radius: 8px; /* Iets grotere radius voor afbeeldingen */
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.slide-navigation {
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
}

.slide-navigation button {
	background-color: var(--accent-color);
	color: var(--accent-text-color);
	border: none;
	padding: 10px 20px;
	border-radius: 50px; /* Gebruik de algemene button radius */
	cursor: pointer;
	font-family: 'RoundkeySoft-Bold', sans-serif;
	font-size: 18px;
	transition:
		background-color 0.2s ease,
		color 0.2s ease;
	min-width: 120px;
	height: 60px; /* Vaste hoogte voor buttons */
	display: flex;
	align-items: center;
	justify-content: center;
}

.slide-navigation button:hover:not(:disabled) {
	background-color: var(--accent-text-color);
	color: var(--accent-color);
}

.slide-navigation button:disabled {
	background-color: var(--box-light); /* Gebruik website kleuren voor disabled */
	color: var(--text-light);
	cursor: not-allowed;
	opacity: 0.7;
}

body.dark-mode .slide-navigation button:disabled {
	background-color: var(--box-dark);
	color: var(--text-dark);
}
