:root {
    --light-color:white;
    --gray-light-color: rgba(255, 255, 255, 0.055);
    --dark-color:#010001;
    --dark-color-opacity-9: rgba(0, 0, 0, 0.9);
    
    /*--accent-color: #37C1F0;*/
    --accent-color: #dd0c80;
    --accent-dark-color: #127697;
    --purple: #9534A7;
    --yelow: #FEE701;
    --font-size-p: 18px;
    --h1-font-size-deskt: 35px;
    --h1-font-size-tablet: 28px;
    --h1-font-size-mobile: 25px;
    --h2-font-size-desk: 28px;
    --h2-font-size-desk: 20px;
    --h2-font-size-mobile: 20px;
  }

html{
    scroll-behavior: smooth;
}
*{
    margin:0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: var(--font-size-p);
    color: var(--light-color);
    word-wrap: break-word;
    box-sizing: border-box;
}
body{
    background-color: var(--dark-color);
}
.container{
    width:90%;
    max-width: 1080px;
    margin:0 auto;
}

.ended{display:none!important;}

.navbar-row{
    /*    position: fixed;*/
    /*width: 100%;*/
    /*z-index: 3;*/
     position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 0;
}
.date-li{
    position: relative;
}
.date-li:before{
    content:'';
    width:15px;
    height:15px;
    border-radius:50px;
    position: absolute;
    left: -20px;
    background:green;
    animation: fade-in-out 2s infinite;
    display: var(--pseudo-display, block);
}

@keyframes fade-in-out{
    0%  {scale:0;}
  
  50%  {scale:1;}
  
  100% {scale:0;}
}
.date-li .date{
    width: 150px;
}


.date-li.ended .date .date-left, .date-li.ended .date .date-right .month,.date-li.ended .date .date-right .year{
    color:gray;
    
}

.date-li.ended .date{
    border-right: 1px solid gray;
}

.date-li.ended .date-li-body .date-li-place, .date-li.ended .date-li-body .date-li-locatioin{
    color: gray;
}

.date-li.ended .date-view-more.btn.btn-blue{
     color: gray;
     border: 1px solid gray;
      pointer-events: none!important;
}
.date-li.ended a{
   pointer-events: none;
}
.container-fullwidth{
    width: 100%;
}
.container-fluid{
    width:90%;
    max-width: 100%;
    margin: 0 auto;
}
/*Padding and margins*/
.p10{
    padding: 10px;
}
.ptb-100{
    padding: 100px 0 100px 0 ;
}
.ptb-70{
    padding: 70px 0 70px 0 ;
}
.ptb-40{
    padding: 40px 0 40px 0 ;
}
.ptb-20{
    padding: 20px 0 20px 0 ;
}
.ptb-10{
    padding: 10px 0 10px 0 ;
}
.pb-70{
    padding-bottom: 70px;
}

.text-center{
      text-align: center;
}
/*Tags*/
h1{
    font-size: var(--h1-font-size-deskt);
  
   
}
h2,.blog-post-title a{
    font-size: 35px;
  
}

h3{
    font-size:25px;
}

a, #mobile-menu a{
    text-decoration: none;
    color: var(--light-color);
}

ul{
    list-style: none;
}




.btn{
    padding: 10px 20px;
    cursor: pointer;
}
.btn-blue{
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    text-transform: uppercase;
}
.btn-purple{
    border: 2px solid var(--yelow);
     background: var(--purple);
     color:var(--yelow) ;
     width: 200px;
     text-align: center;
     margin:30px auto;
}

.btn-blue:hover{
    border: 1px solid var(--light-color) ;
    color: var(--light-color);
}



/********************************NAVBAR*********************************************/


.admin-link{
    display: inline-block;
    padding: 5px 10px!important;
    background-color:var(--accent-color);
    margin-left: 10px;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
}

.admin-link:hover{
    color: white!important;
    background-color:var(--accent-dark-color);
}
.admin-link i{
    font-size: 12px;
    margin-right: 5px;
}

