@charset "UTF-8";
/* CSS Document */
/* Full-Bleed Fix */
html {
	overflow-x: hidden;
}
/* Home Page */
body {
	margin: 0;
	padding: 0;
	border: 0;
	position: relative;
	font-size: 16px;
	color: black;
	background-color: white;
	font-family: "benton-modern-display", serif;
}

nav {
	max-width: none;
	display: grid;
	list-style-type: none;
	background-color: white;
	margin: 0;
	padding: 0;
	position: sticky;
	top: 0;
	z-index: 50;
	transition: transform 0.3s ease;
}
nav.NavHidden {
	transform: translateY(-100%);
}

ul {
	display: flex;
	justify-content: flex-end;
	flex-wrap: nowrap;
	list-style-type: none;
	margin: 0;
	padding: 0;
	background-color: white;
	flex: 1;
}
.NavBrand {
	display: flex;
	align-items: center;
	font-size: 2.5em;
	font-weight: bold;
	color: black;
	text-decoration: none;
	padding: 0 0.5em 0 0;
	text-shadow: 0.0625em 0.0625em 0.125em rgba(0, 0, 0, 0.15);
	line-height: 1em;
}
.NavWrapper {
	display: flex;
	align-items: stretch;
	background-color: white;
}

li a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	box-sizing: border-box;
	padding: 0.6em 0;
	text-align: center;
	color: black;
	text-decoration: none;
	font-size: 0.95em;
	margin: 0;
	text-shadow: 0.0625em 0.0625em 0.125em rgba(0, 0, 0, 0.15);
}
ul li {
	flex: 1;
}

li a:hover {
	background-color: lightskyblue;
	color: black;
}

h1 {
	font-size: 4em;
	font-weight: bold;
	line-height: 1.2em;
	text-align: center;
	margin-bottom: 0.5em;
}
h2 {
	font-size: 2.5em;
	font-style: normal;
	font-weight: bold;
	text-align: center;
	line-height: 1.2em;
}
h3 {
	font-size: 1.5em;
	font-weight: normal;
	line-height: 1.2em;
}
p {
	font-size: 1em;
	font-weight: normal;
	line-height: 1.5em;
}
a {
	text-decoration: none;
	color: black;
}

img {
	border: 0;
	max-width: 100%;
	height: auto;
}

