html * {
    box-sizing: border-box;
}

html {
    background: url("../img/birdBG.jpg") fixed;
}

.test {
    min-height: 200px;
    background: red;
}

.inDev {
    color: gray;
}

#pagewrapIntro {
    width: 100%;
    margin: 0 auto;
}

#pagewrapMain {
    width: 100%;
    margin: 0 auto;
    background: black;
}

#fixedBG {
    width: 100%;
    min-height: 100vh;
    background: #000000 url("../img/samGuitar1.jpg") top right;
    background-size: cover;
    position: fixed;
    z-index: -1;
}

.marginLeft {
    margin-left: 10px;
}

.marginBottom {
    margin-bottom: 10px;
}

.marginTop {
    margin-top: 8px;
}

.white {
    color: white;
    font-weight: 600;
}

.orange {
    color: orange;
    font-weight: 600;
}

.temp-hide {
    display: none;
}

/* ----- NAVIGATION SECTION ------------------------------------------------------------- */

nav {
    /*padding-top: 25px;*/
    padding-bottom: 25px;
    position: relative;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    float: right;
    /*background: red;*/
}

nav ul li {
    display: block;
    float: left;
    padding: 4px 10px;
    /*background: aliceblue;*/
}

nav ul li a {
    text-decoration: none;
    color: orange;
}

.icon {
    display: block;
    /*padding: 2px 0;*/
    /*background: blue;*/
}

.buy {
    display: block;
    font-size: small;
    text-decoration: none;
    padding: 1px 25px;
    color: ghostwhite;
    border: 1px solid ghostwhite;
}

.hr {
    margin: 5px 0px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 1));
}

.hrltr {
    margin-top: 20px;
    margin-bottom: 30px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 0));
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.logo {
    margin-top: 25px;
    padding-top: 5px;
    text-align: right;
    background: url(../img/samrgibsonLogo.svg) top left no-repeat;
    background-position: 10px 0;
}

.logo-m-t {
    display: block;
    width: 50vw;
    margin: 0 auto;
}

.menuIcon {
    display: block;
    width: 6vw;
    position: relative;
    top: 26px;
    left: 40px;
}

.adBanner {
    background: orange;
    text-align: center;
    padding: 15px 0;
}

.adBanner a {
    color: teal;
    text-transform: uppercase;
}



/* ----- HERO SECTION  ------------------------------------------------------------- */

#hero {
    min-height: 100vh;
    padding-top: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}


/* ----- RECENT SECTIONS  ------------------------------------------------------------- */

#recent {
    padding: 25px 40px;
    background: black;
}

.videoWrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    padding-top: 25px;
    height: 0;
    background: url(../img/loader.gif) center center;
}

.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, .15);
}

#recent article {
    padding-bottom: 25px;
}

#recent article img {
    display: block;
    width: 100%;
    padding: 10px 0;
}

.imgH100 {
    height: 100px;
    background: url("../img/news01.jpg");
    background-size: cover;
    margin: 10px 0;
}

.imgH200 {
    height: 100px;
    background: url("../img/news02.jpg");
    background-size: cover;
    margin: 10px 0;
}

.imgH300 {
    height: 100px;
    background: url("../img/gallery/SamOnHighlandT.jpg");
    background-size: cover;
    margin: 10px 0;
}

.newsLink {
    text-decoration: none;
    color: ghostwhite;
}

/* ----- MUSIC GRIDS ----------------------------------------------------------------- */

.grid-container {
    display: grid;
    grid-template-columns: 1fr 16fr 4fr 4fr;
    grid-template-rows: auto;
    grid-row-gap: 5px;
    grid-column-gap: 5px;
    align-items: center;
}

.grid-item {
    justify-self: stretch;
    background: rgba(255, 255, 255, .1);
}

.grid-item a {
    display: block;
    text-decoration: none;
    color: ghostwhite;
    font-weight: 400;
}

.grid-item p {
    padding: 12px 10px;
    border-radius: 2px;
}

.lyrics p {
    text-align: center;
    background: gray;
}

.listen p {
    text-align: center;
    background: orange;
}

.lyrics-coming p {
    text-align: center;
    background: lightgray;
    color: gray;
}

.listen-coming p {
    text-align: center;
    background: lightgray;
    color: gray;
}

.responsive {
    display: block;
    width: 100%;
}

.buyTitle {
    padding: 10px;
    margin: 10px 0 0 0;
    background: orange;
    border-radius: 2px;
}

.buyAlbum,
.pay {
    width: 100%;
    background: rgba(255, 255, 255, .15);
    padding: 8px;
    border-radius: 2px;
}

.buyAlbum p {
    padding-bottom: 5px;
}

.buyAlbum select {
    width: 100%;
}

