@font-face {
  font-family: "ZT Formom";
  src: url("../assets/font/ZTFormom-Regular.eot");
  src: url("../assets/font/ZTFormom-Regular.eot?#iefix")
      format("embedded-opentype"),
    url("../assets/font/ZTFormom-Regular.woff2") format("woff2"),
    url("../assets/font/ZTFormom-Regular.ttf") format("truetype"),
    url("../assets/font/ZTFormom-Regular.svg#ZTFormom-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.-is-visually-hidden {
  width: 1px;
  height: 1px;
  color: transparent;
}

:root {
  --site-color: #ffffff;
  --site-text-color1: #cdddf2;
  --site-text-color2: #000;

  --site-background-color1: #000;
  --site-background-color2: #fff6f2;

  --site-hover-color: #fff;
  --site-button-color: transparent;
  --site-primary-font: "ZT Formom";
  --site-secondary-font: "ZT Formom";
  --site-white-color: #fff;
  --site-black-color: #fff;
}

ul,
li {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
img {
  max-width: 100%;
  height: auto;
  width: 100%;
}

* {
  margin: 0;
  padding: 0;
}

body,
body.black {
  font-family: var(--site-primary-font);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: auto;
  position: relative;
  background-color: var(--site-background-color1);
  color: var(--site-text-color1);
}

body.white {
  background-color: var(--site-background-color2);
  color: var(--site-text-color2);
}
section {
  position: relative;
  width: 100%;
  z-index: 1;

  translate: 0 0.1vw;
}

#tour,
#music,
#merch,
.signupWrap {
  opacity: 0;
  transition: translate 1500ms ease-in-out, opacity 1500ms ease-in-out;
}
#tour.active,
#music.active,
#merch.active,
.signupWrap.active {
  animation: fadeInUp 2s ease-in-out;

  opacity: 1;
  translate: 0;
}
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.3s ease;
  background-color: #000;
  /* backdrop-filter: blur(8px); */
}

.loading-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-spinner {
  /* border: 4px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  border-top: 4px solid black;
  width: 40px;
  height: 40px; */
  /* animation: spin 1s linear infinite; */
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

a,
.black a {
  color: var(--site-text-color1);
  text-decoration: none;
  transition: 0.5s all linear;
}
.white a {
  color: var(--site-text-color2);
}
a:hover,
.black a:hover {
  opacity: 0.5;
  text-decoration: none;

  color: var(--site-text-color1);
}
.white a:hover {
  opacity: 0.5;
  text-decoration: none;

  color: var(--site-text-color2);
}

a.navhome {
  width: 4vw;
}

.siteLogo img {
  width: 100%;
  height: auto;
}
.mailbox,
.black .mailbox {
  background-color: #212121;
}

.white .mailbox {
  background-color: #fffaf8;
}

.white .side-nav a {
  background: #fff;
  border: 1px solid #000;
}
.white .side-nav {
  background: #000;
}
.white a.sideN.onscrollActive {
  background: #000;
}
.nav-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 96%;
  margin: 0 auto;
  padding-top: 2vh;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 2%;
}

section.nav-head > div {
}

.nav {
  text-align: right;
}
.nav a.navhome {
  display: none;
}
.nav a {
  margin-right: 1.25vw;
  border-radius: 10vw;
  width: 8vw;
  box-sizing: border-box;
  display: inline-block;
  text-align: center;
  height: 2vw;
  line-height: 2;
  font-size: 1vw;
  text-transform: lowercase;
}

.nav a:last-child {
  margin-right: 0;
}
.nav a.onscrollActive,
.nav a:hover {
}

.navlogo {
  display: flex;
  flex-direction: column;
}

.navlogo .black {
  display: none;
}
.white .navlogo .white,
.black .navlogo .black {
  display: none;
}
.white .navlogo .black,
.black .navlogo .white {
  display: block;
}
.switch input {
  display: none;
}

.switch label {
  /* display: block;
  width: 2.25vw;
  height: 1.4vw;
  padding: 0.175vw 0.2vw;
  border-radius: 5vw;
  border: 1px solid #000;
  cursor: pointer;
  transition: 0.3s; */
}
/* .switch input:checked ~ label {
  border-color: #000;
} */

/* .switch label::before {
  content: "";
  background: url(../assets/switcher_w.png) no-repeat scroll center center /
    cover;
  width: 3vw;
  transition: 0.3s;
  height: 2vw;
  display: block;
  transition: 0.3s;
}

.switch input:checked ~ label::before {
  background: url(../assets/switcher_b.png) no-repeat scroll center center /
    cover;
} */

.switch .switchWrap a {
  display: flex;
  width: 44px;
  align-items: center;
  justify-content: space-around;
}
.switch .switchWrap.black {
  display: none;
}
.white .switch .switchWrap.black {
  display: flex;
}
.white .switch .switchWrap.white {
  display: none;
}
.switch .switchWrap a {
  display: flex;
}

.switch .switchWrap img {
  width: 18px;
}

.pimage {
  background-image: url("../assets/pimgnew.jpg");
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  border-radius: 20px; 
}

section#header {
  width: 100%;
  min-height: 100vh;
  position: relative;
}
.darkbgWrapper {
  width: 100%;
  position: relative;
}
.darkbgWrapper::after {
  content: "";
  background: url(../assets/headers/desktopdark.jpg) no-repeat scroll center top /
    cover;
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  z-index: -1;
  top: 0;
  left: 0;
}
.darkbgWrapper::before {

  content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);

}
.white .darkbgWrapper::after,.white .darkbgWrapper::before  {
  display: none;
}
.white section#header {
  background: url(../assets/headers/desktoplight.png) no-repeat scroll center
    center / cover;
}
.white section#header:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(256, 256, 256, 0.7);
}
.sectitle {
  width:85%;
  margin: 0 auto;
  font-size: 3vw;
  text-transform: lowercase;
  margin-bottom: 2vw;
}

