@charset "UTF-8";
/* CSS Document */
:root {
	font-size: 16px;
	font-family: 'karla';
	--text-primary: white;
	--text-secondary: darkgrey;
	--bg-primary: #161720;
	--bg-secondary: #141418;
}

body {
	background-color: black;
	margin: 0;
	padding: 0;
}

p {
	margin: 0;
	padding: 0;
}

a {
  color: inherit; /* blue colors for links too */
  text-decoration: inherit; /* no underline */
}

body::-webkit-scrollbar {
	display: none;
}

main {
 margin-bottom: 5rem;
}

/* nav */

.navbar {
	background-color: var(--bg-secondary);
	height: 5rem;
	width: 100vw;
	position: fixed;
	bottom: 0;
	z-index: 999999;
}

.navbar-nav {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;

}

.nav-item {
	height: 100%;
	width: 6rem;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.nav-link{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 6rem;
	height: 5rem;
	color: var(--text-primary);
	text-decoration: none;
	transition: background-color 600ms ease;
	
}

.nav-link:hover {
	background-color:rgba(0,42,115,1.00);
}


.logo-link{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 5rem;
	color: var(--text-primary);
	text-decoration: none;
}

.navbar .fas {
	color: darkgrey;
	margin-top: 1.25rem;
	transition: color 600ms, margin 600ms ease;
}

.link-text {
	visibility: hidden;
	opacity: 0;
	margin-top: 0.25rem;
	text-transform: uppercase;
	transition: color 600ms, visibility 0s, opacity 600ms ease;
}

.nav-item:hover .fas {
	margin-top: 0;
	color: white;
}


.nav-item:hover .link-text{
	visibility: visible;
	opacity: 1;
	color: white;

}



.navbar-nav .logo {
	margin-right: auto;
}

.navbar-nav .logo {
	display: flex;
}

.navbar-nav .logo img {
	height: 3rem;
	padding: 0rem 2rem;
}

/* MEDIA */

@media(max-width:625px) {
	.navbar .logo {
		display: none;
	}
	
	.nav-item {
	width: 100%;
	justify-content: center;
	}
	
	.nav-link {
	width: 100%;	
	}
	
	.nav-link:hover {
		background-color: var(--bg-secondary);
	}
	
}

/*end nav*/







/*home*/

#home {
	align-items: center;
	background-color: var(--bg-primary);
    background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../img/mine_v01.png");
    background-image: -o-linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../img/mine_v01.png");
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../img/mine_v01.png");
	background-position: center;
    background-size: cover; 
    display: flex;
	flex-direction: column;
	justify-content: center;
    height: 100vh;
}

.home-logo {
	width: 60rem;
	animation: fadeInLogo ease 4s;
	-webkit-animation: fadeInLogo ease 4s;
	-moz-animation: fadeInLogo ease 4s;
	-o-animation: fadeInLogo ease 4s;
	-ms-animation: fadeInLogo ease 4s;
}

@keyframes fadeInLogo {
0% {opacity:0;}
100% {opacity:1;}
}

@-moz-keyframes fadeInLogo {
0% {opacity:0;}
100% {opacity:1;}
}

@-webkit-keyframes fadeInLogo {
0% {opacity:0;}
100% {opacity:1;}
}

@-o-keyframes fadeInLogo {
0% {opacity:0;}
100% {opacity:1;}
}

@-ms-keyframes fadeInLogo {
0% {opacity:0;}
100% {opacity:1;}
}

#home .fas{
	margin-top: 1rem;
	color: white;
	animation: fadeInIcon ease 4s;
	-webkit-animation: fadeInIcon ease 4s;
	-moz-animation: fadeInIcon ease 4s;
	-o-animation: fadeInIcon ease 4s;
	-ms-animation: fadeInIcon ease 4s;
	transition: color 600ms ease;
}

@keyframes fadeInIcon {
0% {opacity:0;}
75% {opacity:0;}
100% {opacity:1;}
}

@-moz-keyframes fadeInIcon {
0% {opacity:0;}
75% {opacity:0;}
100% {opacity:1;}
}

@-webkit-keyframes fadeInIcon {
0% {opacity:0;}
75% {opacity:0;}
100% {opacity:1;}
}

@-o-keyframes fadeInIcon {
0% {opacity:0;}
75% {opacity:0;}
100% {opacity:1;}
}

@-ms-keyframes fadeInIcon {
0% {opacity:0;}
75% {opacity:0;}
100% {opacity:1;}
}

#home .fas:hover{
	color: rgba(83,83,83,1.00);
}



@media(max-width:1035px) {
	.home-logo {
		width: 50rem;
	}
}

@media(max-width:850px) {
	.home-logo {
		width: 40rem;
	}
}

@media(max-width:676px) {
	.home-logo {
		width: 30rem;
	}
}

@media(max-width:520px) {
	.home-logo {
		width: 25rem;
	}
}

@media(max-width:420px) {
	.home-logo {
		width: 20rem;
	}
}

