/*
=====================================================================
*   Ceevee v1.0 Layout Stylesheet
*   url: styleshout.com
*   03-18-2014
=====================================================================

   TOC:
   a. General Styles
   b. Header Styles
   c. About Section
   d. Projects Section
   f. Blog Section
   g. Footer

===================================================================== */

/* ------------------------------------------------------------------ */
/* a. General Styles
/* ------------------------------------------------------------------ */

body { background: #0f0f0f; }

/* Pull-to-refresh color override */
html {
   overscroll-behavior: contain;
}

/* Webkit browsers (Safari, Chrome) pull-to-refresh color */
body::-webkit-scrollbar {
   width: 8px;
}

body::-webkit-scrollbar-track {
   background: #f1f1f1;
}

body::-webkit-scrollbar-thumb {
   background: #4A90E2;
   border-radius: 4px;
}

body::-webkit-scrollbar-thumb:hover {
   background: #357ABD;
}

/* Firefox scrollbar color */
body {
   scrollbar-width: thin;
   scrollbar-color: #4A90E2 #f1f1f1;
}

/* Additional pull-to-refresh color overrides for different browsers */
/* iOS Safari specific */
@supports (-webkit-touch-callout: none) {
   /* Override iOS pull-to-refresh colors */
   body::-webkit-scrollbar {
      width: 0;
      background: transparent;
   }
}

/* Chrome/Edge specific */
@supports (-webkit-appearance: none) {
   /* Override Chrome pull-to-refresh colors */
   html {
      overscroll-behavior: contain;
   }
   
   body {
      overscroll-behavior: contain;
   }
}

/* Firefox specific */
@supports (-moz-appearance: none) {
   body {
      overscroll-behavior: contain;
   }
}

/* Override pull-to-refresh indicator colors with purple theme */
body::before {
   content: '';
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   height: 3px;
   background: linear-gradient(90deg, #8900e1, #57068c);
   z-index: 9999;
   opacity: 0;
   transition: opacity 0.3s ease;
}

/* Show pull-to-refresh indicator on overscroll */
body.overscroll::before {
   opacity: 1;
}

/* ------------------------------------------------------------------ */
/* b. Header Styles
/* ------------------------------------------------------------------ */

header {
   position: relative;
   height: 800px;
   min-height: 500px;
   width: 100%;
   text-align: center;
   overflow: hidden;
}

header:after {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: #161415 url(../images/background.jpg) no-repeat top center;
   background-size: cover !important;
   -webkit-background-size: cover !important;
   filter: blur(2px);
   -webkit-filter: blur(2px);
   z-index: -1;
}

/* vertically center banner section */
header:before {
   content: '';
   display: inline-block;
   vertical-align: middle;
   height: 100%;
}
header .banner {
   display: inline-block;
   vertical-align: middle;
   margin: 0 auto;
   width: 85%;
   padding-bottom: 30px;
   text-align: center;
}

header .banner-text { width: 100%; }
header .banner-text h1 {
   font: 90px/1.1em 'opensans-bold', sans-serif;
   color: #fff;
   letter-spacing: -2px;
   margin: 0 auto 18px auto;
   text-shadow: 0px 1px 3px rgba(0, 0, 0, .8);
}
header .banner-text h3 {
   font: 18px/1.9em 'librebaskerville-regular', serif;
   color: #A8A8A8;
   margin: 0 auto;
   width: 70%;
   text-shadow: 0px 1px 2px rgba(0, 0, 0, .5);
}
header .banner-text h3 span,
header .banner-text h3 a {
   color: #fff;
}
header .banner-text hr {
   width: 60%;
   margin: 18px auto 24px auto;
   border-color: #2F2D2E;
   border-color: rgba(150, 150, 150, .1);
}

/* header social links */
header .social {
   margin: 24px 0;
   padding: 0;
   font-size: 30px;
   text-shadow: 0px 1px 2px rgba(0, 0, 0, .8);
}
header .social li {
   display: inline-block;
   margin: 0 15px;
   padding: 0;
}
header .social li a { color: #fff; }
header .social li a:hover { color: #11ABB0; }

/* scrolldown link */
header .scrolldown a {
   position: absolute;
   bottom: 30px;
   left: 50%;
   margin-left: -29px;
   color: #fff;
   display: block;
   height: 42px;
   width: 42px;
   font-size: 42px;
   line-height: 42px;
   color: #fff;
   border-radius: 100%;

   -webkit-transition: all .3s ease-in-out;
   -moz-transition: all .3s ease-in-out;
   -o-transition: all .3s ease-in-out;
   transition: all .3s ease-in-out;
}
header .scrolldown a:hover { color: #11ABB0; }

/* primary navigation
--------------------------------------------------------------------- */
#nav-wrap ul, #nav-wrap li, #nav-wrap a {
	 margin: 0;
	 padding: 0;
	 border: none;
	 outline: none;
}

/* nav-wrap */
#nav-wrap {
   font: 12px 'opensans-bold', sans-serif;
   width: 100%;
   text-transform: uppercase;
   letter-spacing: 2.5px;
   margin: 0 auto;
   z-index: 100;
   position: fixed;
   left: 0;
   top: 0;
}
.opaque { background-color: #333; }

/* hide toggle button */
#nav-wrap > a.mobile-btn { display: none; }

ul#nav {
   min-height: 48px;
   width: auto;

   /* center align the menu */
   text-align: center;
}
ul#nav li {
   position: relative;
   list-style: none;
   height: 48px;
   display: inline-block;
}

/* Links */
ul#nav li a {

/* 8px padding top + 8px padding bottom + 32px line-height = 48px */

   display: inline-block;
   padding: 8px 13px;
   line-height: 32px;
	text-decoration: none;
   text-align: left;
   color: #fff;

	-webkit-transition: color .2s ease-in-out;
	-moz-transition: color .2s ease-in-out;
	-o-transition: color .2s ease-in-out;
	-ms-transition: color .2s ease-in-out;
	transition: color .2s ease-in-out;
}

ul#nav li a:active { background-color: transparent !important; }
ul#nav li.current a { color: #4A90E2; }


/* ------------------------------------------------------------------ */
/* c. About Section
/* ------------------------------------------------------------------ */

#about {
   background: #242424;
   padding-top: 36px;
   padding-bottom: 00px;
   overflow: hidden;
}