.MainContainer {
	width: 100%;
	margin: 0 0 2.5em 0;
	background-color: Black;
	color: white;
	padding: 2em;
	box-sizing: border-box;
}
.TopDualImages {
	display: flex;
	justify-content: space-between;
	column-gap: 1.875em;
	max-width: 53.125em;
	margin: 0 auto 1.875em auto;
}
.TopDualImages	.ImgWrapper {
	flex: 1;
	height: auto;
}
.TopDualImages	.ImgWrapper	img {
	width: 100%;
	height: auto;
}
.CenterTextBlock {
	text-align: center;
	margin-bottom: 2.5em;
}
.CenterTextBlock	h1 {
	margin: 0 0 0.2em 0;
	font-size: 3.5em;
	font-weight: normal;
}
.CenterTextBlock	.Attributes {
	margin: 0;
	font-size: 1.2em;
	letter-spacing: 0.05em;
	opacity: 0.9;
}
.CenterTextBlock .Attributes span {
	margin: 0 1em;
}
.BottomImage {
	display: flex;
	justify-content: center;
	width: 100%;
}
.BottomImage	img {
	width: 100%;
	max-width: 36.25em;
	height: auto;
}
.AboutContent {
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 2.5em;
	max-width: 56.25em;
	margin: 3.75em auto;
	padding: 0 2.5em;
	box-sizing: border-box;
}
.AboutText p {
	font-size: 1.1em;
	line-height: 1.6em;
	margin-bottom: 1.25em;
}
.AboutText {
	flex: 1.2;
}
.AboutContentHeadline {
	text-align: left;
	font-size: 3em;
	margin-bottom: 0.65em;
}
.AboutImageContainer {
	flex: 1;
	display: flex;
	justify-content: center;
}
.AboutImage {
	width: 100%;
	max-width: 21.875em;
	height: auto;
}
.SiteFooter p {
	margin: 0;
	font-size: 1em;
	letter-spacing: 0.03125em;
}
.SiteFooter a {
	color: white;
}
.SiteFooter a:hover {
	color: lightskyblue;
	text-decoration:none;
}
.SiteFooter a:hover .FooterIcon {
	filter: brightness(0) saturate(100%) invert(79%) sepia(20%) saturate(1212%) hue-rotate(186deg) brightness(103%) contrast(101%);
}
.SiteFooter {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	margin: 2.5em 0 0 0 0;
	background-color: black;
	color: white;
	padding: 1.25em 2.5em;
	box-sizing: border-box;
}
.FooterItem {
	flex: 1;
}
.FooterIcon {
	width: 1.2em;
	height: auto;
	vertical-align: middle;
	margin-right: 0.5em;
	display: inline-block;
	filter: invert(1) brightness(2);
}
.LeftAlign {
	text-align: left;
}
.CenterAlign {
	text-align: center;
}
.RightAlign {
	text-align: right;
}
/* Fade In Animation */
@keyframes FadeIn {
	from {
		opacity: 0;
		transform: translateY(1.25em);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.FadeIn {
	animation: FadeIn 1.2s ease forwards;
	opacity: 0;
}
.FadeInDelay1 {
	animation-delay: 0.3s;
}
.FadeInDelay2 {
	animation-delay: 0.6s;
}

/* Award Section */
.AwardSection {
	width: 100%;
	margin: 0 0 2.5em 0;
	padding: 2.5em;
	box-sizing: border-box;
	background-color: black;
	color: white;
}
.AwardHeadline {
	text-align: center;
	font-size: 3em;
	margin-bottom: 0.3em;
}
.AwardDek {
	text-align: center;
	font-size: 1.1em;
	color: #ccc;
	margin-bottom: 2em;
	line-height: 1.6em;
	font-style: italic;
}
.AwardImageWrapper {
	position: relative;
	display: flex;
	justify-content: center;
	margin-bottom: 2em;
}
.AwardImageWrapper img {
	width: 100%;
	max-width: 40em;
	height: auto;
	display: block;
}
.AwardImageOverlay {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	font-size: 3em;
	font-weight: bold;
	text-align: center;
	text-shadow: 0.0625em 0.0625em 0.25em rgba(0, 0, 0, 0.7);
	line-height: 1.2em;
}
.AwardBody {
	font-size: 1.1em;
	line-height: 1.6em;
	margin: 0 auto 1.5em auto;
	max-width: 800px;
	text-align: center;
}
.ViewProject {
	font-weight: bold;
	font-size: 0.9em;
	color: white;
	transition: color 0.2s ease;
	text-align: center;
	display: block;
}
.ViewProject:hover {
	color: lightskyblue;
}

/* Bottom Page Navigation */
.PageNav {
	display: flex;
	justify-content: center;
	gap: 1em;
	max-width: 1200px;
	margin: 0 auto 2.5em auto;
	padding: 0 1.25em;
	box-sizing: border-box;
}
.PageNavButton {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1em;
	text-align: center;
	font-size: 1.1em;
	font-weight: bold;
	color: black;
	background-color: white;
	border: 0.125em solid #ddd;
	border-radius: 0.5em;
	box-shadow: 0 0.125em 0.5em rgba(0,0,0,0.08);
	transition: all 0.2s ease;
	min-height: 3.5em;
}
.PageNavButton:hover {
	background-color: lightskyblue;
	border-color: lightskyblue;
	color: black;
	text-decoration: none;
}

/* Media Design Page */
.MediaGrid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2.5em;
	margin-top: 2.5em;
	padding: 1.25em;
}

.MediaGrid:not(.AwardGrid) .GridItem {
	flex: 0 1 18em;
	aspect-ratio: 3 / 4;
	justify-content: center;
	overflow: hidden;
}

.MediaGrid:not(.AwardGrid) .GridItem img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.GridItem {
	flex: 1 1 18em;
	max-width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	
	/* These two lines fix the invisible overlap! */
	position: relative;
	z-index: 1; 
}

.GridItem img {
	width: 100%;
	height: auto;
	display: block;
}

.GridItem:hover img {
	filter: opacity(0.7) drop-shadow(0 0 0 lightskyblue);
	box-shadow: 0em 0em 1.5em rgba(135, 206, 250, 0.9);
}

/* Photography Page - Masonry Layout */
.MasonryGrid {
	columns: 3;
	column-gap: 1.5em;
	margin-top: 2.5em;
	padding: 1.25em;
}
.MasonryGrid .GridItem {
	display: inline-block;
	width: 100%;
	margin-bottom: 1.5em;
	break-inside: avoid;
}

/* Lightbox */
.Lightbox {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.95);
	z-index: 100;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	cursor: pointer;
}
.Lightbox.Active {
	display: flex;
}
.LightboxImage {
	max-width: 90%;
	max-height: 75vh;
	height: auto;
	object-fit: contain;
}
.LightboxCaption {
	color: white;
	font-size: 1.1em;
	margin-top: 1.25em;
	text-align: center;
	max-width: 37.5em;
	line-height: 1.5em;
}
.LightboxClose {
	position: absolute;
	top: 1.25em;
	right: 1.875em;
	color: white;
	font-size: 2.5em;
	cursor: pointer;
	font-weight: bold;
	line-height: 1em;
}
.LightboxClose:hover {
	color: lightskyblue;
}
.LightboxArrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: white;
	font-size: 3em;
	cursor: pointer;
	font-weight: bold;
	padding: 0.25em;
	user-select: none;
	line-height: 1em;
}
.LightboxArrow:hover {
	color: lightskyblue;
}
.LightboxPrev {
	left: 1em;
}
.LightboxNext {
	right: 1em;
}

