/* MOBILE FIRST CSS */


html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
a {
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
}


html {
    height: 100%;
    width: 100%;
    color: #fafafa;
    background: #050505;
    background-image: url("/img/WebsiteBG.jpg");
    background-position: center;
    background-attachment: fixed;
}


body {
    display: block;
    padding: 10px 20px;

}

a {
    text-decoration: none;
    color: #fae2ae;
    transition: color 400ms;
}

a:hover {
    color: #d9b976;

}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Crimson Text', serif;
    text-align: center;
    text-transform: uppercase;
    font-weight: lighter;
    padding: 10px 0;
    size: 1rem;
    color: #ffffff;
}

h1 {
    width: 100%;
    font-size: 2.5rem;
}

h2 {
    font-size: 1.75rem;
    text-align: left;
    padding: 60px 0 20px 0;
}

p {
    font-size: 1rem;
    line-height: 1.5rem;
    padding: 10px 0;
    width: 100%;
}

li {
    list-style: none;
    line-height: 2rem;
}

/* -- Classes  -- */

.page-content {
    width: 100%;
    min-height: 65vh;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;

}

.column {
    flex: 100%;

}

.text-container {
    width: 80%;
    padding: 30px;
}

/* -- Main Header Menu -- */

.menu-bars {
    height: 24px;
    fill: #fafafa !important;
}

#desktop-main-menu {
    display: none;
}

#mobile-main-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-height: auto;
    width: 100%;
}

#mobile-main-menu a {
    color: #fafafa;
}

#mobile-main-menu a:hover {
    color: #d9b976;
}

.menu-logo img {
    max-height: 100px;
    height: auto;
    padding: 15px;
}

#menu-toggle-btn {
    position: relative;
    width: 100%;
    text-align: center;
    padding: 20px;

}

#mobile-main-menu ul {
    width: 100%;
    text-decoration: none;
    overflow: hidden;
    transition: height 500ms;
    background: #00000055;
}

#mobile-main-menu li {
    padding: 14px;
    text-align: center;
    list-style: none;
    text-transform: uppercase;
    font-size: 24px;
    letter-spacing: 2px;
}

#mobile-main-menu li:hover {
    background: #ffffff11;
}

#menu-socials {

    width: 100%;
    display: flex;
    justify-content: center;
}

#menu-socials i {
    padding: 40px 20px;
    font-size: 32px;
    transition: all 500ms;
}

#menu-socials i:hover {
    transform: scale(1.5);
    color: #fafafa;
}

.menu-closed {
    height: 0 !important;
}

.menu-opened {
    height: 500px;
}

#music-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.music-card {
    width: 250px;
    max-height: ;
    margin: 30px 20px;

    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.music-card img {
    width: 200px;
    max-height: 200px;

}

.do-it {
    background: #050505;
    color: #fafafa;
    border-radius: 30px;
    padding: 10px 30px;
    margin: 20px;
    box-shadow: #eeeeee11 0 0 20px;
    transition: all 300ms;
}

.do-it:hover {
    color: #050505;
    background: #fafafa;
}


.music-card p {
    padding: 20px 0;
}

.download-links {
    text-align: center;
}

.hero-image {
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.hero-image img {
    width: 100%;
    height: auto;
}

#about-hero {
    margin-bottom: -60px;
}


/* -------------------- Main Pages ---------------- */

.embed-video-container {
    display: flex;
    flex: 100%;
}

.embed-video {
    padding: 20px 0;
    width: 100%;
    height: 400px;
}

.sk-widget {
    width: 100%;
}

.spotify-widget {
    width: 100%;
    padding: 10px 0;
}

#about-hero img {
    box-shadow: #0007 0 9px 15px;
}

#contact-info {
    text-align: center;
    padding: 100px 0 0 0;
}

#contact-info p {
    font-size: 1.5rem;
    line-height: 3rem;
}

#music-page h2,
#music-page h3 {
    width: 100%;
    text-align: center;
}

#music-page h3 {
    padding: 80px auto;
    font-size: 2rem;

}

#music-page h3 a {
    color: #fafafa;
    font-family: 'Crimson Text', serif;
}

.link-block {
    display: block;
    padding: 30px;
    margin: 30px auto;
    max-width: 500px;
    background: black;
    transition: all 500ms ease-in-out;
}

.link-block:hover {
    background: #650505;
    transition: all 500ms ease-in-out;
}

/* Mailer form */

#mailer-page p {
    text-align: center;
    padding: 24px;
}

#mc-embedded-subscribe-form {
    background: #111111;
}

.mailer-form-container {
    width: 100%;
    color: #fafafa;
}

.mailer-form-container h2,
.indicates-required {
    color: #fafafa;
}



/* -------------------- Footer ---------------- */


#footer {
    width: 100%;
    height: 40px;
    text-align: center;
    padding: 80px 0;
}

#footer img {
    width: 32px;
    height: auto;
}

.copyright-text {
    font-size: 0.7rem;
}

@media only screen and (min-width: 1200px) {

    body {
        max-width: 1200px;
        margin: auto;
        background: #00000055;
    }

    .column {
        flex: 50%;
    }

    #mobile-main-menu {
        display: none;
    }

    #desktop-main-menu {
        display: flex;
        width: 100%;
        max-height: auto;
    }

    .menu-logo {
        width: 25%;
    }

    .menu-logo img {
        display: block;
        margin: auto;
    }

    .top-right-links {
        display: flex;
        width: 75%;
        justify-content: center;
        align-items: center;
    }

    .top-right-links a {
        padding: 10px 20px;
        height: auto;
        text-transform: uppercase;
        color: #fafafa;
    }

    .top-right-links a:hover {
        color: #d9b976;
    }

    #desktop-header-socials {
        padding-left: 30px;
        width: 185px;
    }

    #desktop-header-socials a {
        padding: 10px 10px;
    }

    .embed-video {
        padding: 20px 0;
        width: 100%;
        height: 800px;
    }

    .mailer-form-container {
        padding: 0 64px;
    }



}