#about a, #about a:visited  { color: #a411ff; }
#about a:hover, #about a:focus { color: #8600df; }

#about h2 {
   font: 28px/36px 'opensans-bold', sans-serif;
   color: #fff;
   margin-bottom: 12px;
}

#about h3 {
   color: #fff;
}

#about h5 {
   color: #fff;
}

#about h6 {
   color: #fff;
}

/* Make all FontAwesome icons white for better contrast */
#about .fa,
#experience .fa,
#projects .fa,
#blog .fa {
   color: #fff;
}

/* Override global white color for sub-headings to make them blue */
#experience h4,
#projects h3,
#blog h3 {
   color: #11ABB0 !important;
}

/* Additional specific overrides to ensure blue color */
body #experience h4,
body #projects h3,
body #blog h3 {
   color: #11ABB0 !important;
}

#about p {
   line-height: 30px;
   color: #b5b5b5;
}
#about .profile-pic {
   position: relative;
   width: 230px;
   /* height: 230px; */
   border-radius: 50%;
}
#about .contact-details { width: 39.66667%; }
#about .education-details { width: 60%; }
#about .download {
   width: 100%;
   padding-top: 6px;
}
#about .main-col { padding-right: 5%; }
#about .download .button {
   margin-top: 6px;
   background: #444;
}
#about .download .button:hover {
   background: #fff;
   color: #2B2B2B;
}
#about .download .button i {
   margin-right: 15px;
   font-size: 20px;
}

/* ------------------------------------------------------------------ */
/* f. Blog Section
/* ------------------------------------------------------------------ */