.musictitle.sectitle {
    text-align: right;
    padding-top: 3vw;
}
.tourtitle.sectitle {
    position: relative;
}
section#muisc {
}

.albumWrapper {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.album-content {
  width: 35vw;
  margin: 0 auto;
}

.album-text ,.header-btn{
  text-align: center;
  margin-top: 1vw;
}
.album-text a {
  font-size: 1.5vw;
}
.albumWrapper.header {
    position: absolute;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
    width: 30vw;
}
.header-btn a{
background: transparent;
    width: 12vw;
    height: 3vw;
    line-height: 3vw;
    font-size: 1vw;
    margin: 0;
    padding: 0;
    display: inline-block;
    text-transform: lowercase;
    text-align: center;
    font-family: var(--site-primary-font);
    border: 1px solid;
    border-radius: 2vw;
}

.header-btn a:hover{
  background-color: #cdddf2;
  color: #000;
  opacity: 1;
}
.white .header-btn a:hover{
  background-color: #000;
  color: #fff6f2;
  opacity: 1;
}
.album-text {
    font-size: 2vw;
}

.album-image a:hover{
opacity: 1;
  filter: brightness(150%);
}
.swap-on-hover {
  position: relative;
}

.swap-on-hover img {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.swap-on-hover .swap-on-hover__front-image {
  z-index: 9999;
  transition: opacity 0.2s linear;
  /* cursor: pointer; */
}

.swap-on-hover:hover > .swap-on-hover__front-image {
  opacity: 0;
}
.signupWrap {
  display: flex;
  width: 85%;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  padding: 2.5% 0;
}
.whatsapp{
  text-align: center;
}
.profile-image-container {
  width: 30vw;
  height: 30vw;
}
.iframe-container {
  width: 40vw;
  margin-left: 5%;
}
.iframe-container iframe{
border-radius: 20px;
}

 .video-embed {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
        margin: 0 auto;
        z-index: 1;
    }

    .videoimage {
        display: block;
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        width: 100%;
        z-index: 100;
    }

    a.play_button {
        display: inline-block;
        position: absolute;
        width: 4vw;
        height: auto;
        top: 50%;
        left: 50%;
        line-height: 0;
        z-index: 999;
        text-align: center;
        transform: translate(-50%, -50%);
    }

    .video-embed iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100% !important;
    }

    .videoimage img {
        width: 100%;
    }

    .videoSection {
        max-width: 40vw;
        margin: 0 auto;
    }

    .mobileImage {
        display: none;
    }

.ptext {
  padding-left: 24px;
  font-size: 2vw;
  font-weight: 900;
  margin-bottom: 1vw;
}

.copyright-links {
  font-size: 0.75vw;
  margin-top: 10px;
  z-index: 1;
 
  left: 0;
  width: 100%;
  text-align: center;
}
.copyright-links a {
  /* color: var(--site-text-color1); */
}
.footerwrap {
    padding: 15px 0 10px;
}
.social {
    text-align: center;
}
.footerwrap .social a {
    font-size: 1.3vw;
    margin-right: 1vw;
}
.footerwrap .social a:last-child {
    margin-right: 0;
}
.detail .black {
  display: none;
}
.white .detail .white,
.black .detail .black {
  display: none;
}
.white .detail .black,
.black .detail .white {
  display: block;
}
.detail {
    position: absolute;
}

.detail.signupswirl {
    width: 5vw;
    right: 4vw;
    top: 4vw;
}

.detail.merchbird {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 9;
    width: 12vw;
}
.detail.merchswirl {
    width: 7vw;
    position: relative;
    margin: 2vw 4vw 2vw auto;
}

.detail.tourstar {
       bottom: 0;
    left: -8%;
    width: 10vw;
}
@media only screen and (max-width: 1024px) {
  
  a.navhome {
    width: 7vw;
  }
  .nav a {
    width: 14vw;

    height: 7vw;
    line-height: 7vw;
    font-size: 3vw;
  }
  .sectitle {
    width: 90%;
    margin: 0 auto;
    font-size: 8vw;
    text-transform: lowercase;
    margin-bottom: 2vw;
    text-align: center;
  }
  .darkbgWrapper::after {
    content: "";
    background: url(../assets/headers/desktopdark.jpg) no-repeat scroll center
      top / cover;

    height: 100vh;
  }
  .signupWrap {
    padding: 10% 0;
    flex-direction: column;
  }
  .iframe-container {
    width: 70%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 1024px) and (orientation: portrait) {
   .header-btn a {
        width: 45.801527vw;
        height: 11.959288vw;
        line-height: 11.959288vw;
        font-size: 5.852417vw;
    
 
        border-radius: 10vw;
}

    .videoSection {
        max-width: 90%;
        margin: 0 auto;
    }
a.play_button{

      width: 8vw;

}
.musictitle.sectitle {
    text-align: center;
 
}

  .iframe-container {
    width: 100%;
    margin: 0 auto;
    margin-top: 5%;
  }
  .profile-image-container {
    width: 90vw;
    height: 90vw;
  }
  .footerwrap {
    padding: 15px 0;
}
  .copyright-links {
    font-size: 2.5vw;
    margin-top: 15px;
   
  }
.footerwrap .social a {
    font-size: 4vw;
    margin-right: 3vw;
}
  .darkbgWrapper::after {
    display: none;
  }
  section#header {
    background: url(../assets/headers/mobiledark.jpg) no-repeat scroll center
      center / cover;
  }
  .white section#header {
    background: url(../assets/headers/mobilelight.png) no-repeat scroll center
      center / cover;
  }
  section#header:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}
.white section#header:before {
  
    background: rgba(256, 256, 256, 0.5);
}

  .albumWrapper {
    flex-direction: column;
    justify-content: space-evenly;
  }
  .album-content {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 5vw;
  }
  .album-content:last-child {
    margin-bottom: 0;
  }
 
  .album-text a {
    font-size: 5vw;
  }
  .albumWrapper.header .album-content {
    width: 100%;
    margin: 0 auto;
}
.albumWrapper.header{
  width: 75%;
        top: 50%;
}
.album-text {
    font-size: 6vw;
}

}
@media only screen and (max-width: 767px) and (orientation: portrait) {
    .signupWrap {
       width: 90%;
  }
  .ptext {
    padding-left: 24px;
    font-size: 5vw;
  }
  div#switch {
    position: absolute;
    top: 85vh;
    right: 6vw;
  }
  .nav-head {
    position: relative;
    flex-direction: column;
    width: 100%;
    padding: 0;
    z-index: 11;
    left: 0;
  }
  .navlogo {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0.5vh;
  }
  .nav-head > .nav {
  
        display: flex
;
        align-items: center;
        justify-content: space-between;
        width: 90%;
  }
  .nav {
    text-align: center;
    position: fixed;
    top: 6vh;
  }
  .nav a {
          width: auto;
        height: auto;
        margin: 0;
        line-height: 1;
        font-size: 4.5vw;
  }
  a.navhome {
    width: 15vw;
  }
  #switch {
    position: absolute;
    bottom: 5vw;
    right: 5vw;
  }

  .detail.tourstar {
    bottom: 7.5vw;
    left: -5%;
    width: 30vw;
}
.detail.merchbird {
    position: absolute;
    left: 50%;
        bottom: -5%;
    z-index: 9;
    width: 35vw;
    transform: translate(-50%, -50%);
}
.detail.merchswirl {
    width: 20vw;
    right: unset;
    top: unset;
    position: relative;
    margin: 10vw auto;
}
.detail.signupswirl
 {
    display: none;
 }

}



