/* Basics ~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
body,h1,h2 {
	font-family: "Raleway", sans-serif;
}
body, html {
	height: 100%;
}
p, li {
	line-height: 1.9;
}
a {
	color: #f15f47;
	text-decoration: none;
}
a:hover {
	color: #f15f47;
}
h1 {
	font-size: 40px;
}

/* Nav/home ~~~~~~~~~~~~~~~~~~~~~~~~~~*/
nav {
	background: rgba(0,0,0,0.9);
}
#home nav {
	background: transparent;	
}
#nav-home {
	font-size: 1.25rem;
	padding: 1rem;
}
nav .w3-button {
	opacity: 0.67;
	transition: opacity 0.33s;
}
nav .nav-item {
	padding: 8px 16px !important;
	width: 90px !important;
}
nav .nav-item span {
	display: block;
}
nav .w3-button:hover {
    color: #fff !important;
    background-color: transparent !important;
	opacity: 1;
	text-shadow: 0px 0px 10px #fff, 0px 0px 5px #fff;
	transition: opacity 0.33s;
}
nav img {
	max-height: 1.6rem;
}
#nav-art {
	letter-spacing:2px;
}
#nav-design {
	letter-spacing:2px;
}
#nav-beyond {
	letter-spacing:1.6px;
}
nav.darkbg {
	background: rgba(0,0,0,0.9) !important;	
}
.anchorlist {
	font-weight: bold;
	letter-spacing: 2px;
	padding-left: 0;
}
.anchorlist li {
	display: inline-block;
}
.anchorlist li:not(:last-child):after {
	content: "|";
	opacity: 0.2;
	padding: 0 0.4rem 0 0.8rem;
}
/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
	.modal-content {
		width: 100%;
	}
	#nav-art, #nav-design, #nav-beyond {
		letter-spacing: 0;
	}
	#nav-home {
		padding: 0.5rem !important;
	}
	nav .nav-item {
		width: 50px !important;
		display: inline-block;
		max-width: 50px !important;
		padding: 8px !important;
	}
	nav .nav-item span {
		display: none;
	}
	nav img {
		height: 1.6rem;
	}
	.anchorlist {
		letter-spacing: 1px;
	}
	h1 {
		font-size: 30px;
	}
}

/* Header ~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
header h1, header h2 {
	visibility: hidden;
}
#home header {
	background-image: url("../images/hs2023-44.jpg");
	min-height: 100%;
	background-position: center top;
	background-size: cover;
}
#home header .overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	opacity: 0;
	transition: opacity 0.5s;
}
#home header #overlay-art {
	background-image: url("../images/art-overlay.png");
	min-height: 100%;
	background-position: center top;
	background-size: cover;
}
#home header #overlay-design {
	background-image: url("../images/design-overlay.png");
	min-height: 100%;
	background-position: center top;
	background-size: cover;
}
#home header #overlay-beyond {
	background-image: url("../images/beyond-overlay.png");
	min-height: 100%;
	background-position: center top;
	background-size: cover;
}
#home header .overlay.revealed {
	opacity: 1;
	transition: opacity 0.5s;
}
@media (max-width: 601px) {
	.overlay {
		display: none;
	}
}
#art header,
#design header,
#beyond header {
	height: 200px;
	background-position: center 5%;
	background-width: 100%;
}
#art header {
	background-image: url("../images/wb-starry.jpg");
}
#design header {
	background-image: url("../images/design-banner.jpg");
	background-position: center 40%;
	background-width: 100%;
}
#beyond header {
	background-image: url("../images/beyond.jpg");
}
header+section {
	margin-top: -48px !important;
}

/* Art ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
#art section p {
	text-align: justify;
}
#art #electronic,
#art #whiteboard {
	background-color: #feefed;
	color: rgba(0,0,0,0.9);
}

/* Design ~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
#design section p {
	text-align: justify;
}
#design #dtn,
#design #ncr {
	background-color: #feefed;
	color: rgba(0,0,0,0.9);
}

/* Foot ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
footer {
	background: #0c0504;
	color: #fff;
}
footer p {
	line-height: 1.5;
	opacity: 0.6;
}
footer a {
	color: #f8afa3;
}
#footliner {
}
#signature img {
	width: 6rem;
}
#copyright {
	font-size: smaller;
}

/* Modals ~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
.work {
	padding: 0.6rem;
}
.work>img,
.work>video {
	max-width: 100%;
	box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
.modal-thumb {
	cursor: pointer;
}
.modal-thumb:hover {
	box-shadow: 0 0 20px rgba(0,0,0,0.2);
}
.modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 1; /* Sit on top */
	padding-top: 50px; /* Location of the box */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}
.modal-image {
	margin: auto;
	display: block;
	max-width: 75%;
	max-height: 75%;
}
.modal-caption {
	margin: auto;
	display: block;
	width: 80%;
	max-width: 700px;
	text-align: center;
	color: #ccc;
	padding: 10px 0;
	height: 150px;
}
.modal-caption p {
	font-size: 14px;
	line-height: 1.4;
	text-align: center !important;
}
.modal-image, .modal-caption {
	animation-name: zoom;
	animation-duration: 0.25s;
}
@keyframes zoom {
	from { transform:scale(0); }
	to   { transform:scale(1); }
}
.modal-close {
	position: absolute;
	top: 15px;
	right: 35px;
	color: #f1f1f1;
	font-size: 40px;
	font-weight: bold;
	transition: 0.3s;
}
.modal-close:hover,
.modal-close:focus {
	color: #bbb;
	text-decoration: none;
	cursor: pointer;
}
/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
	.modal-content {
		width: 100%;
	}
}
