:root {
    --font-classic: 48px;
    --font-title: 224px;
    --font-subtitle: 124px;
    --highlite-color: #3271A7;
  }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    color: #000;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    
}
body.lock-scroll {
    overflow: hidden;
}

.show{ 
    display: block;
}
.hide{
    display: none;
}


.highlite-color{
    color: var(--highlite-color);
}
.stroke-black{
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: var(--highlite-color);
    color: black;

    transition: 0.4s all;
}
.stroke-black:hover{
    color: var(--highlite-color);

}

.underline{
    border-bottom: var(--highlite-color) solid 3px;
}




/* ------------------ NAVIGATION ------------------ */
.navbar-brand{
    font-weight: 900;
    font-size: var(--font-classic);
}

.navbar{
    position: absolute;
    width: 100%;
    padding: 0;
    height: 80px;
    z-index: 50;
}
.navbar.fixed{ 
    width: 100%;
    position: fixed;
    animation-name: slideIn;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards; /
}

@keyframes slideIn {
    0% {
      top: -100px;
    }
    100% {
      top: 0px;
    }
  }

.bg-body-tertiary{
    background-color: white;
    background: red;
}
.navbar .container-fluid{
    background-color: white;
    height: 100%;
}

.navbar-collapse{
    display: flex;
    align-items: center;
    justify-content: right;
    background-color: white;
}

.desktop-nav .navbar-nav{
    display: flex;
    justify-content: space-evenly;
    text-align: right;
    font-size: 21px;
    font-weight: 500;
    text-shadow: none;
}

.desktop-nav .navbar-nav .nav-item.language-item{
    display: flex;
    align-items: center;
    color: var(--bs-navbar-color);
}
.language-item .language-link{
    justify-content: center;
    background-color: white;
    border: none;
    border-color: white;
    color: var(--bs-navbar-color);
}
.language-item .language-link.active{
    color: black;
}




.desktop-nav .navbar-nav .nav-item .nav-link:hover{
    color: black;
}

.desktop-nav .navbar-nav .nav-item {
    float: left;
    margin-left: 5rem;
}


.mobile-nav {
    display: none;
}
.hamburger {
    display: none;
    position: relative;
    right: 2%;
}

.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: #fff;
}



/* ------------------ HOME ------------------ */
.home__wrapper{
    height: 90vh;
    /* width: 100%; */
    margin-top: 80px;
    padding: 0;
    margin: 0;
}
.home__wrapper .row-line{
    display: flex;
    justify-content: space-between;
    height: 100%;
    width: 100%;

    background: rgb(255, 255, 255);
    background: linear-gradient(20deg, var(--highlite-color) 0%, rgba(255,255,255,0) 40%); 
}
.home__wrapper .row-line .left-side{
    height: 100%;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    padding-left: 5em;
}

.home__wrapper .row-line .left-side .text__wrapper{
    margin: 0;
}

.home__wrapper .row-line .left-side .text__wrapper .title__wrapper .title{
    font-size: var(--font-title);
    font-weight: bold;
    text-transform: uppercase;
}

.home__wrapper .row-line .left-side .text__wrapper .title__wrapper .subtitle{
    font-size: var(--font-classic);
    font-weight: 100;
    text-transform: uppercase;
}
.home__wrapper .row-line .left-side .text__wrapper .title__wrapper .subtitle span{
color: var(--highlite-color);
}

.home__wrapper .row-line .left-side .text__wrapper .button__wrapper{
    margin-top: 50px;
    width: 200px;
}
.home__wrapper .row-line .left-side .text__wrapper .button__wrapper .btn-booking{
    font-size: 28px;
    background-color: #2C2F34;
    color: white;
    width: 100%;
    padding: 10px 0;
    transition: 0.4s all;
}
.home__wrapper .row-line .left-side .text__wrapper .button__wrapper .btn-booking:hover{
    box-shadow: 7px 20px 33px -11px rgba(0,0,0,1);
-webkit-box-shadow: 7px 20px 33px -11px rgba(0,0,0,1);
-moz-box-shadow: 7px 20px 33px -11px rgba(0,0,0,1);
}


.home__wrapper .row-line .right-side{
    display: flex;
    justify-content: right;
    width: 100%;
    height: 100vh;
    padding: 0;
    margin: 0;

}
.home__wrapper .row-line .right-side .image__wrapper{
    display: flex;
    align-items:end;
    width: 100%;

}

.home__wrapper .row-line .right-side .image__wrapper img{
    width: 100%;
    height: 100%;
}

