@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@700&display=swap');
* {
    box-sizing: border-box;
}
html,
body {
    width: 100vw;
    padding: 0;
    margin: 0;
    font-size: 20px;
    font-family: 'Open Sans', sans-serif;
    line-height: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: justify;
    overflow-x: hidden;
    background-color: white;
    color: #202020;

}


/* ------------------------------------------------------               NAV BAR ------------------*/


header{
    width: 100vw;
    border-bottom: 2px solid red;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

.navbar {
    display: flex;    
    justify-content: space-between;
    align-items: center;
    padding: 1.5px 2px;
    padding-right: 2.5%;
    padding-left: 2.5%;
    background-color: #1C1B1B;
    color: white;
}

.navbar a{
    color: white;
    font-size: 2em;
}

.navbar img{
    width: 75%;
}


.hamburger {
    display: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: white;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1C1B1B;
}

#no-border{
    border-bottom: none; 
}

.nav-item {
    margin-left: 2em;    
}

/*----------------------------- menu links -----------------*/

.nav-item a{
    color: white;    
    font-weight: bold;
    text-decoration: none;
    font-size: .8em;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
}

.nav-item a:hover {
    color: red;
}


.nav-item img{
    display: block;
    margin: auto;
    width: 30%;
}

.nav-link{
    font-size: .8em;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    color: white;
}

.nav-link:hover{
    color: black;
}

.nav-logo {
    font-size: 2.1em;
    font-weight: 500;
    letter-spacing: 5px;
}

#red{
    color: red;
    font-size: .5em;
}

#red-heading{
    color: black;
    font-size: 1em;
}

#logo-text{
    font-size: .5em;
}

/* Grid sections --------------------------------------------*/

.grid-container {
    display: grid;
    margin-bottom: 5%;
    margin-top: 2.5%;
    grid-column-gap: 2.5%;
    margin-left: 5%;
    margin-right: 5%;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas:
    'one one two';
}

.one {
  grid-area: one;
  border-right: 1px solid gray;
  padding-right: 10%;
}

.two {
  grid-area: two;
  padding-left: 10%;
  text-align: center;
}

.two img{
    margin: 5%;
}

#latest{
    font-size: 1em;
    text-align: center;
    color: black;
    text-transform: uppercase;
}

h1{
    color: black;
    font-size: 2em;
    text-transform: uppercase;
    margin-bottom: 5%;
    margin-top: 0;
}


/*--  Features Sub Page  ----------------------------------------*/

.feature-card-landscape {
  display: flex;
  margin-bottom: 15%;
  box-shadow: 5px 10px 8px #888888;
}

.feature-card-image {
  flex: 1;
}

.feature-card-image img {
  width: 100%;
}

.text-block {
    flex: 1;
    padding: 2.5%;
}

.text-block h2 {
    color: black;
    text-transform: uppercase;
    font-size: 1.8em;
    margin-bottom: 0;
}

#song-title{
    font-size: .8em;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: gray;
}

.text-block h3 {
    color: black;
    text-transform: uppercase;
    font-size: .8em;
    margin-bottom: 0;
}

.text-block p{
    margin-top: 1.5%;
}

#format{
    display: inline-block;    
    width: auto;
    background-color: red;
    text-transform: uppercase;
    font-size: .8em;
    margin-bottom: 0;
    padding-bottom: 0;
    padding-left: 1.2em;
    padding-right: 1.2em;
    color: white;
}

#text2{
    margin-top: 1.5%;
    font-size: .8em;
    text-align: auto;
}

.feature-card-landscape a{
    color: black;
}

/*-----------------  albums Sub Page  ----------------------------------------*/

.landscape-card{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    line-height: 1; 
    font-size: 1em;
    margin-bottom: 10%;
    margin-left: 20%;
    margin-right: 20%;
    border-top: 1px solid gray;
    padding-top: 2.5%;
}

.landscape-card-image{
    flex: 1; 
    margin: 0;   
}

.landscape-card-image img{
    width: 100%;
}

