/* ========== Default styles ========== */
nav,
header,
footer {
    display: block;
}

body {
    margin: 0;
    height: 100%;
    min-height: 100%;
    line-height: 1;
    font-family: Futura,Trebuchet MS,Arial,sans-serif;
    font-family: assistant, monospace, sans-serif;
    letter-spacing: 2px;

    /* background: #e0e0e0; */
    /* background: #404049; */
    /* background: #313841; */
    /* background: #6a7179; */
    background: #161422;
}

a {
    text-decoration: none;
    color: #ee3377;
}

/* === explicit color classes === */

.black {
    color: #000;
}
.white {
    color: #fff;
}
.magenta {
    color: #ee3377;
}

/* testing importing of fonts */
@font-face {
    font-family: assistant;
    src: url(fonts/Assistant-Regular.ttf);
}

/* ========= resume specific ul styles ============ */
div ul {
    overflow: hidden;
    margin: 0;
    padding: 0;
    display: flex;
}
div ul li {
    list-style: none;
    float: left;
    padding-left: 10px;
    padding-right: 10px;
}

div ul li hr {
    width: inherit;
}



/* ========= base container wrap styles ============== */
.container {
    width: 100%;
    margin: auto;
    padding-top: 2%;
    padding-bottom: 2%;
}

.text-container {
    width: 100%;
    height: fit-content;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 10px;
    box-sizing: border-box;
}

.footer-bar {
    background: #000;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 40px;
    padding-top: 5px;
}

/* ==== resume page header ==== */
#page-header {
    background: white;
    padding-top: calc(1% + 30px);
    padding-bottom: 10px;
}

#section-2 {
    background: #161422;
}
    
#section-3 {
    background: white;
}



/* ======= hard edge gradient (pseduo depth) ====== */
#gradient-1 {
    padding-top: 1%;
    padding-bottom: 1%;

    background: -webkit-linear-gradient(#ffffff, #a29eb9);
    background: -o-linear-gradient(#ffffff, #a29eb9);
    background: -moz-linear-gradient(#ffffff, #a29eb9);
    background: linear-gradient(#ffffff, #a29eb9);
}

#gradient-2 {
    padding-top: 1%;
    padding-bottom: 1%;

    background: -webkit-linear-gradient(#908ca7, #4e4b61);
    background: -o-linear-gradient(#908ca7, #4e4b61);
    background: -moz-linear-gradient(#908ca7, #4e4b61);
    background: linear-gradient(#908ca7, #4e4b61);
}

#gradient-3 {
    padding-top: 1%;
    padding-bottom: 1%;

    background: -webkit-linear-gradient(#424055, #161422);
    background: -o-linear-gradient(#424055, #161422);
    background: -moz-linear-gradient(#424055, #161422);
    background: linear-gradient(#424055, #161422);
}

/* ====== text tag overrides ====== */
.page-title {
    color: black;
    letter-spacing: 7px;
    font-size: 50px;
    text-align: center;
}

.sub-page-title {
    letter-spacing: 5px;
    font-size: 20px;
    text-align: center;
}

.large-header {
    letter-spacing: 5px;
    font-size: 50px;
    text-align: left;
}

.h2-type-1 {
    /* font-family: assistant; */
    color: #fff;
    letter-spacing: 5px;
    font-size: 30px;
    text-align: left;
}

.h2-type-1:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1em;
    border-top: 1px solid white;
    z-index: -1;
  }

.medium-header {
    letter-spacing: 5px;
    font-size: 20px;
    text-align: left;
    padding-top: 5px;
}
.h3-type-3 {
    color: #fff;
    letter-spacing: 5px;
    font-size: 20px;
    text-align: left;
}

.h4-type-1 {
    color: #fff;
    letter-spacing: 5px;
    font-size: 16px;
    text-align: center;
}
.h4-type-2 {
    color: #ee3377;
    letter-spacing: 5px;
    font-size: 16px;
    text-align: left;
    padding-top: 4px;
}
.h4-type-3 {
    color: #ee3377;
    letter-spacing: 5px;
    font-size: 16px;
    text-align: center;
    padding-top: 4px;
}

.cc-text {
    color: #fff;
    letter-spacing: 2px;
    font-size: 12px;
    padding: 5px;
    text-align: center;
    opacity: .5;
}

p {
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 2px;
}

.date-range {
    color: #fff;
    opacity: .5;
    padding-left: 50px;
}

.spacer {
    padding: 15px;
    width: 100%;
    /* height: 100px; */
    margin: 0;
    box-sizing: border-box;
}

.spacer-big {
    padding: 30px;
    width: 100%;
    box-sizing: border-box;
}

.link-icon {
    width: 30px;
    height: 30px;
}

.link-tag {
    text-decoration: none;
}

/* ========== Nav bar ========== */
nav {
    position: fixed;
    width: 100%;
    margin: 0;
    background-color: black;
    text-align: center;
    z-index: 1;
}

nav ul {
    overflow: hidden;
    margin: 0 ;
    padding: 0;
    display: inline-block;


    /* position: relative; */
    /* left: 50%; */
    /* transform: translate(-50%, 0%); */
}

ul.topnav li {
    list-style: none;
    float: left;
}

ul.topnav li a {
    display: block;
    text-decoration: none;
    min-height: 14px;
    padding: 14px;
    color:#e0e0e0;
    text-transform: uppercase;
}

.nav-button {
    color: white;
    transition: background .5s ease;
}

.nav-button:hover {
    color: #ee3377;
    /* background: #050505; */
}

ul.topnav li.dropdown-icon {
    display: none;
}


/* ========== navbar mobile optemization =========== */
@media screen and (max-width: 680px) {
    ul.topnav li:not(:nth-child(1)){
        display: none;
    }
    ul.topnav li.dropdown-icon {
        display: block;
    }

    ul.topnav.responsive li.dropdown-icon

    ul.topnav.responsive {
        position: relative;
    }

    ul.topnav.responsive li {
        display: inline;
        float: none;
    }

    ul.topnav.responsive li a {
        display: block;
        text-align: center;
    }

}




/* === tiny screen optimization === */
@media screen and (max-width: 320px) {

/* === other optimization === */
    .page-title {
        font-size: 30px;
    }

    .sub-page-title {
        font-size: 15px;
    }

    .large-header {
        letter-spacing: 3px;
        font-size: 30px;
    }
    .medium-header {
        letter-spacing: 3px;
        font-size: 20px;
    }
}