.home__wrapper .row-line .right-side .icons__wrapper{
    position: relative;
    width: 170px;
    display: flex;
    justify-content: space-between;
    top: -130px;
    left: -10px;
    z-index: 1;
}
.home__wrapper .row-line .right-side .icons__wrapper img{
    width: 30px;
    height: 30px;
    transition: transform 0.3s;
}
.home__wrapper .row-line .right-side .icons__wrapper img:hover{
    transform: scale(1.2);
}

/* ------------------ BOOKING ------------------ */

.copied-popover {
    display: block;
    position: relative;
    margin-bottom: 10px;
    opacity: 0;
    cursor: default;
    user-select: none;
  }
  
.show {
    opacity: 1
}

@keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
@keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
.fade-out {
    animation-name: fadeOut;
    animation-duration: 1s;
}

.fade-in {
animation-name: fadeIn;
animation-duration: 1s;
}


.booking--section{
    height: 800px;
    width: 100%;
    background-color: black;
    color: white;
    text-transform: uppercase;
}

.booking--section .container-fluid{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.booking--section .container-fluid .booking-info__wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.booking--section .container-fluid .booking-info__wrapper .booking-mail{
    font-size: 3em;
    transition: all 0.4s;
    cursor: pointer;
}
.booking--section .container-fluid .booking-info__wrapper .booking-mail:hover{
    transform: scale(1.1);
}
.booking--section .container-fluid .booking-info__wrapper .divider{
    display: block;
    height: 3px;
    width: 60%;
    background-color: var(--highlite-color);
}
.booking--section .container-fluid .booking-info__wrapper .booking-text{
    text-align: center;
    width: 60%;
    font-size: 1.8em;
}



/* ------------------ TOUR SECTION ------------------ */

.tour--section{
    background: rgb(255, 255, 255);
    background: linear-gradient(0deg, var(--highlite-color) -80%, rgba(255,255,255,0) 70%); 
    min-height: 1050px;
}

.tour__wrapper {
    margin-top: 150px;
}

#tickets-info{
    margin-top: 70px;
}


.tour--section .tour__wrapper .row .left-side .content__wrapper .title{
 font-size: var(--font-subtitle);
 font-weight: 900;
    text-transform: uppercase;
}

.tour--section .tour__wrapper .row .left-side .content__wrapper{
    width: 100%;
}

.tour--section .tour__wrapper .row .left-side .content__wrapper .tour-list__wrapper{
    margin-top: 0px;
    width: 100%;
}
.tour--section .tour__wrapper .row .left-side .content__wrapper .tour-list__wrapper ul{
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style-type: none;
}
.tour--section .tour__wrapper .row .left-side .content__wrapper .tour-list__wrapper ul li{
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: rgb(118, 118, 118) solid 1px;
    width: 80%;
    font-size: var(--font-classic);
    /* font-size: 32px; */
    text-transform: uppercase;
    margin-top: 10px;
}
.ticket-button {
    font-size: 22px;
    margin-left: 70px;
    margin-bottom: 10px;
    background: #000;
    color: white;
    border-radius: 1px;
    padding: 5px 30px;
}
.ticket-button:hover{
    border: #000 solid 1px;
    background: none;
}

.tour--section .tour__wrapper .row .right-side{
    height: 800px;
}
.tour--section .tour__wrapper .row .right-side .design-title{
    position: relative;
    top: 130px;
    left: 35%;

    text-transform: uppercase;
    font-size: 300px;
    font-weight: 700;
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: var(--highlite-color);
    color: white;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transform: translateX(-50%);
    z-index: -1;
}
.tour--section .tour__wrapper .row .right-side .image__wrapper{
    position: relative;
    top: -300px;
    height: 100%;
    width: 100%;
}
.tour--section .tour__wrapper .row .right-side .image__wrapper img{ 
    height: 100%;
}

/* ------------------ NEWEST SONG ------------------ */

.listen-now--section {
    width: 100%;
    height: 500px;
    background-color: #000;
    /* overflow: hidden; */
}
.listen-now--section .listen-now__wrapper{
    display: flex;
    justify-content: center;
    /* align-items: center; */
}
.listen-now--section .listen-now__wrapper .play-music__wrapper{
    width: 50%;
}


