@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;900&family=Stalinist+One&display=swap');

html {
	scroll-behavior: smooth;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Montserrat', sans-serif;
}

.btnStyle {
	padding: 8px 8px;
	font-size: 16pt;
	background-color: #67b389;
	background-color: rgba(0, 0, 0, 0.2);
	border: 3px solid #eee;
	margin-top: 10px;
	margin-right: 10px;
	color: #eee;
	font-weight: 600;
	cursor: pointer;
	border-radius: 5px;
}

.nestedLink {
	color: #eee;
	text-decoration: none;
}

.btnStyle:hover {
	background-color: rgba(0, 0, 0, 0.3);
	border: 3px solid #67b389;
}

.light {
	font-weight: 300;
}
.reg {
	font-weight: 400;
}
.semi {
	font-weight: 600;
}
.fat {
	font-weight: 900;
}

.container {
	width: 100vw;
	height: 100vh; /* Use vh as a fallback for browsers that do not support Custom Properties */
  	height: calc(var(--vh, 1vh) * 100);
	overflow: hidden;
}

main {
	height: 100%;
	width: 100%;
}

#cta {
	/* display: none; */
	max-width: 800px;
	min-width: 320px;
	margin: 0 60px;
	z-index: 10;
}

.homeMain {
	background: linear-gradient(180deg, rgb(20, 30, 48) 0%, rgb(36, 59, 85) 100%);

	display: flex;
	flex-direction: column;

	justify-content: space-between;
	align-items: center;
	opacity: 0;
}

/* SVG Styles */

.asterisk {
	opacity: 0;
}

#tapText {
	opacity: 0;
}

#cta-svg, .asterisk, #avatar, #userProfileText, #personInfo, #login, #titleBanner, .bootTextChar, .usernameChar, .passwordChar {
	opacity: 0;
}

.mainArticle {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 20px 0;
	opacity: 0;

	position: relative;
}

.vanityCircle {
	position: absolute;
	width: 75px;
	height: 75px;
	border: 1px solid #67b389;
	border-radius: 75px;
	top: 37px;
	z-index: -1;
}

#aboutCircle {
	top: 0;
}

.heroText {
	text-align: center;
	color: white;
	opacity: 0;
}

#hello {
	font-size: 36pt;
}

#me {
	color: #67b389;
}

.btnText {
	color: white;
	margin: 10px 0;
	font-size: 10pt;
}

.mainBtn {
	width: 75px;
	height: 75px;
	border-radius: 75px;
	border: 1px solid #67b389;

	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.mainBtn i {
	font-size: 16pt;
	color: #67b389;
}

.mainBtn:hover {
	background-color: #67b389;
}

.mainBtn:active {
	box-shadow: inset 0px 0px 10px 2px rgba(0, 0, 0, 0.35);
}

.mainBtn:hover i {
	color: #243b55;
}

/* **************************** */
/* ******** Works Page ******** */
/* **************************** */

.mobileNav, .mobileWorksMenu{
	display: none;
}

#logo {
	height: 30px;
}

.worksMain {
	width: 100%;
	height: 100vh;
	opacity: 0;
	display: grid;
	grid-template-columns: 100%;
	grid-template-rows: auto;

	position: relative;
}

.worksNav {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	z-index: 10;
	background-color: #333;
	min-height: calc(100vh - 50px);
	max-height: calc(100% - 50px);
	max-width: 160px;
	width: 160px;

	/* justify-content: center; */
	align-items: center;
	text-align: center;
	border-right: 2px solid #eee;
	box-shadow: inset -10px 0px 15px -3px rgba(0, 0, 0, 0.45);
	margin-top: 50px;
	
	font-weight: bolder;
	overflow-y: auto;
	overflow-x: hidden;

	/* Scrollbar */

	scrollbar-width: auto;
	scrollbar-color: #eee #333333;
}
/* Chrome, Edge, and Safari */

.worksNav::-webkit-scrollbar {
	width: 2px;
}

.worksNav::-webkit-scrollbar-track {
	background: #333333;
	border-radius: 0px;
}

.worksNav::-webkit-scrollbar-thumb {
	background-color: #eee;
	border-radius: 0px;
	border: 0px solid #eee;
}


.worksNavEntry {
	font-size: 36pt;
	/* padding: 0 25px; */
	width: 160px;
	padding-right: 3px;
	margin: 10px 0;
	cursor: pointer;
	border-top: 1px solid #333;
	border-bottom: 1px solid #333;

	/* font-family: Arial, Helvetica, sans-serif !important; */
	font-family: 'Stalinist One', cursive !important;
}