/*Desktop*/
.navbar-row{
    background-color: var(--dark-color);
    z-index: 2;
}
#desktop-navigation{
    display: flex;
    justify-content: space-between;
    
    align-items: center;
    padding: 10px 0;
}
#desktop-navigation ul{
    display: flex;
    list-style: none;
    justify-content: space-between;
    align-items: center;
}
#desktop-navigation ul li{
    padding: 0 5px;
    /* line-height: 7em; */
    letter-spacing: 1px;
    color: var(--light-color);
    transition: all 0.4s;
}

#desktop-navigation ul li:hover{
    color: var(--accent-color);
}
#desktop-navigation .logo{
    display: block;;
    width: 130px;
    max-width: 200px;
}

/*Mobile*/

#hamburger{
    display: none;
    width:50px;
}

.menu-btn-burger{
    
    padding: 10px;
    cursor: pointer;
    /* position: absolute; */
    /* right: 15px; */
    /* display: none; */
    /* margin-left: auto; */
  
    z-index: 5;
  }
  .menu-btn-burger:active{
    outline:none;
  }
   .burger-line{
    width: 100%;
    height: 1px;
    background-color: white;
    margin: 7px 0;
    pointer-events: none;
  }
.mobile-line1{
    transform: rotate(45deg) translate(6px,6px);
}
.mobile-line2{
    transform: rotate(-45deg) ;
}
#mobile-menu{
    position: fixed;
    top:0;
    left:0;
    right:0;
    bottom: 0;
    background: var(--dark-color-opacity-9);
    z-index: 6;
   
    color: var(--light-color);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: none;
}
#mobile-menu.active{
    display:flex;
}

#mobile-menu .logo{
    margin-bottom: 30px;
}

#mobile-menu li{
    margin-bottom: 20px;
    text-align: center;
    transition: all 0.4s;
}

#mobile-menu li:hover{
    color: var(--accent-color);
}





.exit-btn{
    position: absolute;
    top: 41px;
    right: 20%;
    width: 30px;
    height: 30px;
    cursor:pointer;
}

/************************************HERO SECTION*********************************************/

#hero-section{
    /*height: 70vh;*/
    /*background-image:url('../img/index-slider/nicim-izazvan-mts-6-april.jpg') ;*/
    background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover;
    /*padding: 20px;*/
    
}

#hero-section-four-o-four{
    height: 70vh;
    color:yellow;
    background-image:url('/img/index-slider/404-page-back.png') ;
    background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover;
    padding: 20px;
    display:flex;
    align-items: center;
    justify-content: center;
    
}

#mobile-slide{
    display:none;
}
.four-o-four-image{
    max-width:90%;
    width:800px;
}
.four-o-four-image img{
    width:100%;
}
#hero-section-lp img{
    display:block;
    width: 100%;
}



/**********************************************TOUR DATES*************************************/
.tour-dates{
    color: var(--light-color);
}
.date-li{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;   
    border-bottom: 1px solid var(--gray-light-color);
} 

.date-li-body{
    flex:1;
}

.date-li .date{
    display: flex;
    padding-right: 15px;
    border-right: 1px solid var(--accent-color);    
}

.date-left{
    font-size: 50px;
    line-height: 47px;
    color:var(--accent-color);   
}
.date-right{
    margin-left: 15px;
    margin-top:2px;
    color:var(--accent-color);
}
.date-right .month,.date-right .year{
    font-size: 18px;
    color:var(--accent-color);
    text-transform: uppercase;
}

.date-li-body .date-li-place{
    font-size: 30px;
    margin-bottom: 10px;
    text-transform:uppercase;
}

/**********************************************DISCOGRAPHY*************************************/


/*New album */

.new-album-container{
    padding: 100px 0 100px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 80px;
}

.new-album-description{
    display:flex;
    flex-direction: column;
    justify-content: center;
}
.new-album-description h3{
    margin-bottom: 30px;
}






.albums{
    color:var(--light-color);
    /* position: relative; */
}
.albums-container{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    width:100%;
    grid-gap: 20px;
}
.albums img{
    display: block;
    width:100%;
}
.album{
    position: relative;
    border-radius: 3px;
    overflow: hidden;
}
.album:hover .overlay{
    opacity:0.9;
}