@media(max-width:335px) {
	.home-logo {
		width: 17rem;
	}
}


/*end home*/










#reel {
align-items: center;
background-color: var(--bg-primary);
display: flex;
	flex-direction: column;
height: 100vh;
justify-content: center;
color: var(--text-primary);
font-size: 1.5rem;
}

#reel p {
	padding-bottom: 2rem;
	text-align: center;
}

.video-container {
    position: relative;
  overflow: hidden;
  width: 50%;
  padding-top: 28.13%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
	z-index: 0;
}





#gallery {
	background-color: black;
		background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("../img/bg/gallery_bg_BA.png");
	 background-repeat: no-repeat;
    background-position: center;
    background-size: cover; 
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.poster-container {
	display: flex;
	flex-wrap: wrap;
}

 figure {
	margin: 1rem;
	padding: 0;
	 display: flex;
	 flex-direction: column;
	 align-items: center;	 
}

figcaption {
	color: darkgray;
	text-transform: uppercase;
	font-size: 1.5rem;
	margin-top: 1rem;
}

figure p {
	color: darkgray;
	
}

#gallery figure img{
	width: 300px;
}

@media(max-width:1991px) {
	
	.poster-container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
	#gallery figure img{
	width: 250px;
}
	 figure {
	margin: 0.5rem; 
}
}

@media(max-width:1144px) {
	
	.poster-container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
	#gallery figure img{
	width: 250px;
}
	 figure {
	margin: 0.5rem;

	 
}
	
}

@media(max-width:1035px) {
	
	.poster-container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
	#gallery figure img{
	width: 250px;
}
	 figure {
	margin: 0.5rem;
	 
}
}

@media(max-width:850px) {
	
	.poster-container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
	#gallery figure img{
	width: 200px;
}
	 figure {
	margin: 0.5rem;

	 
}
	figcaption{
		font-size: 1.25rem;
	}
}

@media(max-width:676px) {
	
	.poster-container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
	#gallery figure img{
	width: 190px;
}
	 figure {
	margin: 0.5rem;

	 
}
	figcaption{
		font-size: 1.25rem;
	}
}

@media(max-width:619px) {
	
	.poster-container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
	#gallery figure img{
	width: 150px;
}
	 figure {
	margin: 0.5rem;

	 
}
	figcaption{
		font-size: 1rem;
		margin-top: 0.5rem;
	}
}

@media(max-width:520px) {
	
	.poster-container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
	#gallery figure img{
	width: 140px;
}
	 figure {
	margin: 0.5rem;

	 
}
	figcaption{
		font-size: 1rem;
		margin-top: 0.5rem;
	}
}

@media(max-width:420px) {
	
	.poster-container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
	#gallery figure img{
	width: 140px;
}
	 figure {
	margin: 0.5rem;

	 
}
	figcaption{
		font-size: 0.85rem;
		margin-top: 0.5rem;
	}
}

@media(max-width:335px) {
	
	.poster-container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
	#gallery figure img{
	width: 120px;
}
	 figure {
	margin: 0.5rem;

	 
}
	figcaption{
		font-size: 0.85rem;
		margin-top: 0.5rem;
	}
}






#about {
	height: 100vh;
	background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../img/me_about.jpg");
	 background-repeat: no-repeat;
    background-position: center;
    background-size: cover; 
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.bio p {
	font-family: 'karla';
	color: white;
	font-size: 1.2rem;
}


.bio {
	background-color: rgba(0,0,0,0.80);
	width: 600px;
	height: 430px;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.bio-pic img {
	display: flex;
	height: 494px;
	width: 494px;
	object-fit: cover;
	object-position: 75% 50%;
	margin: 0;
	padding: 0;
}

.resume {
	font-family: 'karla';
	display: flex;
	background-color: rgba(0,42,115,0.50);
	box-shadow: inset 0px 0px 0px 3px rgba(0,42,115,1.00);
	border: none;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	margin-top: 2rem;
	height: 3.5rem;
	width: 9.5rem;
	padding: 1rem;
	color: darkgray;
	transition: color 600ms, background-color 600ms ease;
}

.resume:hover{
	color: white;
	background-color: rgba(0,42,115,1);
}

.resume span {
	font-size: 1.25rem;
	text-decoration: none;
	text-transform: uppercase;
	
}

@media(max-width:1205px) {
		#about {
		display: flex;
		flex-wrap: nowrap;
		flex-direction: row;
		align-items: center;
		justify-content: center;
	}
	
	.bio-pic img {
		width: 475px;
		height: 475px;
	}

.bio {
		background-color: rgba(0,0,0,0.50);
		width: 400px;
		height: 411px;
	}

	.bio p {
	font-family: 'karla';
	color: white;
	font-size: 1.1rem;
}
	.resume {
	height: 3rem;
	width: 7rem;
	padding: 1rem;
	transition: color 600ms, background-color 600ms ease;
}
}