.selectedEntry {
	background-color: #67b389;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
	color: #eee;
}

.worksNavEntry:hover {
	/* background-color: #eee; */
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
	color: #eee;
}

.backHome {
	position: absolute;
	background-color: #909090;
	width: 160px;
	height: 50px;
	border-right: 2px solid #eee;
	border-bottom: 2px solid #eee;

	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 12;

	/* top: 0px;
	left: calc(50% - 40px); */
	font-size: 20pt;
	padding: 0 5px 5px 0;
	opacity: 0;
	user-select: none;
	cursor: pointer;
}

.backHome:hover {
	background-color: #ccc;
	box-shadow: 0 5px 10px 1px rgba(255, 255, 255, 0.1);
	color: #67b389;
}

.covers {
	position: absolute;
	height: 100vh;
	width: calc(100% - 160px);
	z-index: 3;
	display: flex;
	justify-self: flex-end;
	overflow: hidden;
	font-family: 'Jura', sans-serif !important;
}

.leftCover, .rightCover {
	/* background: linear-gradient(180deg, rgb(20, 30, 48) 0%, rgb(36, 59, 85) 100%); */
	background-color: #333;
	width: 50%;
	height: 100vh;
	color: #67b389;
	font-size: 36pt;
	text-shadow: 0px 2px 0px rgba(0,0,0,.5); /* 50% white from bottom */
	font-weight: 700;

	display: flex;
	align-items: center;
	font-family: 'Jura', sans-serif;
}

.leftCover {
	border-right: 10px solid #67b389;
	justify-content: flex-end;
	padding-right: 20px;
}

.rightCover {
	border-left: 10px solid #67b389;
	justify-content: flex-start;
	padding-left: 20px;
}

.selectedProjectHolder {
	width: 100%;
	/* height: 100%; */
	min-height: 100vh;
	max-height: 100%;
	background-color: #aaa;

	/* display: none; */
	flex-direction: column;
	justify-self: flex-end;
	overflow-y: auto;
	padding-left: 160px;
}

.selectedProjectTitleHolder {
	width: 100%;
	background-color: #67b389;
	/* background: linear-gradient(90deg, rgb(20, 30, 48) 0%, rgb(36, 59, 85) 100%); */
	align-items: center;
	padding: 20px 0;
	color: white;
	position: relative;
}

#selectedProjectTitle {
	text-align: center;
	font-size: 24pt;
}

.linkBtn {
	position: absolute;
	width: 80px;
	height: 40px;
	background-color: #FFAC7A;
	top: 30px;
	left: 30px;
	display: grid;
	place-content: center;
	font-size: 16pt;
	user-select: none;
	cursor: pointer;
	border-radius: 10px;
	color: white;
	text-decoration: none;
}

.linkBtn:hover {
	box-shadow: inset 0 0 10px 2px rgba(0, 0, 0, 0.3);
	border: 1px solid #999;
}

.linkBtn:active {
	border: 2px inset #ccc;
}

.selectedProjectContentHolder {
	/* display: flex; */
	width: 100%;
}

.selectedProjectInfoHolder {
	width: 100%;
	background-color: #67b38980;
	background-color: #999;
	display: grid;
	grid-template-columns: 1fr 100px 1fr;
	box-shadow: inset 0 0 10px 3px rgba(0, 0, 0, 0.25);
}

.aboutProject {
	color: #333;
	padding: 20px 0 20px 20px;
}

#selectedProjectAbout {
	padding-left: 0;
}

.techUsed {
	color: #333;
	padding: 20px 20px 20px 0px;
}

.infoHolderHeading {
	width: 100%;
	border-bottom: 1px solid #333;
	/* padding-left: 30px; */
	text-align: right;
	text-transform: uppercase;
	color: #333;
	font-size: 24pt;
}

#overviewHeading {
	text-align: left;
}

.infoHolderText {
	padding: 5px 20px;
	font-size: 14pt;
}

.infoDivider {
	writing-mode: vertical-lr;
	/* text-orientation: upright; */
	font-size: 16pt;
	background-color: #333;
	display: grid;
	place-content: center;
	color: white;
	/* border-radius: 0 0 10px 10px; */
	text-transform: uppercase;
	padding: 25px 0;
}

.selectedProjectGalleryHolder {
	width: 100%;
	background-color: #aaa;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	position: relative;
}

.selectedProjectGalleryHolder h3 {
	font-size: 16pt;
	color: #333;
	text-transform: uppercase;
	font-weight: bolder;
	align-self: flex-start;
	margin: 30px;
	padding: 7px 10px;
	border-radius: 10px;
	background-color: #ccc;
}

