*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

.wrapper {
    width: 90%;
    margin: 0 auto;
}

h2{
    font-size: 2.1rem;
    letter-spacing: .1rem;
    text-transform: uppercase;
    padding: 3rem 0;
}

/*
login/cart area
*/



.userArea{
    height: 50px;
    width: 100%;
    position: fixed;
    top: 0;
    left:0;
    right: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 3rem;
    padding-right: 5rem;
    padding-bottom: 1rem;
    background-image: linear-gradient(to bottom,#adc9d4, #adc9d4 60%, #a94803);
    background-color: #adc9d4;
    z-index: 3;
}

.userArea a{
    text-decoration: none;
    font-size: 1.2rem;
}

.userArea a:hover {
    color: #cb7335;
}

/*
navigation area
*/

nav{
    height: 75px;
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    background-color: #a94803;
    z-index: 3;
}


nav ul{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
   }
   

nav li{
    list-style-type: none;
}

nav a{
    text-decoration: none;
    font-size: clamp(.9rem, 2vw, 1.3rem);
    text-transform: uppercase;
    color: #fccaca;
    letter-spacing: .05rem;
    font-weight: bold;
}

.navLogo img{
    height: 75px;
    width: auto;
}

nav a:hover{
    color: #410000;
}


.openbtn {
    font-size: 2rem;
    display: none;
    border: none;
    color: #fccaca;
    background-color: #a94803;
}

.mobileNav{
    width: 0;
    background-color: #a94803;
    position: fixed;
    top: 50px;
    overflow: hidden;
    transition: .3s;
    outline: 0;
    z-index: 4;
}

.mobileNav li:nth-of-type(1) {
    text-align: right;
}

.closeBtn2 a{
    position: absolute;
    right: 30px;
    font-size: 3rem!important;
    font-weight: 900!important;
    margin-right: 2rem!important;
}

.mobileNav li{
    list-style-type: none;
    padding: 1rem 1.5rem;
}

.mobileNav li:nth-of-type(2) {
    padding-top: 5rem;
}

.mobileNav a{
    width: fit-content;
    text-decoration: none;
    font-size: 1.2rem;
    text-transform: uppercase;
    color: #fccaca;
    letter-spacing: .12rem;
    display: block;
}

.mobileNav a:not(.closeBtn2 a) {
    margin-left: 1rem;
}

.mobileNav a:hover{
    color: #410000;
}



@media only screen and (max-width: 700px) {
    .topnav a{
        display: none;
    }
    a.navLogo{
        display: block;
    }
    .openbtn{
        display: block;
        position: absolute;
        left: 10%;
    }

    .openbtn:hover{
        color: #410000;
        cursor: pointer;
    }
}

/*
end of navigation area
*/

/*
Cookie area
*/

.cookieSection{
    display: block;
    height: 150px;
    min-width: 50%;
    position:fixed;
    top: -150px;
    left: 46%;
    transform: translateX(-46%);
    margin: 0 auto;
    background-color: #ff8a37;
    padding: 2rem 0;
    border-radius: 5rem 5rem;
    opacity: 0;
    z-index: 2;
}

.cookieSection p {
    width: 100%;
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.3rem); 
    word-wrap: break-word;
}

.accept{
    font-size: 1.1rem;
    border: none;
    min-width: 25%;
    text-decoration: none;
    padding: .5rem 1.5rem;
    background-color: #6700c7;
    color: white;
    letter-spacing: .1rem;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}



.accept:hover{
    background-color: #888888;
    cursor: pointer;
}

.cookieClose{
    font-size: 2rem;
    border: 0;
    min-height: 50px;
    min-width: 50px;
    background-color: #dfdfdf;
    color:#cb7335;
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-weight: bold;
    border-radius: 50% 50%;
    transform: translate(-20px, -40px);
    outline: 1px solid black;
}

.cookieClose:hover{
    color: #dfdfdf;
    background-color: #cb7335;
    cursor: pointer;
}

@media only screen and (max-width: 700px) {
    .cookieSection p {
        width: 70%;
        margin: 0 auto;
    }
    .cookieSection{
        height: 200px;
    }
}



/*
hero area
*/


.hero::before{
    display: block;
    content: "";
    height: 100px;
    margin-top: 25px;
}


