/* [google fonts] */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* [SITE WIDE STYLES] */
* {
    padding:0;
    margin:0;
    box-sizing:border-box;
}
  
:root {
    --color-black:rgba(5, 11, 9, 1);
    --color-white:rgba(255, 255, 255, 1);
    --color-accent:rgba(251, 54, 46, 1);
  
}
  
html {
    background-color: var(--color-black);
    color:var(--color-white);
  
}
  
body {
    font-family: 'Montserrat', sans-serif;
}
  
  
h1, h2, h3, h4, h5, h6 {
    
    line-height:1.5em;
    font-weight: 600;
    letter-spacing: -.04em;
}
  
p {
    line-height:1.5em;
    font-weight:300; 
    margin: 0 0 1em 0;
}
  
strong {
    font-weight:500;
}
  
a {
    text-decoration:none;
}
  
a:hover {
    text-decoration:none;
}

header {
    background-color: blue;
}


.hero__main {
    margin: 0 auto;
    background-image: url(images/hero__background.jpg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center bottom;
    padding: 0;
    height:70vh;
    background-color: var(--color-black);
    position: relative;
}

.hero__main__content {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 12.5%;
    left: 50%;
    transform: translate(-50%, 0);

}

.hero__main__content h1 {
    margin: 0 auto;
    width: 7em;
    height: 3.5em;
    background-image: url(images/logo.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    text-indent: -10000px;
}

.newsletter {
    background-color: var(--color-black);
    background-image: url(images/newsletter__background.jpg);
    background-size: cover;
    background-position: center center;
    padding: 4em 1em;
    text-align: center;
}

#mc_embed_signup input[type=submit] {
    background-color: red;
}

.nextshow {
    padding: 4em 1em;
    text-align: center;
}

.nextshow h2 {
    margin: 0 0 1em 0;
}

.nextshow img {
    width: 100%;
    max-width: 400px;
}

.nextshow a {
    display: inline-block;
    padding: .5em 1em;
    font-size: .9em;
    color: var(--color-white);
}

.latestrelease {
    padding: 4em 1em;
    text-align: center;
    background-color: rgba(70, 45, 45, 1);
}

.latestrelease h2 {
    margin: 0 0 1em 0;
}

.latestrelease img {
    width: 100%;
    max-width: 400px;
    border: 1px solid var(--color-black);
}

.latestrelease h3 {
    margin: .5em 0 .5em 0;
}

.cta__button {
    display: inline-block;
    margin:0 1em 1em 1em;
    padding: .5em 1em;
    background-color: var(--color-accent);
    color: var(--color-white);
}


.listen {
    padding: 2em 1em;
    text-align: center;
    background-color: var(--color-white);
    color: var(--color-black);
}

.listen h2 {
    margin: 0 0 1em 0;
}

.listen iframe {
    max-width: 600px;
}

.shows {
    padding: 2em 1em;

    background-color: rgb(192, 161, 122);
    color: var(--color-black);
    text-align: center;
}















footer {
    padding: 1em;
    text-align: center;
}

.social {
    display: flex;
    padding: 1em;
    flex-direction: row;
    justify-content: center;
    gap: 2em;
    list-style: none;
}


.social__facebook {
    display:block;
    width:2rem;
    height:2rem;
    text-indent:-1000px;
    overflow:hidden;
    background-repeat:no-repeat;
    background-position: top left;
    background-size:100% 100%;
    background-image: url(images/social__facebook.png);
}

.social__instagram {
    display:block;
    width:2rem;
    height:2rem;
    text-indent:-1000px;
    overflow:hidden;
    background-repeat:no-repeat;
    background-position: top left;
    background-size:100% 100%;
    background-image: url(images/social__instagram.png);
}

.social__tiktok {
    display:block;
    width:2rem;
    height:2rem;
    text-indent:-1000px;
    overflow:hidden;
    background-repeat:no-repeat;
    background-position: top left;
    background-size:100% 100%;
    background-image: url(images/social__tiktok.png);
}

.social__youtube {
    display:block;
    width:2rem;
    height:2rem;
    text-indent:-1000px;
    overflow:hidden;
    background-repeat:no-repeat;
    background-position: top left;
    background-size:100% 100%;
    background-image: url(images/social__youtube.png);
}

.copyright {
    margin: 2em 0 0 0;
    padding: 0;
    font-size: .75em;
}


/* [LANDSCAPE MOBILE SCREENS] */
@media screen and (min-width: 600px){
    .hero__main {
        background-position: center 85%;
    }
}


/* [DESKTOP SCREENS] */
@media screen and (min-width: 960px){
    .rows {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2em;

    }

    .latestrelease .rows {
        flex-direction: row-reverse;
    }

}