.slideshowContainer {
	width: 60%;
	font-size: 0;
	position: relative;
	/* margin: 0px 0 50px 0; */
	/* box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.2); */
	border-radius: 5px;
}

/* .previewProject {
	font-size: 12pt;
	background-color: rgb(74, 137, 153);
	width: 80px;
	height: 40px;
	right: 0;
	top: 0;
	position: absolute;
	z-index: 2;
	border-radius: 0 4px 0 5px;

	display: flex;
	justify-content: center;
	align-items: center;
} */

.prevImg, .nextImg {
	position: absolute;
	width: 40px;
	height: 40px;
	background-color: rgba(0, 0, 0, 0.25);
	z-index: 2;
	color: white;
	font-size: 24pt;
	display: grid;
	place-content: center;
	cursor: pointer;
	user-select: none;
	border-radius: 100%;
}

.prevImg:hover, .nextImg:hover {
	background-color: rgba(0, 0, 0, 0.75);
}

.prevImg {
	top: calc(50% - 20px);
	left: -80px;
	padding-right: 4px;
}

.prevImg:hover i {
	color: #67b389;
}

.nextImg {
	top: calc(50% - 20px);
	left: calc(100% + 40px);
	padding-left: 4px;
}

.nextImg:hover i {
	color: #67b389;
}

.gallerySlide {
	width: 100%;
}

.gallerySlide img {
	width: 100%;
	border-radius: 5px;
}

.gallerySlide video {
	width: 100%;
	border-radius: 5px;
	padding: 60px;
}


/* **************************** */
/* ******** About Page ******** */
/* **************************** */

.aboutMain {
	position: relative;
	background: linear-gradient(180deg, rgb(20, 30, 48) 0%, rgb(36, 59, 85) 100%);
	border-bottom: 10px solid #67b389;
	opacity: 0;
}


.aboutMe {
	display: grid;
	grid-template-columns: 50% 50%;
	grid-template-rows: auto;

	max-width: 1280px;
	margin: 0 auto;
	padding: 100px 0 125px 0;
}

.infoHolder {
	padding: 30px 0 0 50px;
	grid-column: 1 / 2;
	/* background-color: rgba(255, 255, 255, 0.1); */
	color: #eee;
}

.pictureArea {
	grid-column: 2 / 3;
	display: flex;
	justify-content: center;
}

.contactCTA {
	grid-column: 1 / 3;
}

#greenSpan {
	color: #67b389;
}

#nameHeading {
	font-size: 36pt;
	margin-bottom: 10px;
}

#about {
	font-size: 14pt;
	line-height: 1.4;
}

#me {
	background-color: gray;
	border-radius: 200%;
	width: 50%;
	min-width: 300px;
	box-shadow: inset 0 0 10px 5px rgba(0, 0, 0, 0.35);
}

#contact a{
	color: #eee;
	text-decoration: none;
}

.skillsSection {
	opacity: 0;
}

.skills {
	max-width: 1280px;
	margin: 0 auto;
}

.headingStyle {
	color: #eee;
	background-color: #333;
	padding: 15px 0;
	width: 320px;
	text-align: center;
	margin-top: -54px;
	left: calc(50% - 160px);
	z-index: 20;
	font-size: 36pt;
	position: absolute;

	border: 5px solid #67b389;
	border-radius: 5px;
	/* box-shadow: 0 10px 10px 5px rgba(0, 0, 0, 0.25); */
}

.skillsHolder {
	display: flex;
	flex-wrap: wrap;
	padding: 40px 0 80px 0;
	justify-content: center;
}

.skillEntry {
	display: grid;
	grid-template-columns: 1fr;
	justify-items: center;
	align-items: flex-end;
	margin: 30px 60px;
	width: 130px;
}

.skillEntry p {
	font-size: 14pt;
	font-weight: 600;
	color: #333;
}

#html5 {
	color: #e54c21;
}
#css3 {
	color:#264de4;
}
#js6 {
	color: #efd81e;
}

.skillEntry i {
	font-size: 60pt;
}

.skillEntry img {
	width: 75px;
}

.contactContainer {
	max-width: 1280px;
	margin: 0 auto;
}

.contactSection {
	border-top: 10px solid #67b389;
	background: linear-gradient(180deg, rgb(20, 30, 48) 0%, rgb(36, 59, 85) 100%);
	opacity: 0;
}