#blog {
   background: #5A5A5A;
   padding-top: 00px;
   padding-bottom: 00px;
   padding-left: 30px;
   padding-right: 30px;
   overflow: hidden;
}

#blog a, #blog a:visited  { color: #fff; }
#blog a:hover, #blog a:focus { color: #11ABB0; }

#blog h2 {
   font: 32px/40px 'opensans-bold', sans-serif;
   text-transform: uppercase;
   letter-spacing: 1px;
}
#blog h2 span {
   border-bottom: 3px solid #4A90E2;
   padding-bottom: 0px;
}
#blog h3 {
   font: 25px/30px 'opensans-bold', sans-serif;
   padding-top: 10px;
   color: #11ABB0 !important;
}

#blog .header-col { 
   padding-top: 20px;
   padding-bottom: 20px;
   padding-right: 10%; 
}
#blog .main-col { padding-right: 10%; }

#blog .main-row {
   padding-bottom: 0px;
}

.post{
   margin-bottom: 48px;
   padding-bottom: 0px;
   border-bottom: 1px solid #E8E8E8;
}

.experience{
   margin-bottom: 48px;
   padding-bottom: 0px;
   border-bottom: 1px solid #E8E8E8;
}

#blog .info {
   font: 16px/24px 'librebaskerville-italic', serif;
   color: #6E7881;
   margin-bottom: 18px;
   margin-top: 9px;
}
#blog .info span {
   margin-right: 5px;
   margin-left: 5px;
}
#blog .date {
   font: 15px/24px 'opensans-regular', sans-serif;
   margin-top: 6px;
}

/* ------------------------------------------------------------------ */
/* e. Experience Section
/* ------------------------------------------------------------------ */

#experience {
   background: #3A3A3A;
   padding-top: 00px;
   padding-bottom: 00px;
   padding-left: 30px;
   padding-right: 30px;
   overflow: hidden;
}

#experience a, #experience a:visited  { color: #fff; }
#experience a:hover, #experience a:focus { color: #11ABB0; }

#experience h2 {
   font: 32px/40px 'opensans-bold', sans-serif;
   text-transform: uppercase;
   letter-spacing: 1px;
}
#experience h2 span {
   border-bottom: 3px solid #4A90E2;
   padding-bottom: 0px;
}
#experience h4 {
   font: 25px/30px 'opensans-bold', sans-serif;
   padding-top: 10px;
   color: #11ABB0 !important;
}

#experience .header-col { 
   padding-top: 20px;
   padding-bottom: 20px;
   padding-right: 10%; 
   width: 100%;
}
#experience .main-col { padding-right: 10%; }

#experience .main-row {
   padding-bottom: 0px;
}

/* ------------------------------------------------------------------ */
/* f. Papers Section
/* ------------------------------------------------------------------ */

#papers {
   background: #fff;
   padding-top: 00px;
   padding-bottom: 00px;
   padding-left: 30px;
   padding-right: 30px;
   overflow: hidden;
}

#papers a, #papers a:visited  { color: #11ABB0; }
#papers a:hover, #papers a:focus { color: #313131; }

#papers h1 {
   font: 18px/24px 'opensans-bold', sans-serif;
   text-transform: uppercase;
   letter-spacing: 1px;
}
#papers h1 span {
   border-bottom: 3px solid #4A90E2;
   padding-bottom: 0px;
}
#papers h3 {
   font: 25px/30px 'opensans-bold', sans-serif;
   padding-top: 10px;
}

#papers .header-col { 
   padding-top: 20px;
   padding-bottom: 20px;
   padding-right: 10%; 
   width: 100%;
}
#papers .main-col { padding-right: 10%; }

#papers .main-row {
   padding-bottom: 0px;
}

.post{
   margin-bottom: 00px;
   padding-bottom: 00px;
   border-bottom: 1px solid #E8E8E8;
}
#papers .info {
   font: 16px/24px 'calibri', serif;
   color: #4A90E2;
   margin-bottom: 2px;
   margin-top: 0px;
}
#papers .info span {
   margin-right: 5px;
   margin-left: 5px;
}
#papers .date {
   font: 15px/24px 'opensans-regular', sans-serif;
   margin-top: 6px;
}

