/* VERSION 1.0 2025-10-03 FRIDAY */

/* GLOBAL RESETS */
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

/* TYPOGRAPHY
	"kallisto", sans-serif
		200 thin
		300 light
		500	medium
		800 bold
		900 heavy

	"interstate", sans-serif
		100 hairline
		200 thin
		300 extra light
		400 light
		500 regular
		700 bold
		800 black
		900 ultra black

	"archer-pro", sans-serif
		100 extra light
		200 light
		300 book
		400 medium
		500 semibold
		600 bold
		700 black
		800 extra black
		900 ultra black*/
	
html {
	font-size: 16px;
}

.logo {
	font: normal 500 1.45rem kallisto, helvetica, sans-serif;
}

.tag {
	font: normal 500 1.20rem interstate, helvetica, sans-serif;
	color: white;
}

h1 {
	font: normal 500 1.45rem interstate, sans-serif;
	background-color: #009dff;
	color: white;
	padding: 0.5rem;
	margin: 0 0 1.5rem;
	text-align: center;
	width: 100%;
}

h2 {
	font: normal 500 1.20rem interstate, sans-serif;
	background-color: #009dff;
	color: white;
	padding: 0.5rem;
	margin: 0.5rem 0 1.5rem;
	text-align: center;
	width: 100%;
}

p {
	font: normal 400 1rem archer-pro, serif;
	color: white;
	margin: 0 0 1rem 0.5rem;
	line-height: 1.3rem;
	max-width: 65ch;
	hyphens: auto;
}

a {
	font: normal 400 1rem archer-pro, serif;
}

div.epigraph {
	margin: 1rem 0;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

div.epigraph p {
	margin: 0;
}

footer p {
	text-align: center;
	max-width: unset;
}

/* LINK STYLING */
a {
	text-decoration: none;
}

nav a {
	font: normal 400 1.2rem interstate, helvetica, sans-serif;
	padding-left: 0.5rem;
}

a:link {
	color: #ff9500;
}

a:visited {
	color: #ff9500;
}

a:focus {
	font-weight: 500;
	outline: none;
	border: 1px solid #59ff00;
	border-radius: 5px;
}

nav a:focus:nth-child(2) {
	padding: 0.25rem;
}

a:hover {
	color: #59ff00;
}

a.no-hover:hover {
	color: unset;
}

a:active {
	color: #59ff00;
}

/* COLORS */
.highlight {
	color: #ff00ff;
}

span.magenta {
	color: #ff00ff;
}
span.magenta-tnt {
	color: #aa39aa;
}

span.blue {
	color: #009dff;
}

span.blue-tnt {
	color: #406780;
}

span.orange {
	color: #ff9500;
}

span.lime {
	color: #59ff00;
}

/* IMAGES */
img {
	margin: 0 auto 1.5rem;
	display: block;
	width: 100%;
	max-width: max-content;
	height: auto;
}

/* LAYOUT */

/* BODY LAYOUT */
body {
	background-color: black;
	margin: 0 auto;
	width: 95%;
}

/* HEADER LAYOUT */
header {
	grid-area: header;
	background-color: black;
	border-bottom: 3px solid #406780;
	padding: 0.5rem 0;
	display: grid;
	grid-template-areas:
		"logo nav-top";
	grid-template-columns: 1fr 1.35fr;
	position: fixed;
	width: 95%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}

div.logo {
	grid-area: logo;
	display: flex;
	flex-direction: column;
	justify-content: start;
}

nav {
	grid-area: nav-top;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: end;
	overflow: hidden;
	position: relative;
}

/* MAIN LAYOUT */
main {
	padding: 4rem 0 0;
	margin-bottom: 1rem;
}



/* FOOTER LAYOUT */
footer {
	padding-top: 0.5rem;
	border-top: 3px solid #406780;
	margin: 1rem 0 5rem;
}

/*.card {
	position: relative;
}

.overlay {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 40%;
	transition: .5s ease;
	opacity: 0;
}

.card:hover .overlay {
	opacity: 1;
}*/


/*p.scnd-ln-indnt {
	font-style: italic;
	margin: 0 0 1rem 1rem;
}*/

/*nav a:nth-child(2) {
	padding: 0.75rem 0 0.75rem 0.5rem;
}*/

/*figcaption {
	text-align: center;
}

figcaption p:nth-child(2){
	font-size: 0.8rem;
}*/




/* MAIN LAYOUT - PHOTOGRAPHY PAGE
article.photo {
	grid-area: photo;
}*/

/* SLIDESHOW - PHOTOS PAGE
.slideshow {
	grid-area: slideshow;
}

.mySlides {
	display: none;
}

.fade {
	animation-name: fade;
	animation-duration: 1.5s;
}

@keyframes fade {
	from {opacity: .4;}
	to {opacity: 1;}
}*/



@media screen and (min-width: 576px) {
	.logo {
		font-size: 1.7rem;
	}

	.tag {
		font-size: 1.35rem;
	}

	h1 {
		font-size: 1.7rem;
	}

	h2 {
		font-size: 1.35rem;
	}

	p {
		font-size: 1.1rem;
	}

	a {
		font-size: 1.1rem;
	}
	nav a {
		font-size: 1.35rem;
	}

	header {
		grid-template-columns: 1fr 2fr;
	}
	
	nav {
		flex-direction: row;
		justify-content: end;
	}

	nav a {
		padding: unset;
	}

	nav a:nth-child(2) {
		padding: 0 1.5rem;
	}

	main {
		padding: 4rem 0 0;
	}

	.overlay {
		top: 35%;
	}
}

@media screen and (min-width: 768px) {
	.logo {
		font-size: 2rem;
	}

	.tag {
		font-size: 1.5rem;
	}

	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.5rem;
	}

	p {
		font-size: 1.25rem;
		line-height: 1.5rem;
	}

	a {
		font-size: 1.25rem;
	}
	nav a {
		font-size: 1.5rem;
	}

	main {
		padding: 5rem 0 0;
	}
}