.empty-div {
	height: 3rem;
}

.header {
	margin: 2rem 3rem;
}

.jc-logo {
	height: 4rem;
}

#website-name {
	font-size: 1.5rem;
}

#website-description {
	font-size: 0.8rem;
	color: var(--light-grey);
	max-width: 200px;
}

/* Navigation bar standard styling */
#navigation {
	ul {
		list-style-type: none;
		padding: 0;
	}

	.menu {
		text-wrap: nowrap;
		display: flex;

		a {
			font-size: 1.125rem;
			font-weight: 400;
			line-height: 1.68rem;
			text-decoration: none;
			color: var(--black);
			padding: 16px;
		}
	}
}

/** START DESKTOP NAV **/
@media screen and (min-width: 1024px) {
	#navigation {
		.menu {
			flex-direction: row;
			gap: 1.5rem;

			a {
				&:hover {
					background-color: var(--light-blue-tint-20);
					border-bottom: 2px solid var(--primary);
				}

				&:active {
					background-color: var(--primary);
					color: var(--white);
				}
			}
		}
	}

	.menu>li {
		@media screen and (min-width: 1024px) {
			&:last-child>a {
				color: var(--white) !important;
				background-color: var(--primary);
				border-radius: 80px;
				font-weight: bold !important;
				transition: 0.3s;
				border: 0;

				&:hover {
					background-color: var(--primary-hover) !important;
					color: var(--black) !important;
					transition: 0.3s;
					border: 0 !important;
				}

				&:active {
					background-color: var(--primary-active);
					color: var(--black);
					transition: 0.3s;
					border: 0;
				}
			}
		}
	}

	.burger {
		display: none;
	}
}

/** END DESKTOP NAV **/

/** START MOBILE NAV **/
@media screen and (max-width: 1023px) {
	.burger {
		display: block;
		color: var(--black);
	}

	.menu {
		flex-direction: column;
		right: 0;
		position: absolute;
		z-index: 1;
		width: 100%;
		height: 100%;
		top: 0;
		background-color: transparent;
		visibility: hidden;
		transition: 0.2s;

		&.opened {
			top: 3rem;
			background-color: var(--light-blue-tint-10);
			visibility: visible;
			animation: grow .1s;
			position: fixed;
		}

		>ul {
			padding: 1rem;
			margin-bottom: 0;
			flex-direction: column !important;
		}
	}

	.menu-item {
		visibility: hidden;
		transition: 0.01s;
		text-align: center;
		float: none;
		align-content: flex-end;
		margin-bottom: 1rem;

		&>a {
			background-color: var(--light-blue-tint-10);
			border-bottom: 1px solid var(--primary);
			display: block;
			padding: 8px !important;
		}

		&.opened {
			visibility: visible;
		}
	}
}

@keyframes grow {
	from {
		transform: scale(0);
	}

	to {
		transform: scale(1);
	}
}

#mobile-menu {
	&:active {
		background-color: transparent !important;
	}
}

.close-button {
	display: flex;
	justify-content: flex-end;
	margin: 1rem;

	a {
		&:active {
			background-color: transparent;
		}
	}
}

/** END MOBILE NAV **/