:root {
    --color-background: #323339;
    --color-foreground: #3b3c44;
    --color-font: #e3e3e3;
    --color-btn: #4f98d9;
    --color-btn-hover: #68b8ff;
    --color-btn-txt: black;
    --color-btn-txt-hover: #4d4d4d;
    font-size: 12px;
}

/* NAV BAR */
header {
    background: var(--color-foreground);
    text-align: center;
    font-family: 'Trebuchet MS', 'Arial', sans-serif;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    padding: 3px;
    font-size: 1.6em;
}

header a {
    text-transform: uppercase;
}

/* BANNER */
.homeBanner {
    display: block;
    justify-content:center;
    align-items:center;
    margin: 20px;
    height: 550px;
    padding: 10px;
}

.guitarBanner {
    background-color: var(--color-background);
    background-image: url("images/GuitarBanner.png");
    background-size: 100%;
    background-position: bottom;
    background-repeat: no-repeat;
    width: 100%;
    height: 300px;
    max-height: 300px;
    text-align: center;
}

.homeTitle {
    position: relative;
    top: -280px;
    text-shadow: 2px 2px 5px#0f0f0f;
}

.homeTitle h1 {
    font-size: 5.5em;
    text-transform: uppercase;
}

.homeTitle h2 {
    position: relative;
    font-size: 2em;
}

.homeContent {
    position: relative;   
    top: -200px;
}

.homeContent p {
    padding-top: 35px;
}

.homePhoto {
    display: block;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
    min-width: 100px;
    width: 60%;
    border: 8px;
    border-style: solid;
    border-color: var(--color-background); 
    border-radius: 15px;
    box-shadow: 0px 8px 12px 2px #0f0f0f5f;
}

.inline-block-image {
    display: grid;
    justify-content: center;
    border: 5px red;
    border-style: solid;
}

.bioPortrait {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 60%;
    max-width: 400px;
    height: auto;
    margin-top: 15px;
    margin-bottom: 50px;
    border-radius: 50%;
    box-shadow: 0px 3px 8px 2px #0f0f0f5f;
}

.serviceImg {
    display: block;
    margin-top:20px;
    margin-left: auto;
    margin-right: auto;
    width: 40%;
    max-width: 250px;
    border-radius: 50%;
    box-shadow: 0px 3px 8px 2px #0f0f0f5f;
}

.album-cover {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 60%;
    max-width: 400px;
    height: auto;
    margin-top: 30px;
    box-shadow: 0px 3px 8px 4px #0f0f0f5f;
}

figcaption {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding-top: 10px;
}

.column {
    width: 50%;
}

.row {
    content: "";
    display: table;
    clear: both;
}

body {
    background: var(--color-background);
    color: var(--color-font);
    font-family: 'Trebuchet MS', 'Arial', sans-serif;
}

section {
    background-color: var(--color-foreground);
    border-radius: 5px;
}

.mainContent {
    position: fixed;
    top: 75px;
    bottom: 123px;
    left: 25px;
    right: 25px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    justify-content: center;
    align-content: center;
    overflow: auto;
}

.centeredContent {
    text-align: center;
    padding: 5px 0 25px 0;
}

/* FOOTER */
footer {
    background: var(--color-foreground);
    font-family: 'Trebuchet MS', 'Arial', sans-serif;
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding: 10px;
    padding-top: 22px;
    text-align: center;
    font-size: 1.6em;
}

.socialsBanner {
    margin-left: auto;
    margin-right: 30px;
}

.socialsBanner img {
    height: 14px;
    margin-left: 5px;
    margin-right: 5px;
}

/* NAVIGATION */
ul {
    list-style-type: none;
}

nav ul li {
    display: inline-block;
    margin-right: 10px;
}

li:first-child {
    margin-left: 0px;
}

a {
    text-decoration: none;
    color: var(--color-font);
}

a:hover {
    color: lightblue;
}

header .logo {
    display: block;
    position: absolute;
    top: 17px;
    left: 17px;
    height: 30px;
    width: auto;
}

/* STYLES */
h1 {
    color: var(--color-font);
    font-size: 5em;
    text-align: center;
}

