@charset "UT-8";
/*!
* Sam Stark | Web Development Styles v0.0.1
*/

.fa-link{
	font-size: 1rem;
}

.site-panel{
	position: relative;
	width: 100%;
	max-width: 1080px;
	min-height: 350px;
	float: left;
	margin: 1rem 0;
	border-radius: 8px;
}

.site-panel:before{
	content: '';
	position: absolute;
	z-index: -1;
	top: 20px;
	left: -20px;
	display: inline-block;
	width: 100%;
	height: 100%;
	background-color: #e56db1;
	transform-origin: 50% 50%;
	transform:
		translate(-20px, 20px),
		scale(.95);
	transition: 1s;
}

.site-panel:hover:before{
	top: 10px;
	left: -10px;
	background-color: #009900;
	transition: .5s;
}

.site-panel .flex-grow-1:nth-child(1){
	width: 600px;
	padding: 15px;
	background-color: #000000;
}

.site-panel .flex-grow-1:nth-child(1) h3{
	color: #ffffff;
}

.site-panel .flex-grow-1:nth-child(2){
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: center;
	overflow: hidden;
}

.site-panel p{
	position: relative;
	display: inline-block;
	float: left;
	clear: none;
	width: 50%;
	color: #ffffff;
}

.site-img{
	position: relative;
	display: flex;
	float: left;
	clear: none;
	width: 100%;
	max-width: 550px;
	height: 100%;
}

.site-img:before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	display: inline-block;
	width: 100%;
	height: 600px;
	background-image: linear-gradient(
		90deg,
		rgba(0,0,0,.5),
		rgba(0,0,0,.8)
	);
	pointer-events: none;
	transition: 1s;
}

.site-panel:hover .site-img .svg-inline--fa{
	opacity: 0;
	transition: .5s;
}

.site-img .svg-inline--fa{
	position: absolute;
	z-index: 2;
	display: block;
	width: 100%;
	height: 100%;
	color: #fff;
	transform-origin: 90% 90%;
	transform: scale(.15);
	transition: .25s;
	pointer-events: none;
}

.site-img a{
	margin: 0;
	padding: 0;
}

.site-img img{
  object-fit: cover;
  background-position: top left;
  transition: 2s;
}

.site-panel:hover .site-img:before{
	width: 1%;
	opacity: 0;
	transition: .5s;
}

#sideNav{
	opacity: 0;
	animation: fadeInLeft forwards .5s;
}

.container-fluid{
	opacity: 0;
	animation: fadeInUp forwards 1s;
}

#me,
#skills{
	background: #000;
}

#me .subheading a,
#sites .resume-section-content .subheading a{
	text-decoration: none;
	border-bottom: dotted 3px #ffffff;
}

#sites h2{
	color: #000000;
}

#skills .subheading,
#skills ul{
	color: #ffffff;
	list-style-type: none;
}

#sideNav a{
	background-color: transparent;
	color: #ffffff;
}

#sideNav .navbar-brand .img-profile {
	border: 5px solid #009900;
	box-shadow: 0 5em transparent;
	animation: bounceInDown both 1s;
	animation-delay: 1s;
}

.nav-link.active{
	transition: .5s;
}

.nav-link.active:after{
	content: '';
	position: absolute;
	z-index: 1;
	right: -20px;
	width: 0; 
	height: 0; 
	border-top: 20px solid transparent;
	border-bottom: 20px solid transparent;
	border-left: 20px solid #009000;
	transition: .5s;
}

@media screen and (max-width:800px){
	.site-panel .flex-grow-1:nth-child(1),
	.site-panel .flex-grow-1:nth-child(2){
		width: 100%;
		max-width: none;
	}
	.site-img{
		margin: 10px;
	}
}