/* Cookie  */
  .cookie-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    display: none;
    z-index: 99998
  }

  .cookie-banner,
  .cookie-modal {
  position: fixed;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #111;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    z-index: 99999;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial;
    width: 100%;
  }

  .cookie-banner {
       bottom: 0;
    padding: 1% 0;
    display: flex
;
    justify-content: space-around;
  }

  .cookie-modal {
    top: 10%;
    max-width: 720px;
    width: 92%;
    padding: 20px;
    display: none
  }

  .cookie-title {
    font-weight: 700;
    margin: 0 0 8px;
    font-size: 1.1rem
  }

  .cookie-text {
    margin: 0 0 12px;
    line-height: 1.45
  }
.cookie-t {
    width: 55%;
    align-content: flex-start;
}
  .cookie-row {
       display: flex
;
      gap: 10px;

    flex-wrap: wrap;
    justify-content: flex-end;
    width: 35%;
    align-items: center;
  }

  .cookie-btn {
    border: 0;
     border-radius: 10px;
    cursor: pointer;
    box-sizing: border-box;
    display: block;
    padding: 0;
    height: 3rem;
    line-height: 3rem;
    width: 30%;
  }

  .cookie-btn.primary {
    background: #111;
    color: #fff
  }

  .cookie-btn.ghost {
    background: #f3f4f6
  }

  .cookie-btn.link {
    background: transparent;
    text-decoration: underline
  }

  .cookie-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0
  }

  .cookie-switch input {
    width: 18px;
    height: 18px
  }

  .cookie-small {
    font-size: .9rem;
    color: #444;
    margin-top: 6px
  }

  @media (prefers-color-scheme: dark) {

    .cookie-banner,
    .cookie-modal {
    background: rgba(0, 0, 0, 0.8);
        color: #f3f4f6;
    }

    .cookie-btn.ghost {
      background: #374151;
      color: #fff
    }

    .cookie-small {
      color: #d1d5db
    }
  }

  @media only screen and (max-width: 767px) and (orientation: portrait) {

  .cookie-banner {

    
    flex-direction: column;
    padding: 3% 0;
}
.cookie-t {
    width: 100%;
        align-content: center;
                text-align: center;
}
.cookie-row {
  width: 100%;
      justify-content: center;
}
.cookie-text {
 
    line-height: 1;
    font-size: 10px;
}
.cookie-title {
  
    font-size: 13px;
}
.cookie-btn {
   
    height: 2rem;
    line-height: 2rem;
    width: 30%;
    font-size: 10px;
}
  }