.play-music__wrapper .rectangle {
    width: 100%;
    height: 100%;
    position: relative;
    transition: 0.4s all;
}
.play-music__wrapper .rectangle .fa-play{
    padding: 20px;
    padding-left: 30px;
}
.play-music__wrapper .rectangle .fa-pause{
    padding: 20px 30px;
    padding-right: 23px;
}
.play-music__wrapper .rectangle .play-main-song-icon{
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-size: 50px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.571);
    border-radius: 50%;
    z-index: 20;
    transition: 0.4s all;
  }


.listen-now--section .listen-now__wrapper .play-music__wrapper .rectangle img{
    position: relative;
    border: solid var(--highlite-color) 4px;
    width: 500px;    
    position: relative;
    top: -120px;
    transition: 0.4s all;
    cursor: pointer;
}
.listen-now--section .listen-now__wrapper .play-music__wrapper .rectangle img:hover{
    transform: translateY(-20px);
}
.listen-now--section .listen-now__wrapper .play-music__wrapper .rectangle:hover ~ .play-main-song-icon {
    background: black;
    transform: translateY(-70%) translateX(-50%);
}

.listen-now--section .listen-now__wrapper .text__wrapper{
    overflow: hidden;
    max-height: 500px;
}
.listen-now--section .listen-now__wrapper .text__wrapper h1:nth-child(1){
    color: white;
    font-size: var(--font-subtitle);
    font-weight: 700;
    text-transform: uppercase;
    text-align: left;
    width: 80%;
    margin-top: 20px;
}