.album:hover .listen{
    opacity: 1;
    bottom: 30px;
}

.overlay{
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom: 0;
    background: linear-gradient(178.6deg, rgba(7, 7, 7, 0.178) 11.8%, rgb(8, 8, 8) 83.8%);
    opacity:0;
    transition: all 0.4s;
}
.listen{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    display: flex;
    justify-content: center;
    z-index: 8;
    opacity: 0;
    transition: all 0.4s;
   
}
.listen i{
    margin: 0 10px;
    font-size: 30px;
    color: var(--light-color);
    transition: all 0.4s;
}



/**********************************************VIDEO SECTION*************************************/
.video-section{
    color:var(--light-color);
}


/**********************************************CONTACT SECTION*************************************/
.contact-section{
    background-color: var(--accent-color);
    color: var(--light-color);
}
.contact-container{
    color: var(--light-color);
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 20px;
}
.band-contact h2,.manager-contact h2, .download-contact h2{
    text-align: left;
}
.band-contact,.manager-contact{
    color: var(--light-color);
    /* text-align: center; */
}



/*KONTAKT FORMA*/

#contactForm{
    width:100%;
}

#contactForm .form-group{
    margin-bottom:10px ;
}

#contactForm .form-group input, #contactForm .form-group textarea{
    
    padding: 20px;
    width: 100%;
    max-width: 100%;
    
}

 #contactForm .form-group textarea{
     resize:none;
 }

#contactForm button{
    display:block;
    margin-left: auto;
    margin-top:10px;
    background: transparent;
}

#contactForm .form-group input, #contactForm .form-group textarea{
    color:var(--dark-color);
    border: 1px solid transparent;
    
    
}
#contactForm .form-group input:focus-visible, #contactForm .form-group textarea:focus-visible{
    border: 1px solid var(--accent-color);
    border-radius:none;
}
.error{
    color: red;
}

#contactForm .form-group input:last-child 
#contactForm #hidden-input{
    display:none;
}


.message{
    animation: fadein 0.4s;
}

@keyframes fadein{
    from {opacity: 0;}
  to {opacity: 1;}
}
/**************************************************FOOTER*****************************************/

.social{
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.social i{
    margin: 0 10px;
    font-size: 30px;
    color: gray;
    transition: all 0.4s;
}

.social i:hover,.listen i:hover{
    color: var(--accent-color);
}

.footer p{
    text-align: center;
}

.footer-name{
    font-size: 20px;;
    margin-bottom: 20px;
    color: gray;
}

.rights{
    color: grey;
    font-size: 16px;
}

/*SLICK*/
.prev_arrow,.next_arrow{
    cursor: pointer;
}
.prev_arrow{
    position: absolute;
    z-index: 9;
    top: 50%;
    transform: translate(-50px, -50%);
    font-size: 40px;
}
.next_arrow{
    position: absolute;
    z-index: 9;
    top: 50%;
    right: 0;
    transform: translate(50px, -50%);
    font-size: 40px;
}
.prev_arrow i,.next_arrow i{
    font-size: 30px;
    color:var(--accent-color);
}


/*///////////////////////////////////////////COUNTER///////////////////////////////////////////*/

#countdown{
            display:flex;
            justify-content: center;
            align-items: center;
        }
        .time{
            display:flex;
            flex-direction:column;
            justify-content: center;
            align-items: center;
            margin: 15px;
        }
        .time h3{
            font-weight:bold;
            font-size:50px;
            line-height:1;
            margin: 0 0 5px;
        }
#countdown small{
    color: var(--purple);
}


/*////////////////////GALERIJA////////////////*/

#galerija {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    
    grid-gap: 15px;
}
.galerija-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/*************************BLOG*********************************/

.widget{
    margin-bottom: 20px;
}
.input-polje{
    width:98%;
}
.main-area{
    display:flex;
    flex-direction: row;
    width:100%;
   
}

.blog-area{
    width: 75%;
     padding-right:20px;
}

.right-area{
    width: 20%;
    padding: 0 0 0 20px;
    /*border-left:1px solid white;*/
      overflow: auto;
  word-wrap: break-word;
}