form {
	margin: 0 auto;
	width: 50%;
	padding: 60px 0 30px 0;
}

#contactFormPara {
	/* margin-top: 75px; */
	color: white;
	font-size: 16pt;
	font-weight: 600;
	margin: 20px auto;
}

label {
	color: #aaa;
	text-transform: uppercase;
	font-size: 8pt;
}

input {
	margin: 5px auto 20px auto;
	padding: 5px;
	font-size: 16pt;
	width: 100%;
	border-radius: 5px;
	border: none;
	outline: 2px solid #aaa;
}

input:focus {
	outline: 3px solid #67b389;
}

textarea {
	width: 100%;
	margin: 5px auto 20px auto;
	font-size: 16pt;
	padding: 5px;
	resize: none;
	border: none;
	outline: 2px solid #aaa;
	border-radius: 5px
}

textarea:focus {
	outline: 3px solid #67b389;
}

#confMsg {
	display: none;
	padding: 10px 8px;
	margin: 0px auto 20px;
	border-radius: 5px;
	color: #333;
}

.confSuccess {
	background-color: lightgreen;
	width: 100%;
}

.confFail {
	background-color: rgb(238, 144, 144);
	color: #333;
	width: 100%;
}

#submit {
	width: 100%;
	border-radius: 5px;
	margin-top: 0px;
}


/** MEDIA QUERIES */

@media only screen and (max-width: 1280px) {
	.infoHolder {
		grid-column: 1 / 3;
		order: 2;
		padding: 30px 50px;
	}

	.pictureArea {
		grid-column: 1 / 3;
		order: 1;
	}

	#me {
		width: 25%;
		min-width: 300px;
	}
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
	.infoDivider {
		writing-mode: horizontal-tb;
		order: -1;
		padding: 10px;
	}

	.selectedProjectInfoHolder {
		display: flex;
		flex-direction: column;
	}

	.slideshowContainer {
		width: 75%;
	}
}

@media only screen and (max-width: 1024px) {
	form {
		width: 90%;
	}
}

@media only screen and (max-width: 768px) {
	.covers {
		width: 100%;
	}
	
	.mobileNav{
		display: block;
	}

	.backHome {
		width: 50px;
		border-radius: 0 0 0 0;
		padding: 0px;
		box-shadow: none;
	}

	.linkBtn {
		top: 15px;
		left: 15px;
	}

	.mobileNav {
		background-color: #333;
		height: 50px;
		color: white;
		width: 100%;
		padding-left: 50px;
		display: flex;
		justify-content: center;
		font-size: 16pt;
		align-items: center;
		cursor: pointer;
		position: sticky;
		z-index: 2;
		border-bottom: 2px solid #eee;
	}

	.mobileMenuHeader {
		display: grid;
		grid-template-columns: 1fr 60px;
		align-items: center;
		justify-items: center;
		padding: 15px;
		width: 100%;
		border-bottom: 1px solid #eee;
	}

	.mobileMenuHeader p {
		font-size: 18pt;
		color: #eee;
		padding-left: 50px;
	}

	.mobileMenuHeader i {
		font-size: 24pt;
		color: #eee;
	}

	.mobileWorksMenu {
		width: 100%;
		height: 100vh;
		overflow-y: auto;
		background-color: #333;
		z-index: 20;
		display: flex;
		flex-direction: column;
		display: none;
		align-items: center;
		position: absolute;
	}

	.worksNavEntry {
		width: 100%;
		text-align: center;
	}

	#slideVid {
		padding: 10px;
	}

	.mobileNav i {
		padding-top: 0px;
		margin-right: 5px;
		font-size: 18pt;
		color: #67b389;
	}
	
	.selectedProjectHolder {
		padding-left: 0px;
		min-height: 100%;
		/* padding-top: 50px; */
	}

	.slideshowContainer {
		width: 90%;
		margin: 50px 0 10px 0;
	}

	.nextImg {
		left: calc(100% - 35px);
	}

	.prevImg {
		left: -5px;
	}

	.infoDivider {
		writing-mode: horizontal-tb;
		order: -1;
		padding: 10px;
	}

	.selectedProjectInfoHolder {
		display: flex;
		flex-direction: column;
	}

	.worksNav {
		display: none;
	}
	
	.aboutProject {
		padding: 20px 0 0 20px;
	}

	#selectedProjectAbout {
		padding: 5px 20px 5px 0;
	}

	#selectedProjectTech {
		padding: 5px 20px 0px 20px;
	}

	/* About Page */
	.skillEntry {
		margin: 30px;
		width: 100px;
	}
}