/***********************************************
*
*        The main stylesheet for the site. Contains 
*				 commonly used classes across multiple pages.
*        ie. links, buttons, etc.
*
*        Pages with specialized layouts/animations will 
*				 likely have their unique styles stored in their 
*				 actual pages.
*
************************************************/

/* General Styles */

:root {
	--red: #FD4338;
	--grey: #616569;
	--midGrey: #9F9F9F;
	--lightGrey: #F2F2F2;
}
* {
	box-sizing: border-box;
}
body, html {
	position: relative;
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	line-height: 1.5;
	color: var(--grey);
	background-color: #fafafa;
	margin: 0;
	padding: 0;
}
a:link, a:visited {
	color: var(--red);
	text-decoration: none;
	transition: .2s;
}
a:hover {
	color: var(--grey);
	transition: .2s;
}
.blockLink {
	display: block;
	padding: 10px;
	padding-left: 20px;
	padding-right: 20px;
	text-transform: uppercase;
	background-color: #fff;
	font-weight: 700;
	width: fit-content;
	margin: auto;
	margin-top: 20px;
	transition: .3s;
}
.blockLink:hover {
	letter-spacing: 5px;
	transition: .3s;
}
.full {
	width: 100%;
	height: 100vh;
	margin: 0px;
}
.relPos {
	position: relative;
}
.alignRight {
	text-align: right;
}
.alignCenter {
	text-align: center;
}
.alignLeft {
	text-align: left;
}
.alignJustify {
	text-align: justify;
}
.allCaps {
	text-transform: uppercase;
}
.flexStart {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.flexCenter {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.flexJustify {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.flexStretch {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}
.flexWrap {
	flex-wrap: wrap;
}
.flexEven {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
}
.font45 {
	font-size: 45px;
}
.font35 {
	font-size: 35px;
}
.font25 {
	font-size: 25px;
}
.font20 {
	font-size: 20px;
}
.font15 {
	font-size: 15px;
}
.mAuto {
	margin: auto;
}
.m0 {
	margin: 0px;
}
.m10 {
	margin: 10px;
}
.m25 {
	margin: 25px;
}
.m50 {
	margin: 50px;
}
.ml10 {
	margin-left: 10px;
}
.ml25 {
	margin-left: 25px;
}
.ml50 {
	margin-left: 50px;
}
.mr10 {
	margin-right: 10px;
}
.mr25 {
	margin-right: 25px;
}
.mr50 {
	margin-right: 50px;
}
.mt10 {
	margin-top: 10px;
}
.mt25 {
	margin-top: 25px;
}
.mt50 {
	margin-top: 50px;
}
.mb10 {
	margin-bottom: 10px;
}
.mb25 {
	margin-bottom: 25px;
}
.mb50 {
	margin-bottom: 50px;
}
.p0 {
	padding: 0px;
}
.p10 {
	padding: 10px;
}
.p25 {
	padding: 25px;
}
.p50 {
	padding: 50px;
}
.p75 {
	padding: 75px;
}
.pl10 {
	padding-left: 10px;
}
.pl25 {
	padding-left: 25px;
}
.pl50 {
	padding-left: 50px;
}
.pr10 {
	padding-right: 10px;
}
.pr25 {
	padding-right: 25px;
}
.pr50 {
	padding-right: 50px;
}
.pt10 {
	padding-top: 10px;
}
.pt25 {
	padding-top: 25px;
}
.pt50 {
	padding-top: 50px;
}
.pt75 {
	padding-top: 75px;
}
.pb10 {
	padding-bottom: 10px;
}
.pb25 {
	padding-bottom: 25px;
}
.pb50 {
	padding-bottom: 50px;
}
.pb75 {
	padding-bottom: 75px;
}
.w100 {
	width: 100%;
}
.w80 {
	width: 80%;
}
.w75 {
	width: 75%;
}
.w60 {
	width: 60%;
}
.w50 {
	width: 50%;
}
.w45 {
	width: 45%;
}
.w40 {
	width: 40%;
}
.w35 {
	width: 35%;
}
.w33 {
	width: 33%;
}
.w30 {
	width: 30%;
}
.w25 {
	width: 25%;
}
.h100 {
	height: 100%;
}
.h50 {
	height: 50%;
}
.h25 {
	height: 25%;
}
.gap25 {
	gap: 25px;
}
.gap50 {
	gap: 50px;
}
.z0 {
	z-index: 0;
}
.z5 {
	z-index: 5;
}
.z10 {
	z-index: 10;
}
.z25 {
	z-index: 25;
}
.debug {
	border: 1px solid red;
}
/* Navigation */
nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 80px;
	padding: 10px;
	padding-left: 25px;
	padding-right: 25px;
	position: sticky;
	/*top: -80px;*/
	top: 0px;
	left: 0;
	z-index: 25;
	margin-bottom: -80px;
}
#navLogo {
	width: auto;
	height: 35px;
}
#logoLink {
	display: block;
	padding: 5px;
	transition: .2s;
}
#logoLink:hover {
	display: block;
	padding: 5px;
	background-color: var(--red);
	transition: .2s;
}
#navRight {
	display: flex;
	align-items: center;
	justify-content: right;
	gap: 25px;
}
#contactBTN {
	background-color: transparent;
	border: 0px;
	display: block;
	position: relative;
	width: 45px;
	height: 45px;
}
#burgerBTN {
	background-color: #fff;
	border: 0px;
	display: block;
	position: relative;
	width: 45px;
	height: 45px;
}

