* {
	margin:0;
	padding:0;
    scroll-behavior: smooth;
}

:root {
    --globalcolor:  #fff;
    --contrast:  #000;
}

::selection {
    background: var(--contrast);
    /* background color BKP : 604be3 */
    color:  var(--globalcolor);
}

body{
    background-color: var(--contrast);
    font-family: Helvetica, Arial, sans-serif;
    color:  var(--globalcolor);
    position: absolute;
    width: 100%;
    height: 100%;
}

svg{
    fill:var(--globalcolor);
}







#shop, #music, #tournee{
    position: relative;
    z-index: 99;
    padding: 50px 0 150px 0;
    background-color: var(--globalcolor);
    text-align: center;
}
#music{
    position: relative;
    z-index: 99;
    padding: 50px 0;
    background-color: var(--globalcolor);
    text-align: center;
}
#music img{
    width: 90vw;
    max-width: 1080px;
    margin: 0 auto;
}


.product{
    display: inline-block;
    vertical-align: top;
    padding: 0 0 12px 0;
    max-width: 500px;
    width: 23vw;
    margin: 5px;
    border: 1px solid rgba(0,0,0,0);
}

.product:hover{
    border: 1px solid rgba(0,0,0,1);
}

.product img {
    width: 100%;
}
.product .details {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.product p {
    color: var(--contrast);
    font-size: 12px;
    display: inline-block;
    text-align: left;
}



#facebook{
    background-image:url(../img/fb.svg?rld);
}
#tiktok{
    background-image:url(../img/tt.svg);
}
#spotify{
    background-image:url(../img/sp.svg?rld);
}
#deezer{
    background-image:url(../img/de.svg?rld);
}
#apple{
    background-image:url(../img/am.svg?rld);
}
#amazon{
    background-image:url(../img/az.svg?rld);
}
#songkick{
    background-image:url(../img/sk.svg?rld);
}
#twitter{
    background-image:url(../img/tw.svg?rld);
}
#instagram{
    background-image:url(../img/ig.svg?rld);
}
#youtube{
    background-image:url(../img/yt.svg?rld);
}
#soundcloud{
    background-image:url(../img/sc.svg?rld);
}
#tidal{
    background-image:url(../img/td.svg);
}

#header{
    width: 100vw;
    height: 100vh;
    font-size: 18px;
    text-align: center;
    background: url(../img/background.jpg?rld1) no-repeat center / cover;
}

#header #placeholder img {
    padding: calc(50vh - 18.25px - 100px - 7.5vw) 0 calc(50vh - 18.25px - 7.5vw) 0;
}

#menu{
    width: 90vw;
    margin: 0 auto;
    text-align: center;
    display: flex;
    justify-content: space-between;
}


#menu a, #music p,  #music h1, #tour h2 {
    text-align: center;
    font-weight: 600;
    padding: 10px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: .05rem;
}

#menu a {
    color: var(--globalcolor);
}

#music p,  #music h1 {
    color: var(--contrast);
}

#menu a:hover{
    opacity: 0.5;
}

.externalLink{
    background-image: url(../img/externallink.svg);
    background-position: 90% 48%;
    background-repeat: no-repeat;
    background-size: 15px;
}

#logo{
    display: inline-block;
    background-image: url(../img/logo.svg?rld1);
    background-position: top;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100px;
    height: 100px;
    margin-top: 25px;
}

#listenBtn{
    background-image: url('../img/listen.svg');
    width: 120px;
}
#watchBtn{
    background-image: url('../img/watch.svg');
    width: 100px;
}
#tourBtn{
    background-image: url('../img/tour.svg');
    width: 90px;
}
#storeBtn{
    background-image: url('../img/store.svg');
    width: 95px;
}
#artBtn{
    background-image: url('../img/art.svg');
    width: 80px;
}

#store:hover{
    transition: 0.1s;
    margin-right: 10px;
}
#store{
    transition: 0.5s;
    display: block;
    font-weight: bold;
    padding: 5px 0;
    color: #111;
    position: fixed;
    right: 20px;
    top:20px;
}