@media(max-width:1035px) {
		#about {
		display: flex;
		flex-wrap: nowrap;
		flex-direction: row;
		align-items: center;
		justify-content: center;
	}
	
	.bio-pic img {
		width: 375px;
		height: 375px;
	}

.bio {
		background-color: rgba(0,0,0,0.50);
		width: 400px;
		height: 311px;
	}

	.bio p {
	font-family: 'karla';
	color: white;
	font-size: 0.95rem;
}
	.resume {
	
	height: 3rem;
	width: 7rem;
	padding: 1rem;
	transition: color 600ms, background-color 600ms ease;
}
}


@media(max-width:850px) {
	
	#about {
		display: flex;
		flex-wrap: nowrap;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	
	.bio-pic img {
		display: none;
	}
	.bio {
		background-color: rgba(0,0,0,0.50);
		width: 75vw;
		height: 65vh;
	}
	

	
	.bio p {
	font-family: 'karla';
	color: white;
	font-size: 1rem;
}
}


/*Contact FORM*/



#contact {
	background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), url("../img/bg/gallery_bg_SP.png");
	 background-repeat: no-repeat;
    background-position: center;
    background-size: cover; 
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

#contact h2 {
	color: darkgray;
	padding: 1rem 2rem;
	text-align: center;
}

#contact p {
	color: darkgray;
	padding: 1rem 2rem;
	text-align: center;
}

#contact a:hover {
	color: darkgray;
	transition: color 500ms ease;
}

#contact a:hover {
	color: white;
}

.contact-container{
	flex-direction: column;
	background-color: rgba(30,30,30,0.67);
	width: 30%;
	padding: 20px 30px;
}

input {
	font-family: Karla, sans-serif;
	background: black;
	color: white;
	font-size: 15px;
  width: 100%;
  padding: 12px 10px;
  margin: 8px 0;
  box-sizing: border-box;
  border: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  outline: none;
}

input:focus {
	box-shadow: inset 0px 0px 0px 3px rgba(0,42,115,1.00);
}

textarea {
	background: black;
	color: white;
	font-size: 15px;
	font-family: Karla, sans-serif;
  	width: 100%;
	height: 200px;
	padding: 12px 10px;
	margin: 8px 0;
	box-sizing: border-box;
	border: none;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	outline: none;
	resize: none;
}

textarea:focus {
  box-shadow: inset 0px 0px 0px 3px rgba(0,42,115,1.00);
}

button{
	width: 120px;
	float: right;
		font-size: 15px;
	font-weight: 100;
	letter-spacing: 0.15em;
	text-transform: uppercase;
  padding: 12px 10px;
	border: none;
	background-color: rgba(0,42,115,0.50);
	box-shadow: inset 0px 0px 0px 3px rgba(0,42,115,1.00);
	color: lightgray;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

button:hover, button:focus {

	background-color: rgba(0,42,115,1.00);
	color: white;
	cursor: pointer;
}

button:active {
  opacity: 1;
  box-shadow: inset 0px 0px 0px 3px rgba(0,42,115,1.00);
}

/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: none;
  -webkit-text-fill-color: white;
  -webkit-box-shadow: inset 0px 0px 0px 3px rgba(0,42,115,1.00);
  transition: background-color 5000s ease-in-out 0s;
}

.fa-linkedin {
	color: darkgrey;
	font-size: 45px;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}


.fa-linkedin:hover {
	color: white;
}

.fa-imdb {
	color: darkgrey;
	font-size: 45px;
	margin-left: 0.25rem;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

.fa-imdb:hover {
	color: white;
}

.success, .error {
	font-family: Karla, sans-serif;
	font-size: 15px;
	padding: 0.75em;
}

.success {
   margin-bottom: 0.75rem;
  color: rgba(0,190,17,1.00);
  border: 3px solid rgba(0,190,17,1.00);
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
}

.error {
    margin-bottom: 0.75rem;
  color: rgba(190,0,3,1.00);
  border: 3px solid rgba(190,0,3,1.00);
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
}

.copyright {
	margin-top: 30px;
	font-size: 1em;
}

.hide-robot{
	display:none;
}

@media(max-width:1400px) {
	.contact-container{

	width: 50%;
	padding: 20px 20px;
}
}

@media(max-width:1035px) {
	.contact-container{

	width: 70%;
	padding: 20px 20px;
}
}

@media(max-width:850px) {
	.contact-container{

	width: 80%;
	padding: 10px 20px;
}
}

@media(max-width:676px) {
	.contact-container{

	width: 80%;
	padding: 10px 20px;
}
}

@media(max-width:520px) {
	.contact-container{

	width: 80%;
	padding: 10px 20px;
}
}

@media(max-width:420px) {
	.contact-container{

	width: 80%;
	padding: 10px 20px;
}
}

@media(max-width:335px) {
	.contact-container{

	width: 80%;
	padding: 10px 10px;
}
	}


/*End Contact Form*/