/*------------------------------------------------------*/
/* THEME SETUP */
/*------------------------------------------------------*/

* {
    margin: 0;
    padding: 0;
}
html,
body {
    background-color: #242424;
    color: #999;
    font-family: 'Encode Sans Expanded', sans-serif;
    font-weight: 200;
    font-size: 16px;
    text-rendering: optimizeLegibility;    
    scroll-behavior: smooth;
}
img {
    vertical-align: bottom;
}
ul {
    list-style: none;
}
p {
    line-height: 1.5;
}

/* ----- Links ----- */

a {
    text-decoration: none;
    color: #999;
    font-weight: 200;
    transition: all 0.3s;
}
a:hover,
a:active,
.active {
    color: #ddff00;
}

/* ----- Headings ----- */

h1 {
    padding: 10px 0;
    font-family: 'kaneda-gothic', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 250%;
    line-height: 1.05;
    text-transform: uppercase;
    color: #dadada;    
}
h6 {
    padding: 10px 0;
    font-style: italic;    
    font-weight: 400;
    font-size: 80%;    
    color: #ddff00;    
}
.section-heading h2,
.section-heading-2 h2 {
    font-family: 'kaneda-gothic', sans-serif;
    font-style: normal;
    font-weight: 200;
    font-size: 400%;
    line-height: 1.0;
}
.section-heading h2 span,
.section-heading-2 h2 span {
    font-weight: 700;
    font-size: 160%;
    color: #dadada;
}
.section-heading-2 h2{
    color: #484848;
}
.section-heading-2 h2 span{
    color: #1a1a1a;
}
.section-heading-2 p {
    font-size: 85%;
    font-weight: 400;
    color: #1a1a1a;
}
.section-heading::after,
.section-heading-2::after {
    content: " ";
    display: inline-block;
    width: 4em;
    height: 0.5em;
    background-color: #ddff00;
}

/* ----- Buttons ----- */

.btn {
    display: inline-block;
    font-weight: 700;
    background-color: #242424;
    color: #dadada;
    padding: 15px 30px;
    text-align: center;
    border: none;
    border-radius: 50px;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5);  
    transition: all 0.3s ease 0s;
}
.btn:hover {
    background-color: #ddff00;
    color: #242424;
}

/*------------------------------------------------------*/
/* HEADER */
/*------------------------------------------------------*/

.navbar {       
    top: 0;
    position: sticky;
    margin: auto;    
    width: 100%;       
    padding: 15px 25px;
    text-align: center;    
    background-color: #101010;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.8);    
    z-index: 400;
}
.mobile-menu {    
    width: 100%;
    max-width: 400px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;        
}
.mobile-menu li {
    padding: 0 1%;
}
.mobile-menu li a {
    font-family: 'kaneda-gothic', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 120%;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/*------------------------------------------------------*/
/* SIDEBAR */
/*------------------------------------------------------*/

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 80px;
    height: 100vh;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: #101010;
    box-shadow: 1px 0 10px rgba(0, 0, 0, 0.8);
    z-index: 150;
}
.sidebar-logo img {
    width: 70px;
}
.sidebar-menu {    
    font-size: 120%;
    align-self: flex-end;
    text-align: right;
}
.sidebar-menu li {
    margin: 4vh 0;
}
.sidebar-menu li a {
    font-family: 'kaneda-gothic', sans-serif;
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.sidebar-social {    
    text-align: center;
}
.privacy-link {    
    font-size: 70%;
}
.social-links {
    display: none;    
}
.copyright {
    display: none;    
}

/*------------------------------------------------------*/
/* FOOTER */
/*------------------------------------------------------*/

.footer {
    width: 100%;
    padding: 15px;
    background-color: #101010;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.8);
    z-index: 300;    
}
.footer-container {
    max-width: 400px;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.footer-logo {
    width: 30%;    
}
.footer-logo img {
    width: 100px;
    padding: 5px;
}
.footer-info {
    width: 70%;
    height: 100px;    
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-end;
}
.footer-links {
    display: flex;
    justify-content: flex-end;
}
.footer-links li {
    padding: 0 7px;
    font-size: 125%;
}
.footer-privacy {    
    font-size: 80%;
}
.footer-copyright {
    text-align: right;
    font-size: 70%;
}