/* =================================
   RESET
================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* =================================
   BODY
================================= */

body {
    background-color: whitesmoke;
    font-family: 'Lucida Sans', sans-serif;
}


/* =================================
   HEADER / LOGO
================================= */

.site-header {
    width: 100%;
    position: relative;
}

.site-logo {
    display: block;

    margin-left: 75px;
    padding-top: 0;

    width: 20%;
}

.site-logo img {
    display: block;

    width: 100%;
    height: auto;
}


/* =================================
   NAVIGATION
================================= */

.navigation {
    width: 100%;
    position: relative;
}


/* =================================
   HAMBURGER
================================= */

.menu-checkbox {
    position: absolute;

    display: block;

    width: 32px;
    height: 32px;

    top: 28px;
    left: 12px;

    opacity: 0;

    cursor: pointer;

    z-index: 20;
}


.hamburger {
    display: flex;

    position: absolute;

    width: 32px;
    height: 26px;

    top: 28px;
    left: 12px;

    flex-direction: column;
    justify-content: space-between;

    z-index: 10;

    cursor: pointer;
}


.hamburger span {
    display: block;

    width: 100%;
    height: 2px;

    border-radius: 10px;

    background-color: #0e2431;

    transition: transform 0.4s ease-in-out,
                opacity 0.2s ease-in-out;
}


/* =================================
   MENU
================================= */
.menu {
    position: fixed;

    top: 130px;
    left: 0;

    width: 320px;
    height: calc(100vh - 100px)

    margin-left: 0 !important;

    padding-top: 20px;
    padding-left: 70px;
    padding-right: 30px;

    background-color: whitesmoke;

    transform: translateX(-100%);

    transition: transform 0.4s ease-in-out;

    text-align: left;

    z-index: 100;

    overflow-y: auto;
    overflow-x: visible;
}

/* =================================
   OPEN MENU
================================= */

.menu-checkbox:checked ~ .menu {
    transform: translateX(0);
}
.menu-section,
.menu-information {
    margin-left: 0;
    padding-left: 0;
}

.menu ul {
    margin-left: 0;
    padding-left: 0;
}

.menu li {
    margin-left: 0;
    padding-left: 0;
}

/* =================================
   HAMBURGER ANIMATION
================================= */

.menu-checkbox:checked + .hamburger span:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
}

.menu-checkbox:checked + .hamburger span:nth-child(2) {
    opacity: 0;
}

.menu-checkbox:checked + .hamburger span:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
}


/* =================================
   MENU SECTIONS
================================= */

.menu-section {
    margin-bottom: 25px;
}


/* =================================
   PROJECTS / WORKS
================================= */

.menu-heading {
    display: block;

    margin-bottom: 10px;

    font-family: 'Lucida Sans', sans-serif;

    font-size: 10px;

    font-weight: bold;

    letter-spacing: 0.8px;

    color: rgb(117, 117, 117);
}


/* =================================
   LISTS
================================= */

.menu ul {
    padding: 0;
    margin: 0;

    list-style: none;
}

.menu li {
    margin-bottom: 0.5rem;

    list-style: none;
}


/* =================================
   PROJECT / WORK LINKS
================================= */

.menu-section a {
    font-family: 'Lucida Sans', sans-serif;

    font-size: 11px;

    font-weight: 500;

    color: #0e2431;

    text-decoration: none;
}

.menu-section a:visited {
    color: #0e2431;
}

.menu-section a:hover {
    font-weight: bolder;
}


/* =================================
   DIVIDER
================================= */

.menu-divider {
    width: 100%;

    height: 1px;

    margin: 20px 0;

    background-color: #ccc;
}


/* =================================
   GENERAL NAVIGATION
================================= */

.menu-information {
    list-style: none;
}

.menu-information li {
    margin-bottom: 0.5rem;
}

.menu-information a {
    font-family: 'Lucida Sans', sans-serif;

    font-size: 11px;

    font-weight: 500;

    color: #0e2431;

    text-decoration: none;
}

.menu-information a:visited {
    color: #0e2431;
}

.menu-information a:hover {
    font-weight: bolder;
}


/* =================================
   HERO IMAGE
================================= */

.hero {
    display: flex;

    justify-content: space-evenly;

    width: 100%;

    margin-top: 5px;
}

.hero img {
    display: block;

    width: 90%;
    height: auto;
}


/* =================================
   INTRODUCTION
================================= */

.intro {
    width: 80%;

    margin: 60px auto 60px;

    text-align: center;
}

.intro h1 {
    margin-bottom: 15px;

    font-family: 'Lucida Sans', sans-serif;

    font-size: 15px;

    font-weight: normal;

    color: rgb(117, 117, 117);
}

.intro p {
    font-family: 'Lucida Sans', sans-serif;

    font-size: 12px;

    line-height: 1.8;

    color: rgb(117, 117, 117);
}


/* =================================
   FOOTER
================================= */

.site-footer {
    width: 100%;

    border-top: 1px solid #ccc;

    padding-top: 15px;
    padding-bottom: 20px;
}

.site-footer p {
    font-family: Arial, sans-serif;

    font-size: 10px;

    margin-left: 20px;

    color: rgb(117, 117, 117);
}


/* =================================
   MOBILE
================================= */

@media (max-width: 700px) {

    .site-logo {
        width: 40%;
        margin-left: 55px;
    }

    .hero img {
        width: 94%;
    }

    .menu {
        width: 85%;
        padding-left: 55px;
        padding-right: 25px;
    }

    .menu-section a,
    .menu-information a {
        font-size: 11px;
    }

    .intro {
        width: 85%;
    }
}
/* =================================
   ARTIST DESCRIPTION
================================= */

.site-brand {
    width: 20%;
    margin-left: 75px;
}

.site-brand .site-logo {
    display: block;

    width: 100%;
    margin-left: 0;
}

.artist-description {
    display: block;

    width: 100%;

    margin-top: 6px;

    text-align: center;

    font-family: 'Lucida Sans', sans-serif;

    font-size: 10px;
    font-weight: normal;
    font-style: normal;

    line-height: 1.4;

    color: rgb(145, 145, 145);

    text-decoration: none;

    letter-spacing: 0;
}