.hero{
    background-image: linear-gradient(to right, white, #adc9d4 40%);
    min-height: 400px;
}

.hero .content{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.brand{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brandContent{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.brand h1{
    font-size: 3.5rem;
    font-size: clamp(1rem, 4vw, 4.5rem);
}

.brand img{
    max-width: 200px;
    height: auto;
}

.hero .bandImg{
    max-width: 45%;
    font-size: 0;
}

.bandImg img{
    max-width: 100%;
    height: auto;
}

@media only screen and (max-width: 600px) {
    .brand img{
        display: none;
    }
    .hero{
        position: relative;
    }

    .brand{
        width: 100%;
        position: absolute;
        top: 57%;
        transform: translateY(-57%);
    }
    .hero .bandImg{
        max-width: 100%;
    }
    .brand h1{
        background-color: #a94803;
        color: white;
        padding: .9rem 3rem;
    }

}

/*
end of hero area
*/


/*
tour highlights area
*/

.tourArea{
    background-image: linear-gradient(to bottom, white, #adc9d4 30%, #e5c0a5);
    padding-bottom: 2rem;
}

.tourHighlights .showsArea{
    width: 70%;
    margin: 2rem auto;
}

.showsArea {
    font-size: 1.3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px dashed black;
    border-bottom: 2px dashed black;
    padding: 1rem 0;
}

.showsArea ul{
    width: 50%;
    margin: 0 auto;
}

.showsArea li{
    list-style-type: none;
    padding: .5rem;
}

.showsArea a{
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    text-decoration: none;
    padding: 1rem 3rem;
    background-color: #410000;
    color: white;
    border-radius: 50vmin;
}

.showsArea a:hover{
    background-color: #fccaca;
    color: black;
    outline: 1px solid black;
}

@media only screen and (max-width: 700px) {
    .showsArea a{
        padding: .7rem 1.5rem;
    }
}

/*
end of shows area
*/

/*
product highlights
*/

.productSection{
    background-color: #e5c0a5;
    padding-top: 3rem;
    padding-bottom: 7rem;
}

.carouselWrapper{
    width: 85%;
    margin: 0 auto;
}

.carousel{
    position: relative;
    height: 550px;
    width: 75%;
    margin: 0 auto;
    padding: 3rem 0;
}

.carouselTrackContainer{
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.carouselTrack{
    position: relative;
    height: 100%;
    padding: 0;
    margin: 0;
    list-style-type: none;
    transition: transform 250ms;
}

.carouselSlide{
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.carouselBtn{
    height: 3rem;
    width: 4rem;
    position: absolute;
    top: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-50%);
    border: none;
    font-size: clamp(3rem, 1.5vw, 4rem);
    font-weight: bold;
    background-color: #91d7ff;
    padding: 0 1.5rem!important;
    cursor: pointer;
}

.carouselBtn:nth-last-of-type(1) {
    right: -5rem;
}
.carouselBtn:nth-last-of-type(2) {
    left: -5rem;
}



.highlights{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
}

.card {
    height: 100%;
    max-width: 350px;
    border: 2px solid black;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content:space-evenly;
    align-items: center;
    background-color: white;
}

.card h3{
    font-size: clamp(1.3rem, 2vw, 2.3rem);
    padding: 0;
}

.card p{
    font-size: clamp(.9rem, 1.5vw, 1.1rem);
    max-width: 70%;
    line-height: 1.5rem;
    letter-spacing: .12rem;
}

.cardBtn{
    border: none;
    background-color: #410000;
    color: white;
    padding: .8rem 0;
    width: 50%;
}

.cardBtn:hover{
    background-color: #bc8f8f;
    color: black;
    cursor: pointer;
}

.btnGroup{
    display: flex;
    justify-content:space-around;
    gap: 1rem;
    width: 100%;
    padding: 0 10px;
}

.carouselNav{
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem 0;
}

.carouselIndicator{
    border: 0;
    border-radius: 50%;
    height: 1rem;
    width: 1rem;
    background-color: #410000;
    cursor: pointer;
}

.carouselIndicator.currentSlide{
    background-color: #91d7ff;
    outline: 1px solid black;
}

.is-hidden {
    display: none;
}


@media only screen and (max-width: 950px) {
    .highlights .card:nth-of-type(3) {
        display: none;
    }

    .highlights .card{
        width: 50%;
    }
}

@media only screen and (max-width:750px) {
    .productSection .wrapper{
        width: 100%;
    }
    .productSection .carousel{
        width: 100%;
    }
    .carouselBtn{
        z-index: 1;
    }
    .carouselBtn:nth-last-of-type(1) {
        right: -2rem;
    }
    .carouselBtn:nth-last-of-type(2) {
        left: -2rem;
    }
    .productSection h2{
        padding-left: 2.5rem;
    }
}

@media only screen and (max-width: 500px) {
    .carouselBtn{
        padding: .5rem!important;
        width: 2rem;
    }
    .carouselBtn:nth-last-of-type(1) {
        right: 0;
        padding-left: 2rem;
    }
    .carouselBtn:nth-last-of-type(2) {
        left:  0;
    }
    .carouselWrapper{
        width: 95%;
    }
}
  

/*
album discription area
*/

.albumSection{
    background-image: linear-gradient(to bottom, #e5c0a5, #cb7335);
}

.albumShoutOut{
    width: 100%;
    display: flex;
}

.albumShoutOut figure{
    width: 50%;
    height: auto;
    font-size: 0;
}

.albumShoutOut img{
    width: 100%;
}

.albumContent{
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.albumContent h3{
    font-size: 1.7rem;
}

.albumContent p{
    width: 75%;
    font-size: clamp(.9rem, 3vw, 1.2rem);
    letter-spacing: .1rem;
    padding: 2rem 0;
}

.albumButtons button{
    border: none;
    background-color: #410000;
    color: white;
    padding: .8rem 1.3rem;
    display: inline-flex;
    justify-content: center;
}

.albumButtons button:nth-of-type(2) {
    margin-left: 2rem;
}

.albumButtons button:hover{
    background-color: #bc8f8f;
    color: black;
    cursor: pointer;
}

@media only screen and (max-width:950px) {
    .albumShoutOut{
        flex-direction: column;
    }
    .albumShoutOut figure{
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .albumShoutOut figure img{
        width: 50%;
    }

    .albumContent{
        width: 100%;
    }
}

/*
audio modal area
*/
.audioModal {
    display: none;
    position: fixed; 
    z-index: 1;
    padding-top: 40%; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.8); 
    cursor: pointer;
  }

  .audioContent{
    width: 80%;
    display: flex;
    justify-content:center;
    cursor: default;
    padding-left: 5rem;
  }

  .audioTracks {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888888;
    width: 100%;
    height: 100%;
  }

  .modalCloseBtn{
    width:7%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #a94803;
    color: white;
    border: 1px solid #888888;
    font-size: 1.8rem;
    padding: 1rem;
  }

.modalCloseBtn:hover{
    background-color: #907562;
    cursor: pointer;
}

.songLists li{
    list-style-type: none;
}

.titleControls{
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
    font-size: clamp(1rem, 2vw, 1.4rem);
    letter-spacing: .02rem;
    width: 100%;
}

.titleControls audio[controls]{
    width: 50%;
    margin: 0 auto;
    border-radius: 2rem;
    background-color: black;
}

audio[controls] {
    justify-self: flex-start;
    width: 100%;
}

.songTitle{
    width: 25%;
    text-align: right;
}

.songCredits{
    font-size: .9rem;
}

.songCredits a{
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    color: #a94803;
}

.songCredits a:hover{
    color: #11a911;
}

.playTrack {
    display: block;
}

.stopTrack {
    display: none;
}

@media only screen and (max-width:700px) {
    .titleControls{
        flex-direction: column;
        gap: .5rem;
        padding-bottom: 1rem;
        font-weight: bold;
    }
    .titleControls audio[controls]{
        width: 75%;
    }
    .songTitle{
        width: 100%;
        text-align: center;
    }
}

/*
form area
*/

.mailingArea{
    background-image: linear-gradient(to top, #abc9d4, #cb7335);
}

.mailingList{
    padding-top: 3rem;
    padding-bottom: 5rem;
}

.mailingListForm{
    display: flex;
    flex-direction: column;
    max-width: 25%;
    margin: 0 auto;
}

.mailingListForm p{
 font-size: 1.4rem;
 letter-spacing: .15rem;
 padding-bottom: 1rem;
}

.mailingListForm label{
    font-size: clamp(.9rem, 2vw, 1.1rem);
    font-weight: bold;
    letter-spacing: .2rem;
}

.mailingListForm input{
    height: 2rem;
    width: auto;
    margin: .5rem 0;
}


.joinBtn {
    border: none;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .15rem;
    padding: .5rem 2rem;
    margin-top: 1rem;
    background-color: #410000;
    color: white;
}

.joinBtn:hover {
    background-color: #fccaca;
    color: black;
    outline: 1px solid black;
    cursor: pointer;
}


.required{
    font-size: clamp(.9rem, 2vw, 1.1rem);
    text-transform: uppercase;
    letter-spacing: .1rem;
    color: #cd0404;
}

.success{
    font-size: clamp(.9rem, 2vw, 1.1rem);
    text-transform: uppercase;
    letter-spacing: .1rem;
    color: #59e959;
}

@media only screen and (max-width:1000px) {
    .mailingListForm{
        max-width: 50%;
    }
}

@media only screen and (max-width:650px) {
    .mailingListForm{
        max-width: 85%;
    }
}

/*
end of form area
*/

/*
footer area
*/

footer{
    background-color: #a94803;
    color: white;
}

.footerContent{
    min-height: 400px;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footerContent ul{
    font-weight: bold;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 5px dashed white;
}

.footerContent li{
    list-style-type: none;
}

.footerContent ul a{
    text-decoration: none;
    color: #fccaca;
}

.footerContent ul a:hover{
    color: #410000;
}

.footerContent p{
    padding: .5rem 0;
}

@media only screen and (max-width: 600px) {
    .footerContent{
        align-items: flex-start;
        width: 90%;
        margin: 0 auto;
    }
    .footerContent ul{
        width: 70%;
    }
}
