#Header .header {
	width: 100%;
	background-color: var(--primary-main-color);
	color: #fff;
	z-index: 500;
	display: block;
	position: relative;
	top: 0;
}

#Header .header-content {
	height: 100%;
	font-weight: 550;
	padding: 0 50px;
	height: 12vh;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #ffffff;
}

#Header .img-logo {
	height: 50px;
}

#Header .logo-area {
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 8px;
}

#Header .logo-text {
	font-size: 24px;
	color: var(--primary-main-color);
}

#Header .header-border {
	width: 100%;
	height: 2px;
	background: linear-gradient(358.5deg, var(--secondary-light-color) 0.09%, var(--primary-main-color));
}

/* Menu (desktop) */
#Header .menu-area {
	display: flex;
	align-items: center;
	gap: 12px;
}

#Header ul.menu {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
}

#Header li.menu-item a {
	color: var(--primary-main-color);
	margin-right: 20px;
	text-decoration: none;
	font-size: 18px;
}

#Header li.menu-item a.is-active {
	position: relative;
	font-weight: 700;
	color: var(--primary-dark-color);
}

#Header li.menu-item a.is-active::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 100%;
	height: 2px;
	background-color: var(--primary-main-color);
	border-radius: 2px;
}

/* Mobile toggle hidden on desktop */
#Header .mobile-menu-toggle {
	display: none;
}

@media screen and (max-width: 1068px) {
	#Header .mobile-menu-toggle {
		display: block;
	}

	#Header ul.menu {
		display: none;
	}

	#Header #menu-toggle-button {
		background-color: transparent;
		border: none;
		font-size: 40px;
		color: var(--primary-main-color);
		cursor: pointer;
	}

	#Header .menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		background-color: #ffffff;
		z-index: 1;
		width: 100%;
		box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
	}

	#Header .menu.show-menu {
		display: block;
	}

	#Header .menu li.menu-item {
		padding: 10px;
	}

	#Header .menu li.menu-item a {
		text-align: center;
		display: block;
		margin-right: 0;
	}
}