.blog-post-image img{
    display:block;
    width:100%;
}

.blog-post-title,.blog-post-image,.blog-post-meta,.blog-post-content{
    margin-bottom: 20px;
}
.blog-post-title a{
    
}
.blog-post-meta i{
    font-size: 14px;
}

.blog-post-content a{
    color: var(--accent-color);
}


.author,.published,.category{
    margin-right:15px;
    font-size: 14px;
}


article{
    margin-bottom: 50px;
}



/*PAGINATION*/

#pagination a{
    padding: 2px 5px;
    border: 1px solid var(--accent-color);
    
}
.active-pagination-link{
    background-color:var(--accent-color);
    color: black;
    pointer-events: none;
}

.next-pag,.prev-pag{
    margin-right: 5px;
    border:transparent!important;
    color:var(--accent-color);
    /*font-weight: 600;*/
}
/*********************************************************************************************/
/*************************************Tablet query********************************************/
/**********************************************************************************************/

@media(max-width:980px ){
    #hamburger{
        display: block;
    }

/*Navigation*/
#desktop-navigation{
    padding-top: 20px;
    padding-bottom: 20px;
}    
#desktop-navigation ul{
        display:none;
    }
    .exit-btn{
        right: 7%;
    }
    .albums-container{
        width: 100%;
        display: grid;
        grid-template-columns:repeat(2,1fr);
        grid-gap: 40px;
    }
    .contact-container{
        color: var(--light-color);
        display: grid;
        grid-template-columns: repeat(1,1fr);
    }
    
.new-album-container{
    grid-template-columns:repeat(1,1fr);
    padding: 70px 0 70px 0;
    grid-gap: 40px;
}    
    
    
/*Tour dates*/
.date-left{
    font-size: 35px;
}
.date-right{
    margin:0;
}

.date-li-body .date-li-place {
    font-size: 25px;
    margin-bottom: 10px;
}
/*************************BLOG*********************************/

.main-area{
    display:flex;
    flex-direction: column;
    width:100%;
}

.blog-area{
    width: 100%;
    margin-bottom: 30px;
}

.right-area{
    width: 100%;
    padding:0 20 0 20px;
    border-left:1px solid white;
      overflow: auto;
  word-wrap: break-word;
}



}




/*********************************************************************************************/
/*************************************Mobile query********************************************/
/**********************************************************************************************/


@media(max-width:767px ){
/*Globas*/

h3{
    font-size:25px;
}
.ptb-100{
    padding: 70px 0 70px 0 ;
}
.pb-70{
    padding-bottom: 40px;
}
.ptb-70{
    padding: 40px 0 40px 0 ;
}

/*Slick*/
.prev_arrow{
    transform: translate(-10px, -50%);
    font-size: 40px;
}
.next_arrow{
   
    transform: translate(10px, -50%);
    font-size: 40px;
}

/************************************HERO SECTION*********************************************/

#hero-section{
    /*height: 30vh;*/
}

/**********************************************TOUR DATES*************************************/

.date-li:before{ top: 25px;}
.date-li:not(:last-child){
    margin-bottom:40px;
}

.date-li a{
    display:block;
    width: 100%;
}


.date-li .date{
   flex-direction: column;
    width: auto;
   
}
.date-li .date-view-more{
    flex: 1;
}

.btn{
    text-align: center;
}



/**********************************************DISCOGRAPHY*************************************/



.albums-container{
    width: 100%;
    display: grid;
    grid-template-columns:repeat(1,1fr);
    grid-gap: 40px;
}

.album{
    width: 100%;
}

.album img{
    display: block;
    width: 100%;
}

.contact-section, .contact-section h2{
    text-align: center;
}
.band-contact, .manager-contact{
    margin-bottom: 20px;
}


/**********************GALERIJA*********************/
#galerija {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto;
    grid-gap: 15px;
}

/***************************BLOG*************************/
.blog-post-title h2 a{
  font-size: 25px;   
}


}

@media(max-width:500px ){

#mobile-slide{
    display:block;
}
#desk-slide{
    display:none;
}
}