/* Awards Page */
.AwardGrid .GridItem {
	max-width: 30em;
}
.AwardGrid .GridItem:hover img {
	filter: none;
	box-shadow: none;
}
.AwardCardImageWrapper {
	position: relative;
	margin: -2em -2em 1.25em -2em;
	overflow: hidden;
	border-radius: 0.5em 0.5em 0 0;
}
.AwardCardImageWrapper img {
	width: 100%;
	height: auto;
	display: block;
}
.AwardCardImageOverlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 1em;
	color: white;
	font-size: 2em;
	font-weight: bold;
	text-shadow: 0.0625em 0.0625em 0.25em rgba(0, 0, 0, 0.7);
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
	box-sizing: border-box;
}
.AwardCardDetail {
	font-style: italic;
	color: #888;
	font-size: 0.9em;
	margin: 0 0 1em 0;
	line-height: 1.5em;
}

/*Journalistic Work Cards*/
.ArticleGrid .GridItem {
	max-width: 25em;
}
.ArticleCard {
	background-color: white;
	border-radius: 0.5em;
	box-shadow: 0 0.25em 0.75em rgba(0,0,0,0.08);
	padding: 2em;
	display: flex;
	flex-direction: column;
	height: 100%;
	box-sizing: border-box;
}
.ArticleCard h3 {
	text-align: left;
	margin: 0 0 0.5em 0;
	line-height: 1.3em;
	color: black;
}
.ArticleSummary {
	text-align: left;
	color: #444;
	margin: 0 0 2em 0;
	flex-grow: 1;
}
.CardFooter {
	display: flex;
	flex-direction: column;
	gap: 0.3em;
	text-align: left;
}
.ReadArticle {
	font-weight: bold;
	font-size: 0.9em;
	color: #333;
	transition: color 0.2s ease;
}
.ReadArticle:hover {
	color: lightskyblue;
}
.Publication {
	font-style: italic;
	color: #888;
	margin: 0;
	font-size: 0.9em;
}