h2 {
    color: var(--color-font);
    font-size: 3.3em;
    text-align: center;
    padding-top: 20px;
}

p {
    color: var(--color-font);
    max-width: 800px;
    width: 80%;
    text-align: left;
    font-size: 1.8em;
    margin: auto;
    padding-bottom: 18px;
}

.buttonDiv {
    display: block;
    text-align: center;
}

.urlButton {
    display: inline;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding: 12px 20px 12px 20px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.8em;
    color: var(--color-btn-txt);
    background-color: var(--color-btn);
    box-shadow: 1px 1px 2px #0f0f0f;
}

.urlButton:hover {
    background-color: var(--color-btn-hover);
    box-shadow: 2px 2px 4px #0f0f0f;
    color: var(--color-btn-txt-hover);
}

::-webkit-scrollbar {
    width: 0px;
}

.hamburger {
    display: none;
}

#burger-menu {
    display: none;
}

.mobileTopBar {
    display: none;
}

@media screen and (max-width: 816px) {
    .topNav li{
        display: none;
    }

    .topNav {
        display: none;
    }

    header .logo {
        display: none;
    }

    .mobileTopBar {
        display: block;
        position: sticky;
        top: 0;
        left: 0;
        background-color: var(--color-background);
        width: 100%;
        height: 55px;
        text-align: center;
        font-size: 1.8em;
        padding-top: 27px;
        font-family: monospace;
        text-transform: uppercase;
        z-index: 9;
    }

    h1 {
        padding: 10px 0;
        margin-top: 0; 
        margin-bottom: 5px;
        font-size: 3em;
    }

    h2 {
        font-size: 2.5em;
        text-align: center;
        padding-top: 5px;
    }

    p {
        font-size: 1.4em;
    }

    .homeTitle h1 {
        display: block;
        position: relative;
        font-size: 3.5em;
        padding: 50px 0 0;
    }

    .homeTitle h2 {
        font-size: 1.7em;
        padding: 0px;
    }

    .homePhoto {
        display: block;
        position: relative;
        margin-top: -50px;
        margin-left: auto;
        margin-right: auto;
        max-width: 600px;
        min-width: 100px;
        width: 60%;
        border: 8px;
        border-style: solid;
        border-color: var(--color-background);
        border-radius: 15px;
        box-shadow: 0px 8px 12px 2px #0f0f0f5f;
    }

    .mainContent {
        display: block;
        position: absolute;
        top: 0px;
        left: 0px;
        right: 0px;
        bottom: 0px;
        padding-bottom: 110px;
        margin: 0;
    }

    .guitarBanner {
        background-color: var(--color-foreground);
        background-image: url("images/GuitarBanner.png");
        background-position: top;
        background-repeat: no-repeat;
        width: 100%;
        max-height: 300px;
        text-align: center;
    }

    .urlButton {
        font-size: 1.4em;
    }

    section {
        border-radius: 0px;
    }

    footer {
        background: var(--color-background);
        font-family: 'Trebuchet MS', 'Arial', sans-serif;
        position: fixed;
        bottom: 0px;
        left: 0px;
        right: 0px;
        /* padding: 20px; */
        padding-top: 15px;
        /* margin: 0; */
        text-align: center;
        z-index: 5;
        font-size: 1.3em;
    }

    .hamburger {
        display: block;
        position: absolute;
        top: 25px;
        left: 20px;
        width: 30px;
        height: 30px;
        z-index: 100;
    }

    #hamburger {
        width: 100%;
        height: auto;
    }

    .topBar {
        height: 80px;
        background-color: var(--color-foreground);
    }

    #burger-menu {
        display: none;
        position: fixed;
        background-color: var(--color-background);
        width: 100%;
        height: 480px;
        top: 0px;
        text-align: left;
        border-radius: 20px;
        z-index: 10;
    }

    #burger-menu ul {
        padding: 0px;
        margin-top: 0px;
        font-size: 1.8em;
        text-transform: uppercase;
    }

    #burger-menu ul li {
        width: 100%;
        height: 60px;
        padding-top: 0px;
        margin-bottom: 2px;
    }

    li div {
        width: 100%;
        height: 100%;
        padding-left: 70px;
        padding-top: 30px;
    }
}