#artwork{
    transition:0.5s;
    display: inline-block;
    margin:10px auto;
    width:200px;
    height:200px;
    background-image:url(../img/cover.jpg);
    background-position:center center;
    background-repeat:no-repeat;
    background-size:100%;
    background-color: var(--globalcolor);
    border-radius:3px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 2px,
                rgba(0, 0, 0, 0.2) 0px 4px 4px,
                rgba(0, 0, 0, 0.2) 0px 8px 8px,
                rgba(0, 0, 0, 0.2) 0px 16px 16px,
                rgba(0, 0, 0, 0.2) 0px 32px 32px,
                rgba(0, 0, 0, 0.2) 0px 64px 64px;
}



#links{
    width: fit-content;
    padding: 2px 15px 0 15px;
    text-align: center;
    border: 2px solid var(--globalcolor);
    border-radius: 50px;
    display: block;
    margin: -6vw auto 0 auto;
}

#newsletter{
    width: 280px;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
}
#social{
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 5px;
    text-align: center;
}
    #social a, #listen a{
        width: 35px;
        height: 35px;
        display: inline-block;
        text-decoration: none;
        padding: 0;
    }
    #social a:hover, #listen a:hover{
        opacity: 0.5;
    }

.icon{
    background-position: center center;
    background-size: 30px;
    background-repeat: no-repeat;
}

a{
    text-decoration: none;
}

.lien{
    text-transform: uppercase;
    color:  var(--globalcolor);
    letter-spacing: 0.2em;
}
.overlay a{
    transition: 0.5s;
    text-decoration: none;
    color:  var(--globalcolor);
    font-size: 14px;
    display: inline-block;
    margin: 10px auto;
    letter-spacing: 0.2em;
}
.overlay .lien:hover a{
    transition: 0.1s;
    letter-spacing: 0.5em;
}

.overlay h1{
    text-transform: uppercase;
    margin-top: 75px;
}


#footer{
    width: 100vw;
    padding: 50px 0;
}






#mentionsLegales{
    text-align: center;
    opacity: 0.2;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}





#mentionsLegales h1{
    text-align: center;
    font-weight: lighter;
    margin: 0 auto;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}


#mentionsLegales a{
    color: white;
    text-decoration: underline;
    margin: 5px;
}





#logoFooter{
        height: 200px;
        opacity: 0.2;
        margin: 0 auto;
        background-size: contain;
        background-position: center center;
        background-repeat: no-repeat;
        background-image:url(../img/logo.svg);
    }
    #socialFooter{
        margin: 10px auto;
        text-align: center;
    }
    #socialFooter a{
        transition:0.5s;
        border-radius: 3px;
        width: 35px;
        height: 35px;
        transition:0.2s;
        display:inline-block;
        text-decoration:none;
        opacity: 0.2;
    }

    #socialFooter a:hover{
        opacity: 1;
    }




#tour{
    max-width: 700px;
    margin: 0 auto;
    padding: 150px 0;
}

.bit-rsvp, .bit-top-track-button, .bit-nav-bar-container {
    display: none!important;
}
.bit-widget.bit-layout-ipad .bit-event .bit-details {
   text-align: left !important;
}
.bit-widget.bit-layout-ipad .bit-event .bit-details {
    letter-spacing: normal!important;
    font-size: 12px!important;
}




.buttonFooter {
    display: inline-block;
    width: fit-content;
    margin: 0 auto;
    padding: 5px 15px;
    opacity: 0.2;
    text-transform: uppercase;
    text-align: center;
    color: var(--globalcolor);
    border: 1px solid var(--globalcolor);
}
.buttonFooter:hover {
    opacity: 1;
}
.mobileOnly {
    display: none;    
}
.desktopOnly {
    display: block;
}












.pageSecondaire #menu a{
    color: var(--contrast);
}
.pageSecondaire .productDetails {
    display: block;
    width: calc(90vw - 50px);
    max-width: 1080px;
    margin: 50px auto;
    padding: 50px 25px;
    border: 1px solid var(--contrast);
}





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

    .mobileOnly {
        display: block;
    }
    .desktopOnly {
        display: none;
    }

    #shop h2 {
        font-size: 40px;
    }
    #shop h3 {
        font-size: 18px;
    }
    #annonce{
        width: 200px;
        left: 50%;
        transform: translateX(-50%) translateY(-60%);
    }
    #social{
        float: none;
    }
    #social a{
        width: 30px;
    }
    .product {
        width: 45vw;
        min-height: 55vw;
    }

    #header #placeholder {
        height: calc(96vh - 26vw - 46.5px);
    }
}