/* Resume Page */
.ResumeWrapper {
	max-width: 850px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2.5em;
}
.ResumeImage {
	width: 100%;
	max-width: 550px;
	height: auto;
	box-shadow: 0 0.5em 1.5em rgba(0, 0, 0, 0.2);
	display: block;
	margin: 0 auto;
}
.DownloadButton {
	display: inline-block;
	background-color: black;
	color: white;
	padding: 1em 2.5em;
	font-size: 1.2em;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border-radius: 2em;
	transition: all 0.3s ease;
}
.DownloadButton:hover {
	background-color: lightskyblue;
	color: black;
	box-shadow: 0 0 1.5em rgba(135, 206, 250, 0.8);
	text-decoration: none;
}

/* media query for 768px, iPad size */
@media screen and (max-width: 768px) {
	.NavBrand {
		font-size: 2em;
	}
	li a {
		font-size: 0.85em;
		padding: 0.5em 0.25em;
	}
	h1 {
		font-size: 3em;
	}
	h2 {
		font-size: 2em;
	}
	h3 {
		font-size: 1.3em;
	}
	.MainContainer {
		padding: 1.5em;
	}
	.CenterTextBlock h1 {
		font-size: 2.5em;
	}
	.CenterTextBlock .Attributes {
		font-size: 1em;
	}
	.CenterTextBlock .Attributes span {
		margin: 0 0.5em;
	}
	.AboutContent {
		column-gap: 1.5em;
		padding: 0 1.5em;
		margin: 2.5em auto;
	}
	.AboutContentHeadline {
		font-size: 2.25em;
	}
	.AboutText p {
		font-size: 1em;
	}
	.AwardSection {
		padding: 2em;
	}
	.AwardHeadline {
		font-size: 2.25em;
	}
	.AwardImageOverlay {
		font-size: 2em;
	}
	.AwardBody {
		font-size: 1em;
	}
	.MasonryGrid {
		columns: 2;
	}
	.PageNav {
		gap: 0.75em;
		padding: 0 1em;
	}
	.PageNavButton {
		font-size: 0.95em;
		padding: 0.75em;
	}
	.SiteFooter {
		padding: 1em 1.5em;
	}
	.SiteFooter p {
		font-size: 0.9em;
	}
}

/* media query for 600px, iPhone size */
@media screen and (max-width: 600px) {
	.NavBrand {
		font-size: 1.75em;
	}
	li a {
		font-size: 0.75em;
		padding: 0.5em 0.2em;
	}
	h1 {
		font-size: 2.25em;
	}
	h2 {
		font-size: 1.75em;
	}
	h3 {
		font-size: 1.2em;
	}
	p {
		font-size: 0.95em;
	}
	.MainContainer {
		padding: 1em;
		margin: 0 0 1.5em 0;
	}
	.TopDualImages {
		flex-direction: column;
		column-gap: 0;
		row-gap: 1em;
	}
	.CenterTextBlock h1 {
		font-size: 2em;
	}
	.CenterTextBlock .Attributes {
		font-size: 0.9em;
	}
	.CenterTextBlock .Attributes span {
		display: block;
		margin: 0.3em 0;
	}
	.AboutContent {
		flex-direction: column;
		column-gap: 0;
		row-gap: 1.5em;
		padding: 0 1em;
		margin: 2em auto;
	}
	.AboutContentHeadline {
		font-size: 1.75em;
		text-align: center;
	}
	.AboutText p {
		font-size: 0.95em;
	}
	.AwardSection {
		padding: 1.5em;
	}
	.AwardHeadline {
		font-size: 1.75em;
	}
	.AwardImageOverlay {
		font-size: 1.5em;
	}
	.AwardBody {
		font-size: 0.95em;
	}
	.MasonryGrid {
		columns: 1;
	}
	.PageNav {
		flex-wrap: wrap;
		gap: 0.5em;
		padding: 0 1em;
	}
	.PageNavButton {
		flex: 1 1 40%;
		font-size: 0.9em;
		padding: 0.6em;
		min-height: 2.75em;
	}
	.SiteFooter {
		flex-direction: column;
		row-gap: 0.75em;
		padding: 1em;
	}
	.LeftAlign,
	.CenterAlign,
	.RightAlign {
		text-align: center;
	}
	.SiteFooter p {
		font-size: 0.85em;
	}
	.DownloadButton {
		font-size: 1em;
		padding: 0.8em 1.75em;
	}
}