.landscape-card-text{
    flex: 3;
    padding-left: 2%;
    padding-right: 2%;
    padding-top: 0;
    margin-top: 0;
    font-size: 1em;

}

.landscape-card-text a{
    color: #413839;
}

.landscape-card-text h2{
    margin-bottom: 0;
    font-size: 1.2em;
    color: black;
    text-align: justify;
    text-decoration: none;
    border: none;
    padding: 0;
    margin: 0;
}

#albumSingle{
    color: gray;
    font-size: .8em;
}

/*------------ listing -------------------*/


/*--  Misc  ---------------*/

#date{
    color: gray;
    text-transform: uppercase;
    font-size: .6em;
    letter-spacing: 3px;
    margin-top: 0;
}

#feature-date{
    color: gray;
    text-transform: uppercase;
    font-size: .6em;
    letter-spacing: 3px;
}

#caption{
    width: 100%;
    display: inline-block;
    margin: auto;
    margin-top: none;
    padding-top: none;
    text-align: center;
    color: gray;
    font-size: .8em;
}

#space-top{
    margin-top: 10%;
}

#mobile{
    display: none;
}

/*---   F O O T E R ----------------------------------------*/

footer {
    display: flex;
    width: 100%;
    flex-direction: row;
    text-align: center;
    float: none;
    position:relative;
    top: auto;
    right:auto;
    padding: 2%;
    height: auto;
    line-height: auto;
    background: black;
    border-top: 5px solid red;
    margin-top: 10%;
}

.footer-col{
    flex: 1;
    color: white;
}

.footer-col h2{
    font-size: 1em;
    justify-content: left;
    color: white;
}

.footer-col ul li{
    text-align: justify;
    color: white;
}


.footer-col a{
    color: white;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    float:none;
    padding: 2%;
}

footer h1{
    text-decoration: none;
    font-size: 2em;
    color: white;
}

#footer-text{
    font-size: .5em;
}

/*--------------------------------------------------------------------*/

/*--------------------------------------------------------------------*/

/*--------------------------------------------------------------------*/

/*---  M E D I A   Q U E R Y   --------------------*/

@media only screen and (max-width: 480px) {

    html,
    body{
        height: 100%;
    }

    header{
        width: 100%;
    }

    #logoText{
        font-size: 1em;
    }

    #hidden{
        visibility: visible;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        width: 100%;
        border-radius: 10px;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 1;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 2.5rem 0;
    }

    .navbar a{
        color: white;
        font-size: .8em;
    }

    .navbar img{
        width: 50%;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

/*--- content  ----*/

    .grid-container {
        display: grid;
        padding-left: 1.5%;
        padding-right: 1.5%;
        grid-template-areas: 
        'one one one'
        'two two two';
    }

    .one {
        width: 100%;
        padding: 2%;
        border: none;
    } 

    .two {
        width: 100%;
        padding: 2%;
    } 

    .text-block{
        font-size: 1em;
        margin-bottom: 5%;
    }

    .text-block h2 {
        font-size: 1.5em;        
        }

    .text-block h3 {
        margin-left: 5%;
        margin-right: 2%;
        padding-right: 1.5%;
        font-size: 1em;
    }

    .featured-listing {
        font-size: 1em;
        margin-left: 1%;
    }

    .featured-listing ul{
        padding-left: 2%;
        margin-bottom: 3.5%;
    }

    .landscape-card{
        margin-top: 15%;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 10%;
    }

    .landscape-card-text h2{
        font-size: .8em;
    }

    .landscape-card-text p{
        font-size: .8em;
        margin-top: none;
        padding-top: none;
    }

    #albumSingle{
        color: gray;
        font-size: .5em;
        margin-top: none;
        margin-bottom: none;
        padding-top: none;
        padding-bottom: none;
    }

    #screen{
        display: none;
    }

    #mobile{
        display: inline-block;
    }

    footer{
        flex-direction: column;
        margin-top: 20%;
    }

}