/* ------------------------------------------------------------------ */
/* d. Projects Section
/* ------------------------------------------------------------------ */

#projects {
   background: #4A4A4A;
   padding-top: 00px;
   padding-bottom: 00px;
   padding-left: 30px;
   padding-right: 30px;
   overflow: hidden;
}

#projects a, #projects a:visited  { color: #fff; }
#projects a:hover, #projects a:focus { color: #11ABB0; }

#projects h2 {
   font: 32px/40px 'opensans-bold', sans-serif;
   text-transform: uppercase;
   letter-spacing: 1px;
}
#projects h2 span {
   border-bottom: 3px solid #4A90E2;
   padding-bottom: 6px;
}
#projects h3 {
   font: 25px/30px 'opensans-bold', sans-serif;
   color: #11ABB0 !important;
}

#projects h4 {
   font: 25px/30px 'opensans-bold', sans-serif;
   padding-top: 10px;
   color: #11ABB0 !important;
}

#projects .header-col { 
   padding-top: 20px;
   padding-bottom: 20px;
   padding-right: 10%; 
}
#projects .main-col { padding-right: 10%; }

#projects .main-row {
   padding-bottom: 0px;
}

.single_project {
   margin-bottom: 48px;
   padding-bottom: 0px;
   border-bottom: 1px solid #E8E8E8;
}
#projects .info {
   font: 16px/24px 'librebaskerville-italic', serif;
   color: #6E7881;
   margin-bottom: 18px;
   margin-top: 9px;
}
#projects .info span {
   margin-right: 5px;
   margin-left: 5px;
}
#projects .date {
   font: 15px/24px 'opensans-regular', sans-serif;
   margin-top: 6px;
}

/* ------------------------------------------------------------------ */
/* i. Footer
/* ------------------------------------------------------------------ */

footer {
   padding-top: 36px;
   margin-bottom: 6px;
   color: #303030;
   font-size: 14px;
   text-align: center;
   position: relative;
}

footer a, footer a:visited { color: #525252; }
footer a:hover, footer a:focus { color: #fff; }

/* copyright */
footer .copyright {
    margin: 0;
    padding: 0;
 }
footer .copyright li {
    display: inline-block;
    margin: 0;
    padding: 0;
    line-height: 24px;
}
.ie footer .copyright li {
   display: inline;
}
footer .copyright li:before {
    content: "\2022";
    padding-left: 10px;
    padding-right: 10px;
    color: #095153;
}
footer .copyright  li:first-child:before {
    display: none;
}

/* social links */
footer .social-links {
   margin: 18px 0 30px 0;
   padding: 0;
   font-size: 30px;
}
footer .social-links li {
    display: inline-block;
    margin: 0;
    padding: 0;
    margin-left: 42px;
    color: #4A90E2;
}

footer .social-links li:first-child { margin-left: 0; }

/* Go To Top Button */
#go-top {
	position: absolute;
	top: -24px;
   left: 50%;
   margin-left: -30px;
}
#go-top a {
	text-decoration: none;
	border: 0 none;
	display: block;
	width: 60px;
	height: 60px;
	background-color: #525252;

	-webkit-transition: all 0.2s ease-in-out;
   -moz-transition: all 0.2s ease-in-out;
   -o-transition: all 0.2s ease-in-out;
   -ms-transition: all 0.2s ease-in-out;
   transition: all 0.2s ease-in-out;

   color: #fff;
   font-size: 21px;
   line-height: 60px;
 	border-radius: 100%;
}
#go-top a:hover { background-color: #0F9095; }

/* FINAL OVERRIDE - Force sub-headings to be blue with maximum specificity */
html body #experience h4,
html body #projects h3,
html body #projects h4,
html body #blog h3 {
   color: #11ABB0 !important;
}

/* Additional aggressive overrides */
#experience h4,
#projects h3,
#projects h4,
#blog h3 {
   color: #11ABB0 !important;
}