.pay {
    float: left;
    margin: 5px 0;
}

.payLabel,
.payButton {
    float: left;
}

.payLabel {
    font-size: .75rem;
    padding-top: 2px;
    padding-left: 5px
}

/* ----- PURCHASE SECTION  ------------------------------------------------------------- */


.responsive-full {
    display: block;
    width: 100%;
}

.purchase {
    max-width: 600px;
    margin: 0 auto;
}

.purchase-container {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.purchase-container h4 {
    text-align: center;
}

.purchase-container .shipping {
    padding: 1rem 0 2.5rem 0;
}

.purchase-container .shipping p, .purchase-container .shipping select {
    font-size: 1.125rem;
    padding: .75rem 0;
    text-align: center;
}

#paypal-button-container {
    max-width: 275px;
    margin: 0 auto;
}

/* ----- ABOUT SECTION  ------------------------------------------------------------- */

#about {
    padding: 25px 40px 25px 40px;
    background: black;
}

#about p, #about blockquote {
    margin-bottom: 20px;
}

#about .intro {
    font-size: 1.5rem;
    line-height: 2rem;
    color: lightgray;
    font-style: italic;
}

#about .text {
    padding: 50px 0px;
}


/* ----- FOOTER SECTION  ------------------------------------------------------------- */

footer {
    padding: 25px 40px 50px 40px;
    background: black;
    min-height: 100vh;
}

footer * {
    text-align: center;
}

footer ul {
    list-style: none;

    /*text-align: center;*/
}

footer ul li {
    display: block;
}

footer ul.social {
    padding-bottom: 25px;
}

footer ul.social li {
    display: inline-block;
    padding: 10px 10px;
}

footer ul li a {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid white;
}

footer ul.social li a {
    border: none;
}


footer a {
    text-decoration: none;
    color: orange;
}

footer p {
    /*text-align: center;*/
    color: ghostwhite;
    font-size: .85rem;
    padding: 3px 15px;
    letter-spacing: 2px;
}

.space25 {
    margin-top: 25px;
}

@media screen and (min-width: 600px) {
    /* TABLET -------------------------------------- */
    
    #pagewrapIntro, #pagewrapMain,
    #fixedBG {
        width: 600px;
    }

    #hero {
        padding-top: 25px;
    }
    
    #about .text {
    padding: 50px;
    }

    .logo-m-t {
        width: 300px;
    }

    .menuIcon {
        width: 38px;
        left: 60px;
    }

    .buyTitle {
        margin-top: 10px;
    }

    .lastItem {
        padding-bottom: 75px !important;
    }

    .responsive {
        display: block;
        width: 95%;
    }

    footer {
        padding: 100px 40px 50px 40px;
        background: black;
        min-height: 100vh;
    }

    footer ul li a {
        padding: 20px;
    }

}

@media screen and (min-width: 900px) {
    /* LAPTOP -------------------------------------- */
    
    #pagewrapIntro, #pagewrapMain,
    #fixedBG {
        width: 900px;
    }

    nav {
        width: 900px;
        /*padding-top: 50px;*/
        padding-bottom: 50px;
        position: fixed;
        background: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0));
        z-index: 1000;
    }
    
    nav a:hover, nav a:active { color: ghostwhite; }

    #hero {
        padding-top: 200px;
        background: transparent;
    }

    #heroPad {
        min-height: 150px;
        padding-top: 0;
        background: linear-gradient(90deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    }

    #recent {
        background: transparent;
    }

    .buyTitle {
        margin-top: 10px;
    }

    .responsive {
        display: block;
        width: 100%;
    }

    footer {
        min-height: inherit;
        padding: 50px 40px;
        background: linear-gradient(rgba(255, 255, 255, .1), rgba(255, 255, 255, .2));

    }

    footer * {
        text-align: left;
    }

    footer ul {
        list-style: none;
        /*text-align: center;*/
    }

    footer ul.social {
        padding-bottom: 0;
    }

    footer ul li {
        display: inline-block;
        padding: 15px;
        text-align: center;
    }

    footer ul li a {
        display: inline;
        margin: 0;
        padding: 0;
        border: none;
    }

    footer a {
        text-decoration: none;
        color: orange;
    }
    
    footer a:hover, nav a:active { color: ghostwhite; }



    footer p {
        /*text-align: center;*/
        color: ghostwhite;
        font-size: .85rem;
        letter-spacing: 2px;
    }

    .space25 {
        margin-top: 25px;
    }

}

@media screen and (min-width: 1200px) {
    /* DESKTOP ------------------------------------- */

    #pagewrapIntro, #pagewrapMain,
    #fixedBG {
        width: 1200px;
    }

    nav {
        width: 1200px;
    }

}