.listen-now--section .listen-now__wrapper .text__wrapper .arrows{
    position: relative;
    top: -120px;
    font-size: 420px;
    font-weight: 800;
    background-color: transparent;
    color: var(--highlite-color);

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* ------------------ OTHER SONGS ------------------ */

.my-music--section{
    margin-top: 5em;
    margin-bottom: 5em;
}

.my-music--section .container-fluid{
    padding-left: 5em;
}

.my-music--section .container-fluid .title{
    font-size: var(--font-subtitle);
    text-transform: uppercase;
    font-weight: 800;
    color: #000;
}

.my-music--section .container-fluid .flex__wrapper{
    display: flex;
    align-items: center;
}
.my-music--section .container-fluid .flex__wrapper .my-music__wrapper{
    width: 1200px;
}
.my-music--section .container-fluid .flex__wrapper .my-music__wrapper .images__wrapper{
    min-width: 90%;
}
.my-music--section .container-fluid .flex__wrapper .my-music__wrapper img{
    width: 350px;
    height: 350px;
    margin: 10px;
    border: solid var(--highlite-color) 2px;
    transition: 0.4s all;
}
.my-music--section .container-fluid .flex__wrapper .my-music__wrapper img:hover{
transform: scale(1.1);
}

.my-music--section .container-fluid .flex__wrapper .subtitle{
    font-size: var(--font-subtitle);
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'DM Mono', monospace;
    min-width: 600px;
    margin-left: 60px;
}

.hashtag{
    font-size: 140px;
}


/* ------------------ ABOUT ME ------------------ */

.about-me--section{
    padding-top: 200px;
    background: black;
}

.about-me--section section{
    transition: opacity 0.5s ease;

}

.about-me--section .about-me--head-sec{
    position: relative;
    padding: 0px 0px;
    padding-bottom: 0;
    height: 150vh;
    display: flex;
    justify-content: center;
}
.about-me--section .about-me--head-sec .wrap{
    width: 100%;
    height: 700px;
    top: 200px;
    margin-top: 200px;
    position: sticky;
    overflow: hidden;
}


.about-me--section .about-me--head-sec .container-fluid{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 650px;
}
.about-me--section .about-me--head-sec .title-aboutme__wrapper{
    position: relative;
    display: flex;
    justify-content: space-between;
    top: 250px;
    left: 2%;
    width: 86%;
}
.about-me--section .about-me--head-sec .title-aboutme__wrapper .title-aboutme{
    font-size: var(--font-subtitle);
    text-transform: uppercase;
    font-weight: 800;
    color: white;
}
.about-me--section .about-me--head-sec .title-aboutme__wrapper .title-aboutme.right{
    left: -40px;
    /* overflow: unset  */
}

.about-me--section .about-me--head-sec .container-fluid .player__wrapper{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    width: 450px;
    height: 600px;
    flex-shrink: 0;

    border-radius: 65px;
    background: #FFFDFD;
    top: -100px;
}

.about-me--section .about-me--head-sec .container-fluid .player__wrapper .upper{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-me--section .about-me--head-sec .container-fluid .player__wrapper .circle__wrapper{
    border-radius: 237px;
    width: 320px;
    height: 320px;
    background: url(../assets/ME.JPG), lightgray 50% / cover no-repeat;
    background-position: center;
    background-size: 320px;
}

.about-me--section .about-me--head-sec .container-fluid .player__wrapper .title{
    font-weight: 800;
    margin: 25px 0;
    font-size: var(--font-classic);
    text-transform: uppercase;
}

.about-me--section .about-me--head-sec .container-fluid .player__wrapper .player-bar__wrapper {
    align-items: center;
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    margin-bottom: 20px;
}

.about-me--section .about-me--head-sec .container-fluid .player__wrapper .player-bar__wrapper .play-btn__wrapper{
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s all;
    cursor: pointer;
}
.about-me--section .about-me--head-sec .container-fluid .player__wrapper .player-bar__wrapper .play-btn__wrapper:hover{
    transform: translateY(-10px);
}

.about-me--section .about-me--head-sec .container-fluid .player__wrapper .player-bar__wrapper .play-btn__wrapper .multimedia-btn{
    transition: 0.3s all;
}


.about-me--section .about-me--head-sec .container-fluid .player__wrapper .player-bar__wrapper .play-btn__wrapper .circle{
    width: 80%;
    height: 80%;
    position: relative;
    top: -50%
}



.about-me--section .about-me--head-sec .container-fluid .player__wrapper .player-bar__wrapper .player-bar {
    width: 100%;
    background: #D9D9D9;
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    height: 10px;
    width: 100%;
    border-radius: 6px;
}

.about-me--section .about-me--head-sec .container-fluid .player__wrapper .player-bar__wrapper .player-bar-progress{
    width: 20%;
    height: 100%;
    background-color: var(--highlite-color);
    border-radius: 6px;
}
.about-me--section .about-me--head-sec .container-fluid .player__wrapper .player-bar__wrapper .time{
    position: relative;
    top: -30px;
}



.about-me--section .about-me--info-sec{
    color: white;
    height: 100vh;
    width: 100%;
    opacity: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.about-me--section .about-me--info-sec .wrap{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-me--section .about-me--info-sec .wrap .container-fluid{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0px;
}
.about-me--section .about-me--info-sec .wrap .container-fluid .img__wrapper{
    width: 400px;
    height: 400px;
    transition: 0.4s all;
}


.about-me--section .about-me--info-sec .wrap .container-fluid .img__wrapper img{
    width: 100%;
    height: 100%;
    border-radius: 100%;
}
.about-me--section .about-me--info-sec .wrap .container-fluid .img__wrapper:hover{
    transform: scale(1.1);
}

.about-me--section .about-me--info-sec .wrap .container-fluid .info__wrapper{
    margin-left: 50px;
}
.about-me--section .about-me--info-sec .wrap .container-fluid .info__wrapper .title{
font-size: var(--font-subtitle);
font-weight: 800;
transition: 0.4s all;
}

.about-me--section .about-me--info-sec .wrap .container-fluid .info__wrapper p{
    width: 1000px;
}


/* ------------------ SOCIAL MEDIA LINKS ------------------ */

.find-me--section{
    padding: 100px 0;
}

.find-me--section .title{
    text-align: center;
    font-size: var(--font-subtitle);
    font-weight: 800;
    text-transform: uppercase;
}

.find-me--section .social-media__wrapper{
    display: flex;
    justify-content: space-around;
    min-height: 600px;
    height: 600px;
    margin-top: 50px;
    width: 100%;
}

.find-me--section .social-media__wrapper .social-link{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 17%;
    height: 100%;
    transition: 0.4s all;

    background-position: center;
    background-size: 100%;
}
.find-me--section .social-media__wrapper .social-link.facebook{
    background-image: url("/assets/FACEBOOK.jpg");
}
.find-me--section .social-media__wrapper .social-link.instagram{
    background-image: url("/assets/INSTAGRAM.jpg");
}
.find-me--section .social-media__wrapper .social-link.soundcloud{
    background-image: url("/assets/SOUNDCLOUD.jpg");
}
.find-me--section .social-media__wrapper .social-link.twich{
    background-image: url("/assets/TWITCH.jpg");
}
.find-me--section .social-media__wrapper .social-link:hover{
    transform: translateY(-50px);
}


footer{
    width: 100%;
    height: 400px;
    background: #000;
    color: rgb(36, 36, 36);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
footer p:nth-child(1){
    text-transform: uppercase;
    font-size: 2rem;
}
footer a{
    color: rgb(36, 36, 36);
    text-decoration: underline;

}