/* =====================
   Header
===================== */
.site-header {
	background: #000;
    position: relative;
	z-index: 100;
	width: 80%;
    margin: auto;
	min-height: 200px;
	display: flex;
	align-items: center;
}
.header-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-end;
	padding: 0 64px;
	width: 100%;
	height: auto;
	gap: 20px;
	container-type: inline-size;
}
.logo {
	height: 144px;
	min-height: 60px;
	padding: 24px 0px;
	flex: 0 0 auto;
}
.main-nav {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-end;
	justify-content: flex-end;
	padding-bottom: 24px;
	flex: 1 1 auto;
	min-width: 200px;
}
.main-nav a {
	font-family: 'Rubik', sans-serif;
	font-weight: 800;
	letter-spacing: -2px;
	color: #6b6b6b;
	text-decoration: none;
	margin: 0px 24px;
	font-size: 34px;
	white-space: nowrap;
	display: block;
	flex: 0 0 auto;
	transition: color 0.5s ease;
}

.main-nav a:hover {
	color: #ffffff;
}

.main-nav a.active {
	color: #ff0000;
}

/* Stack nav items vertically on portrait displays using container query */
@container (max-width: 480px){
	.logo {
		padding-bottom: 12px;
		padding-left: 12px;
	}
    .main-nav {
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	.main-nav a {
		flex-basis: 100%;
		width: 100%;
		margin-left: 0;
		padding: 8px 0;
	}
}

/* =====================
   Footer
===================== */
.site-footer {
	background: #000;
	position: relative;
	z-index: 100;
	width: 100%;
	min-height: 150px;
	margin-top: 60px;
	display: grid;
	flex-direction: column;
	align-items: stretch;
}

.footer-inner {
	height: 100%;
	text-align: center;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: space-between;
	font-size: 11px;
}
.footer-social {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-top: 29px;
}

.footer-social img {
	width: 19px;
	margin: 0 19px;
}

.footer-meta {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.footer-meta p {
	font-size: 14px;
	margin-top: 10px;
	margin-bottom: 20px;
	color: white;
	padding-bottom: 10px;
}

@media (max-width: 480px) 
{    
	.site-footer {
		position: relative;
		width: 100vw;
		height: auto;
		transform: none;
		left: auto;
		padding: 20px 0;
	}
	
	.footer-inner {
		font-size: 14px;
	}
	
	.footer-social img {
		width: 30px;
	}
	
	.footer-meta p {
		font-size: 14px;
	}
}

/* =====================
    Black Body Sections
===================== */
.section-box {
	position: relative;
	/* center the box itself */
	width: 80%;
	margin: 64px auto 0;

	background: #000;
	padding: 64px;

	text-align: center;

	display: block;
}

.body-title {
	font-family: 'Rubik', sans-serif;
	font-size: 48px;
	margin-bottom: 32px;
}

.body-subtitle {
	font-family: 'Rubik', sans-serif;
	font-size: 36px;
	margin-bottom: 16px;
}

@media (max-width: 480px) {
	.body-title {
		font-size: 32px;
		margin-bottom: 48px;
	}
}