@font-face {
	font-family: farabee-c;
	src: url(../fonts/farabee-straight-light.woff2);
}

footer {
	font-family: farabee-c;
	font-size: 14px;
	display: flex;
	justify-content: space-between;
	background-color: #2D3436;
	color: white;
	padding: 20px;
}

.footer h2 {
	font-family: farabee-c;
}

.footer-section {
	flex: 1;
	padding: 0 15px;
}

.footer-section.middle {
	border-left: 1px solid #f4efec;
	border-right: 1px solid #f4efec;
	text-align: center;
	justify-content: center;
}

.footer-section h3 {
	margin-top: 0;
	margin-bottom: 15px;
	font-size: 18px
}

.map-container {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.map-placeholder {
	height: 250px;
	width: 400px;
	background-color: #555;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	filter: grayscale(1);
	-ms-filter: grayscale(1);
	-webkit-filter: grayscale(1);
	-moz-filter: grayscale(1);
	-o-filter: grayscale(1);
}

.work {
	margin-top: 4vh;
}

.work-info {
	margin-bottom: 20px;
}

.nav-links {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.nav-links a {
	font-size: 24px;
	color: white;
	text-decoration: none;
}

.nav-links a:hover {
	text-decoration: underline;
}

.map-container {
	align-items: center;
	justify-content: center;
}

@media (max-width: 1000px) {
	footer {
		flex-direction: column;
		gap: 30px;
	}

	.footer-section {
		padding: 15px 0;
	}

	.footer-section.middle {
		border-left: none;
		border-right: none;
		border-top: 1px solid #f4efec;
		border-bottom: 1px solid #f4efec;
	}

	.map-placeholder {
		width: 100%;
		height: 300px;
	}

	.map-placeholder iframe {
		width: 100%;
		height: 100%;
	}

	.work {
		margin-top: 2vh;
	}

	.nav-links {
		flex-direction: row;
		justify-content: center;
		gap: 20px;
	}
}