@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-top: 1%;
    margin-left: 5%;
    margin-right: 5%;
    grid-column-gap: 10px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-areas: 
    'left middle middle right'
    'left middle middle right'
    'two two two two'
    'three three three three'
    'four four four four'
    'five five five five';
}

.middle {
    grid-area: middle;
    margin-left: 5%;
    margin-right: 5%;
    margin-top: 5%;
    text-align: center;
    border-left: 1px solid rgb(213, 216, 222);
    border-right: 1px solid rgb(213, 216, 222);
}

.left {
    grid-area: left;
    margin-right: 15%;
    margin-top: 5%;
}

.right {
    grid-area: right;
    margin-left: 15%;
    padding-top: 20%;
}

.one {
    grid-area: one; 
    margin-top: 10%; 
    margin-bottom: 10%;  
    margin-left: 20%;
    margin-right: 20%;

}

.one img{
    width: 100%;
}

.two {
    grid-area: two;
    margin-top: 10%;
    padding-top: 2.5%;
    border-top: 1px solid gray;
}

.three {
    grid-area: three;
    border-top: 1px solid gray;
    border-bottom: 1px solid gray; 
    margin-bottom: 5%;

}

.four {
    grid-area: four; 

}

.five {
    grid-area: five;
    border-top: 1px solid gray;
    border-bottom: 1px solid gray;  

}

.row{
    display: flex;
    flex-direction: row;
}

.sub-section{
    flex: 1;
    margin: 2%;
}

#latest{
    font-size: 1em;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 1.2%;
    margin-top: 1.2%;
    letter-spacing: 2px;
}

#pop-related{
    font-size: 1em;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 10%;
    margin-top: 1.2%;
    letter-spacing: 3px;
    color: red;
}

/*--  Latest Feature CARD  ---------------*/

.feature-card-landscape {
  display: flex;
  margin-bottom: 10%;
  text-align: center;
}

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

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

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

.related-card-landscape {
  display: flex;
}

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


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

/*------------ feature text -------------------*/

.feature-card-text{
    border-top: 1px solid gray;
    border-bottom: 1px solid gray;
    padding-top: 20%;
    padding-bottom: 20%;
    text-transform: uppercase;
}

.feature-text-block{
    text-align: center;
}

#feature-paragraph{
    font-size: 1.8em;
    line-height: 90%;
}

.feature-card-text-2{
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    padding-top: 5%;
    padding-bottom: 5%;
    padding-left: 20%;
    padding-right: 20%;
}

.feature-card-text-2 a{
    color: black;
    text-transform: uppercase;
}

.feature-card-text-2 a:hover{
    color: gray;
}

/*------------ feature text ------------------*/



#main-feature-head{
    text-transform: uppercase;
    padding-top: 2.5%;
    padding-bottom: 2.5%;
    margin-left: 2.5%;
    margin-right: 2.5%;
    margin-bottom: 0;
    border-top: 1px solid red;
    border-bottom: 3px solid red;
    font-size: 2em;
    line-height: 85%;
}

#main-feature-text{
    padding: 2.5%;
    font-size: 1em;
    color: rgb(66, 62, 62);
}

#feature-text-sm{
    text-transform: uppercase;
    font-size: 1.2em;
    text-align: center;
    font-weight: 100%;
    line-height: 85%;
}

.text-block h2 {
    color: #202020;
    font-size: 1.8em;
    margin-bottom: 0;
}

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

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

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

#feature-side{
    padding-bottom: 5%;
    font-size: 1em;
    margin-top: 5%;
}

/*----------  music related ---------------*/

.side-block {
    font-size: .8em;
    margin-bottom: 5%;
}

#border-top-bttm{
    border-top: 1px solid gray;
    margin-top: 20%;
    margin-bottom: 20%;
}

.right a{
    color: black;
    text-decoration: none;
    font-style: normal;
    font-size: .8em;    
}

.right a:hover{
    color: gray;
}

.left a{
    color: black;
    text-decoration: none;
    font-style: normal;
    font-size: .8em;
}

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

#format{
    display: inline-block;    
    width: auto;
    text-align: center;
    text-transform: uppercase;
    font-size: .8em;
    margin-top: 2.5%;
    margin-bottom: 2.5%;
    padding-top: 1%;
    color: black;
    letter-spacing: 3px;
    border-top: 1px solid red;
    border-bottom: 3px solid red;
}

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

#centre-text{
    text-align: center;
    text-transform: uppercase;
    line-height: 90%;
}

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

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

#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;
}

#hilight{
    color: red;
}


/*---   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: #1C1B1B;
    border-top: 5px solid red;
    margin-top: 5%;
}

.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: 1.5em;
    }

    .navbar img{
        width: 50%;
    }

    .navbar{
        font-size: .5em;
    }

    .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;
        margin-left: 2%;
        margin-right: 2%;
        grid-template-areas:
        'middle middle middle middle'
        'left left left left'        
        'one one one one'
        'right right right right'
        'two two two two'        
        'three three three three'
        'four four four four'
        'five five five five';
        }

    .middle {
        width: 100%;
        margin-top: 2.5%;        
        padding: 0;
        border: none;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 1.5%;

    }

    .left {
        width: 100%;
        border: none;
        padding: 0;
        margin-left: 0;
        margin-right: 0;
        margin-top: 0;
    }

    .right {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .one {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .two {
        border-top: none;
    }

    .row{
        flex-direction: column;
        margin: 0;
    }

    .feature-card-text-2{
        padding-bottom: 5%;
        padding-left: 5%;
        padding-right: 5%;
    }

    .feature-card-landscape {
        font-size: 1em;
        margin-bottom: 20%;
    }

    #margin-top{
        margin-top: 15%;
    } 

    .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;
    }

    .right a{
        color: black;
        text-decoration: none;
        font-style: normal;
        font-size: 1em;
    }

    .left a{
        color: black;
        text-decoration: none;
        font-style: normal;
        font-size: 1em;
    }

    #button{
        font-size: 1em;
        padding-left: 4%;
        padding-right: 4%;
        padding-top: 3%;
        padding-bottom: 3%;
    }

    #artist{
        font-size: 1em;
    }

    #screen{
        display: none;
    }

    #mobile{
        display: inline-block;
    }

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

}