@charset "utf-8";

/*--- Nav Color Change ---*/
.black {
	background:black !important;
	transition: 0.4s;
	transition: all;
	width: 100%;
	height: 100%;	
}

/*--- Styling for navigation text ---*/
#logoLoad, .menu-name  {
	justify-content: center;
	align-items: center;
	text-align: center;
	font-weight: 700;
	color: #D3D3D3;
	display: flex;
	position: relative;
	padding-top: 37px;
	text-decoration: none;
	transition: 0.5s;
}

/*--- Drop-Down Formatting ---*/
.menu-container {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: flex-start;
	opacity: 0;
	position: fixed;
	top: -1000100px;
	z-index: 115;
	background-color: rgba(0,0,0,.9);
	min-height: 800px;
}

.active {
	opacity: 1;
	top: 100px;
	transition-property: opacity;
	transition-duration: 0.25s;
	transition-timing-function: ease-out;
	transition-delay: 0s;
}

/*--- Navigation Hover Text Change ---*/
.menu-box:hover .menu-name, .logo:hover .menu-name{
	color: white;
	transition: .5s;
}

/* --- Styling for Background ---*/
#background {
	width: 100%;
	height: auto;
}

body {
	background-color: #2B2B2B;
}

.background-image {
	overflow: hidden;
	height: 100%;
	width: 100%;
	transition: 0.25s;
	background-repeat: no-repeat;
	background-size: cover;
}

.background-toggle {
	overflow: none;
	height: 100%;
	width: 100%;
	transition: 0.25s;
	background-repeat: no-repeat;
	background-size: cover;
}

.tile {
    height: 45%;
    justify-content: center;
    align-items: center;
    position: relative;
    display: inline-block;
    width: 23.5%;
    margin: 0.5%;
    text-align:center;
    vertical-align:middle;
    min-height: 90px;
    transition: 0.25s;
    transition-property: all;
    opacity: 0;
}

.tile-name {
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 700;
    color: #D3D3D3;
    display: flex;
    position: relative;
    justify-content: center;
    vertical-align: middle;
    align-items: center;
    text-decoration: none;
    top: 37%;
    min-height: 30px;
    opacity: 1;
}
/*--- Mobile Device ---*/
@media (max-width :839px ){

    #header{
        background: transparent;
        transition: 0.4s;
        position: fixed;
        top: 0px;
        width: 100%;
        z-index: 1000;
        height: 70px;
        text-align: center;
    }
    
    .nav{
        height: 100%;
        width: 100%;
        align-items:center;
        justify-content: center;
        position: absolute;
        top: 0;
        left: 0;
        overflow: hidden;
    }
    
    .logo-mobile{
        width: 80px;
        height: 100%;
        justify-content: center;
        align-items: center;
        position: relative;
        text-align: center;
        display: inline-block;
    }
    
    .logo{
        height: 100%;
        justify-content: center;
        align-items: center;
        display: inline-block;
        margin: 0;
        width: 100%;
        transition: 0.4s;
        padding-top: 0px;
    }
    
    .menu-name {
        padding-top: 16px;
        font-size: 25px;
    }
    
    .mobile-menu-toggle{
        position: absolute;
        display: block;
        width: 70px;
        height: 70px;
        align-items: center;
        justify-content: center;
        padding-top: 15px;
        padding-left: 10px;
        right: 0px;
    }
    
    .menu-toggle{
        background-image: url("../images/nav/mobile_logo_gray.png");
        width: 40px;
        height: 40px;
        transition-property: all;
        transition-duration: 0.5s;
        transition-timing-function: ease-out;
        transition-delay: 0s;
    }
    
    .menu-toggle-white{
        background-image: url("../images/nav/mobile_logo_white.png");
        transition-property: all;
        transition-duration: 0.5s;
        transition-timing-function: ease-out;
        transition-delay: 0s;
    }
    
    .menu-container{
        background-color: black;
        justify-content: center;
        display: inline-block;
        position: absolute;
    }
    
    .active{
        top: 70px;
        left: 0px;
    }
    
    .dropdown-box{
        width: 100%;
        height: auto;
        padding-top: 30px;
        display: block;
        text-align: left;
        padding: 20px;
    }
    
    .back-container{
        position: absolute;
        height: auto;
        display: inline-block;
        justify-content:center;
    }
    
    .hide {
        display:none;
        transition: 0.5s;
        transition-property: all;
    }

    .resume-name {
        font-size: 17px;
        padding-top: 0px;
    }

    .mobile-dropdown {
        overflow-y: scroll;
        height: auto;
        min-height: 120%;
        padding-bottom: 40px;
    }

    .tile {
        width: 90%;
        position: center;
        height: 150px;
        padding-left: 10%;
        padding-top: 5px;
    }

}/*--- End of Mobile ---*/
    
    /*--- Desktop View ---*/
    @media (min-width: 840px){
    
    #background {
        width: 100%;
        height: auto;
    }
        
    /*--- Changing Navigation Style Elements ---*/
    #header{
        background: transparent;
        transition: 0.4s;
        position: fixed;
        top: 0px;
        width: 100%;
        z-index: 1000;
        height: 100px;
    }
    
    /*--- Constant Navigation Styling Elements ---*/
    .nav{
        height: 100%;
        width: 100%;
        left: 0;
        top: 0;
        position: absolute;
        z-index: 120;
        overflow: hidden;
    }
    
    /*--- Container for navigation ---*/
    .menu-box, .logo {
        height: 100%;
        justify-content: center;
        align-items: center;
        display: inline-block;
        padding-left: 20px;
        padding-right: 20px;
        min-width: 120px;
        margin: 0;
    }
    
    
    
    /*--- Logo Formatting ---*/
    .logo {
        font-size: 25px;
        width: 230px;
        padding-left: 30px;
        padding-right: 20px;
    }
    
    /*For adding second row double back-container height and
    halve tile height*/
    .back-container {
        width: 100%;
        height: 60%;
        max-height: 500px;
        background: black;
    }
    
    .logo-text {
        padding-top: 26px;
    }
    
    .tile:hover .background-image{
        transform: scale(1.05);
    }
    
    .hide {
        display:none;
        transition: 0.5s;
        transition-property: all;
    }
    
    /* --- Step Down for Nav Spacing ---*/
    @media (min-width : 840px ) and (max-width : 950px ){
        .logo {
            width: 100px;
            padding-left: 10px;
            padding-right: 10px;
        }
        .logo-text{
            padding-top: 10px;
        }
        
    }
} 

    @keyframes fadeIn {
        0% {opacity: 0;}
        100% {opacity: 1;}
    }
    
    .fadeIn {
        -webkit-animation: fadeIn 1s forwards;
        animation: fadeIn 1s forwards;
    }
    
    /*--- Generic Formatting ---*/
    html, body {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
    }
    
    /*--- Link Formatting ---*/
    a, a:link {
        text-decoration: none;
        text-decoration-line: none;
        text-decoration-style: initial;
        text-decoration-color: initial;
        cursor: pointer;
    }
    