#contactBTN:hover, #burgerBTN:hover {
	cursor: pointer;
	background-color: var(--red);
}
#emailIcon {
	display: block;
	width: 40px;
	height: 40px;
	position: absolute;
	left: 0px;
	top: 0px;
	transform: translate(7px, -2px);
}
#burgerIcon {
	width: auto;
	height: 35px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	opacity: 1;
	transition: .2s;
}
#burgerBTN:hover #burgerIcon, #burgerBTN:hover #closeIcon {
	filter: brightness(1000%);
}
#closeIcon {
	width: auto;
	height: 35px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: .2s;
}
#navMenu {
	display: block;
	position: fixed;
	top: 0%;
	left: 0%;
	bottom: 0%;
	right: 0%;
	height: 100%;
	width: 100%;
	background-image: url('img/nav-background.jpg');
	background-size: cover;
	background-position: center;
	background-color: #fff;
	z-index: 50;
	transition: .4s;
	border-radius: 0%;
	overflow: hidden;
}
#navMenu.closed {
	border-radius: 100px;
	top: 15px;
	right: 40px;
	left: calc(100% - 25px);
	bottom: calc(100% - 25px);
	width: 0;
	height: 0;
	transition: .2s;
	filter: brightness(500%)
}
#navMenuSocial a {
	display: block;
	transform: scale(1) rotate(0deg);
	transition: .2s;
}
#navMenuSocial a:hover {
	display: block;
	transform: scale(1.5) rotate(10deg);
	transition: .2s;
}
#navMenuTop {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	padding: 10px;
	padding-left: 25px;
	padding-right: 25px;
}
#navMenuLogo a {
	display: block;
	padding: 10px;
	transition: .2s;
}
#navMenuLogo a:hover {
	display: block;
	background-color: #fff;
	padding: 10px;
	transition: .2s;
}
#navBTNS button {
	border: 0px;
	background-color: transparent;
	transition: .2s;
	width: 45px;
	height: 45px;
	text-align: center;
}
#navBTNS button img {
	width: 40px;
	height: 40px;
}
#navBTNS button:hover {
	cursor: pointer;
	background-color: #fff;
	transition: .2s;
}
#navBTN_Close {
	transform: translate(-3px, 3px);
}
#navMenuLinks {
	position: absolute;
	top: 50%;
	right: 5%;
	height: fit-content;
	transform: translateY(-50%);
}
#navMenuLinks a {
	display: block;
	color: var(--grey);
	font-size: 10vh;
	text-align: right;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 700;
	padding: 10px;
	transition: .2s;
}
#navMenuLinks a:hover {
	color: var(--red);
	transition: .2s;
	letter-spacing: 1vw;
}
#navMenuFooter {
	position: absolute;
	bottom: 5%;
	left: 5%;
	width: 90%;
}
#navMenu h3 {
	text-transform: uppercase;
	margin-bottom: 5px;
}

