body {
    padding: 16px;
    font-size: 16px;
    background-image: url("../images/trans3.gif");
    background-color: #fff;
    text-transform: lowercase;
}

a {
    color: #000;
}

a:visited {
    color: #000;
}

a:active {
    color: #305C38;
}

.wrapper {
    max-width: 760px;
    margin: auto;
}

i.lg {
    font-size: large;
    font-style: normal;
}

ul.news-list {
    padding-left: 0;
}

ul.news-list  li {
    list-style: none;
    margin-bottom: 18px;        
}

h2 {
    color: #800000;
    font-size: x-large;
    font-weight: normal;
}

h3 {
    font-size: large;
}

/*********/
/* HOME  */
/*********/

.home {
    max-width: 500px;
    text-align: center;
    margin: auto;
    padding-top: 46px;
}

.home img {
    width: 100%;   
}

.home .banner {
    padding-bottom: 12px;       
}

.home .home-nav-center img {
    max-width: 288px;
}

.home .credit {
    font-size: 12px;
}

.home .home-nav .home-nav-left,
.home .home-nav .home-nav-center,
.home .home-nav .home-nav-right
{
    flex-grow: 1;
}

.home .home-nav {
    width: 100%;
    display: flex;
    align-items: center;
}

.home .home-nav ul {
    list-style: none;
    padding-left: 0;
}

.home .home-nav li {
    margin-bottom: 10px;
}

.home .home-nav-left {
    text-align: left;
}

.home .home-nav-right {
    text-align: right;
}

.home .home-nav-left li:before {
    content: "--";
    margin-right: 12px;
    font-size: large;   
}

.home .home-nav-right li:after {
    content: "--";
    margin-left: 12px;
    font-size: large;   
}


@media only screen and (max-width: 500px) {
    .home-nav-left {
        display: none;
    }

    .home-nav-right {
        display: none;
    }
}


/*********/
/* VIDEO */
/*********/

.video {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    margin-bottom: 24px;
}

.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


/**********/
/* LYRICS */
/**********/

.lyrics {
    display: flex;
    max-width: 550px;
    margin: 20px 0;
}

.lyrics .lyrics-image {
    flex-grow: 1;
    background-image: url("../images/bhouse.gif");
    background-size: contain;
    background-repeat: no-repeat;
}

.lyrics .lyrics-image img {
    height: 100%;
}

.lyrics .lyrics-list {
    
    white-space: nowrap;
}

.lyrics .lyrics-list ul {
    list-style: none;
    text-align: right;
}

.lyrics .lyrics-list li::before {
    content: "-";
    margin-right: 6px;
}

.lyrics .lyrics-list li::after {
    content: "-";
    margin-left: 6px;
}

@media only screen and (max-width: 500px) {
    .lyrics {
        display: block;
    }

    .lyrics .lyrics-image {
        margin-bottom: 20px;
        margin-left: auto;
        margin-right: auto;
        height: 450px;
        background-position: center;
    }

    .lyrics .lyrics-list ul {
        text-align: center;
        padding-left: 0;
    }
}


/*********/
/* PRESS */
/*********/

.press-list li {
    margin-bottom: 10px;
}

.gallery {
    list-style: none;
    margin: 0 0 30px 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    text-align: center;
}

@media only screen and (max-width: 650px) {
    .gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (max-width: 550px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}


/*********/
/* MUSIC */
/*********/

.music-list {
    list-style: none;
    margin: 30px 0 30px 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    text-align: center;
}

.music-list img {
    margin-bottom: 4px;
}

@media only screen and (max-width: 650px) {
    .music-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 450px) {
    .music-list {
        grid-template-columns: repeat(1, 1fr);
    }
}

ul.track-list {
    padding-left: 0;
}

ul.track-list li {
    list-style: none;
}

ul.track-list li .track-no {
    font-weight: bold;
    margin-right: 10px;
}


/************/
/* THE BAND */
/************/

.the-band {
    display: flex;
    width: 590px;
    margin: 20px auto 20px auto;    
}

.the-band .dino-text {
    text-align: right;
}

.the-band .dino-text img,
.the-band .jay-text img {
    margin-bottom: 36px;
}

.the-band .jay-text {
    text-align: left;
}

.the-band .band-desktop {
    text-align: center;
    padding: 0 6px 0 6px;
}

.the-band .band-mobile {
    display: none;
}

.the-band p {
    margin: 0;
}

.the-band-address {    
    text-align: center;
}

@media only screen and (max-width: 650px) {
    .the-band {
        display: block;
        width: 100%;
    }

    .the-band .band-desktop {
        display: none;
    }

    .the-band .band-mobile {
        display: block;
        text-align: center;
    }

    .the-band .dino-text {
        width: 100%;        
        text-align: center;
        margin-bottom: 30px;
    }
    
    .the-band .jay-text {
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }

    .the-band .dino-text img,
    .the-band .jay-text img {
        margin-bottom: 10px;
    }
}


/************/
/* HEADER   */
/************/
.header{
    width: 100%;
    position: relative;
}

.logo {
    display: block;
    height: 80px;
    background-image: url("../images/headphones.png");
    background-size: contain;
    background-repeat: no-repeat;
    margin-bottom: 16px;
    position: relative;
}

.logo h1 {
    position: absolute;
    margin: 0;
    padding: 0;
    top: -16px;
    left: 73px;
    font-size: 38px;
    font-weight: 700;
    font-family: "Oswald", sans-serif;
}


/***************/
/* MOBILE MENU */
/***************/
.nav{
    position: fixed;
    width: calc(100% - 40px);
    height: calc(100% - 80px);
    background-color: var(--black);
    background-image: url(../images/trans3.gif);
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: 888;

}

.menu {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: auto;
    max-height: 650px;
}

.menu li {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    flex: 1;
}

.menu a {
    display: block;
    padding: 4px;
    color: var(--white);
}

.menu a:hover {
    background-color: var(--gray);
}

.nav {
    max-width: 0;
    max-height: 0;
}

@media only screen and (max-height: 620px) {
    .menu li {
        font-size: 20px;
    }
}

@media only screen and (max-height: 550px) {
    .menu li {
        font-size: 18px;
    }
}


/***************/
/* MENU TOGGLE */
/***************/

.side-menu:checked ~ nav{
    max-width: 100%;
    max-height: 100%;
    padding: 60px 20px 20px 20px;
}

.side-menu:checked ~ .hamb .hamb-line {
    background: transparent;
}

.side-menu:checked ~ .hamb .hamb-line::before {
    transform: rotate(-45deg);
    top:0;
}

.side-menu:checked ~ .hamb .hamb-line::after {
    transform: rotate(45deg);
    top:0;
}

body:has(.side-menu:checked) {
    overflow: hidden;
}

/******************/
/* HAMBURGER ICON */
/******************/
.hamb {
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    padding: 18px 14px;
    z-index: 999;
}

.hamb-line {
    background: #000;
    display: block;
    height: 3px;
    position: relative;
    width: 26px;
}

.hamb-line::before,
.hamb-line::after {
    background: #000;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

.hamb-line::before {
    top: 7px;
}

.hamb-line::after {
    top: -7px;
}

.side-menu {
    display: none;
}