/*     Footer */
footer {
	position: relative;
	width: 100%;
	background-color: #fff;
	padding-left: 5%;
	padding-right: 5%;
	padding-top: 50px;
	padding-bottom: 50px;
}
footer h3 {
	text-transform: uppercase;
}
footer p {
	display: block;
	margin-bottom: 0px;
}
.footerSocialLink {
	display: block;
	width: 40px;
	height: 40px;
	margin-bottom: 25px;
}
.footerSocialLink:hover {
	transform: scale(1.5) rotate(10deg);
	transition: .2s;
}
/*
*
*     Project Pages
*
*/
.splash {
	color: #fff;
	height: 100vh;
	display: block;
	background-color: var(--red);
	background-position: center;
	background-size: cover;
	position: relative;
}
.splash h1 {
	font-size: 5vh;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.splash .wrapper {
	height: fit-content;
	width: 50%;
	position: absolute;
	bottom: 5vw;
	left: 5vw;
	font-size: 20px;
}
.projectSummary {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding-top: 50px;
	padding-bottom: 50px;
	padding-left: 5%;
	padding-right: 5%;
}
.projSummRight h3 {
	text-transform: uppercase;
	margin-bottom: 5px;
	line-height: 1.5;
}
.projSummRight p {
	margin-top: 0px;
	text-transform: uppercase;
}
.fullBleedImage {
	width: 100%;
	margin: 0px; 
	padding: 0px; 
	margin-bottom: -10px;
}
.buttonLinkWhite {
	display: block;
	width: fit-content;
	height: fit-content;
	margin: auto;
	margin-top: 25px;
	font-size: 25px;
	background-color: #fff;
	font-weight: 700;
	padding: 5px;
	padding-left: 10px;
	padding-right: 10px;
	text-transform: uppercase;
}
.buttonLinkWhite:hover {
	letter-spacing: 2px;
}
.pdfContainer {
	height: 55vw;
}
.lappy {
	display: block;
	margin-bottom: -350px;
}

/***************************
*
*   Mobile Shit
*
****************************/

@media screen and (max-width: 800px) {
	#navLogo {
		height: 30px;
		width: auto;
	}
	#burgerBTN {
		width: 35px;
		height: 35px;
	}
	#burgerIcon {
		width: auto;
		height: 30px;
	}
	#closeIcon {
		width: auto;
		height: 30px;
	}
	#navMenu {
		max-width: 100vw;
		max-height: 100vh;
	}
	#navMenuLogoImage,
	#redEmailButton,
	#navBTN_Close {
		height: 30px;
		width: auto;
	}
	#navMenuLinks {
		position: relative;
		top: 150px;
		right: 10px;
		transform: translateY(0%);
	}
	#navMenuLinks a {
		font-size: 50px;
	}
	#navMenuFooter {
		flex-direction: column-reverse;
		justify-content: flex-end;
		gap: 10px;
	}
	#navContact {
		flex-direction: column;
		align-items: flex-end;
		gap: 10px;
		width: fit-content;
		margin-left: auto;
		margin-right: 0px;
	}
	#navMenuSocial {
		margin-left: auto;
		margin-right: 0px;
	}
	
	footer .flexStart {
		flex-wrap: wrap;
		flex-flow: column;
		gap: 15px;
	}
	#footerSocial {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: flex-start;
		flex-flow: row;
		gap: 25px;
	}

	.splash {
		height: 95vh;
		width: 100vw;
		
		display: flex;
		align-items: flex-end;
		justify-content: center;
	}
	.splash .wrapper {
		width: 90%;
	}
	.splash h1 {
		font-size: 35px;
	}
	.splash .wrapper p {
		font-size: 15px;
	}
	.reverseOnMobile {
		flex-direction: column-reverse !important;
	}
	.stackOnMobile {
		flex-direction: column !important;
	}
	.hideOnMobile {
		display: none !important;
	}
	.fullWidthOnMobile {
		width: 100% !important;
		height: auto !important;
	}
	.mobileSpacing {
		margin: 0px !important;
		margin-bottom: 0px !important;
		margin-top: 0px !important;
		margin-left: 0px !important;
		margin-right: 0px !important;
		padding: 25px !important;
		padding-left: 25px !important;
		padding-right: 25px !important;
		padding-top: 25px !important;
		padding-bottom: 25px !important;

	}
	#webDesign h1  {
		margin-top: 0px !important;
	}
	#webDesign a {
		font-size: 20px !important;
		margin-bottom: 25px !important;
	}

	.lappy {
		position: relative !important;
		display: block !important;
		margin: auto !important;
		margin-bottom: -50px !important;
		margin-top: 0px !important;
		width: 100% !important;
	}
	#reachOut h1 {
		font-size: 30px !important;
		line-height: 1.1;
		padding-bottom: 25px;
	}
	#reachOut p {
		font-size: 18px;
		max-width: 85%;
		margin: auto;
	}
	#reachOut a {
		font-size: 22px !important;
	}

	/* Project Pages */
	.projectSummary {
		flex-direction: column-reverse;
		align-items: center;
		justify-content: center;
		gap: 25px;
	}
	.projSummRight, .projSummLeft {
		width: 100%;
	}
}