/* --- Base reset stays --- */
* {
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

body.coming-soon-mode #siteHeader,
body.coming-soon-mode #siteFooter{
  display: none !important;
}

#mainSiteContent{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 3s ease, transform 3s ease;
}

/* When we show it */
#mainSiteContent.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* Coming soon should not reserve navbar space */
body.coming-soon-mode .comingsoon{
  padding-top: 70px; /* or smaller since nav is hidden */
}

/* ---------- NAV ---------- */
.nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;

    /* base state */
    background: rgba(0,0,0,0);
    box-shadow: 0 0 0 rgba(0,0,0,0);
    backdrop-filter: blur(0px);

    /* ✅ smooth animation */
    transition:
      background-color .35s ease,
      box-shadow .35s ease,
      backdrop-filter .35s ease,
      transform .35s ease;
    will-change: background-color, box-shadow, backdrop-filter;
  }

  /* ✅ scrolled state (you can change colors here) */
  .nav.scrolled{
    background-color: rgba(20, 20, 20, 0.78);
    backdrop-filter: blur(10px);
    box-shadow: 0 14px 40px rgba(0,0,0,.35);
  }

  .nav-inner{
    max-width: 1200px;
    margin: 0 auto;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    position: relative;
  }

  .nav ul{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    list-style-type: none;
    gap: 4px;
    margin: 0;
    padding: 0;
  }

  .nav ul li a{
    position: relative;
    text-transform: uppercase;
    font-size: 12px;
    text-decoration: none;
    cursor: pointer;
    line-height: 90px;
    padding: 0 18px;
    font-weight: 300;
    letter-spacing: 1px;
    color: white;
  }

  .nav ul li:nth-child(5) a{
    font-size: 40px;
    font-weight: 500;
    font-family: Oswald, sans-serif;
  }

  .nav ul li:nth-child(5) a::after,
  .nav ul li:nth-child(5) a::before{
    display: none;
  }

  /* underline lines */
  .nav ul li a::after,
  .nav ul li a::before{
    content: '';
    position: absolute;
    height: 1.5px;
    width: 28px;
    background: #fff;
    opacity: 0;
    transform: scaleX(0);
    transition: transform .25s ease, opacity .25s ease;
  }

  .nav ul li a::before{
    top: 26px;
    left: 6px;
    transform-origin: left;
  }

  .nav ul li a::after{
    bottom: 26px;
    right: 6px;
    transform-origin: right;
  }

  .nav ul li a:hover::before,
  .nav ul li a:hover::after{
    opacity: 1;
    transform: scaleX(1);
  }

  /* Hamburger (hidden desktop) */
  .nav-toggle{
    display: none;
    position: absolute;
    left: 16px;
    height: 44px;
    width: 44px;
    border: 1px solid rgba(255,255,255,.3);
    background: transparent;
    border-radius: 10px;
    cursor: pointer;
  }

  .nav-toggle span{
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    margin: 5px auto;
  }

/* ---------- HEADER ---------- */
.home_header {
    width: 100%;
    min-height: 100vh;
    /* better on mobile than fixed height */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-align: center;
    background-image: url("/assets/img/home_header.png");
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 16px 48px;
    /* room for fixed nav */
    color: white;
}

.home_header h1 {
    font-size: clamp(28px, 4vw, 54px);
    line-height: 1.3;
    margin-bottom: 12px;
}

.home_header p {
    font-size: clamp(14px, 1.6vw, 18px);
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Bio intro */
.bio_intro {
    background-image: url("/assets/img/bio.jpg");
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    height: 90vh;
}


.bio_img {
    width: 50%;
    height: 80%;
    display: flex;
    justify-content: end;
}

.bio_intro_content {
    background: #1a1a1ac2;
    width: inherit;
    height: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
}

.with_frame_image {
    position: relative;
    /* required for ::before positioning */
    display: inline-block;
    /* keeps frame tight around image */
    max-width: 100%;
}

.with_frame_image img {
    display: block;
    /* removes baseline gaps */
    width: 90%;
    height: auto;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    /* image above the frame */
}

/* the frame behind */
.with_frame_image::before {
    content: "";
    position: absolute;
    top: -30px;
    left: -30px;
    width: 90%;
    height: 100%;
    border: 4px solid #7b37d4;
    border-radius: 5px;
    z-index: 0;
    /* behind the image */
}


.bio_content {
    width: 50%;
}

.section_header {
    margin-bottom: 30px;
    font-size: 40px;
    position: relative;
    word-wrap: break-word;
    line-height: 0.9;
    font-weight: 400;
    z-index: 1;
    font-family: "Changa", sans-serif;
    color: #ffffff;
}

h2.section_header.with_line {
    padding: 0 40px;
}

.with_line {
    position: relative;
    display: inline-block;
    z-index: 1;
    padding: 0 20px;
}

.with_line:before {
    content: "";
    position: absolute;
    top: 50%;
    height: 2px;
    left: 0;
    right: 0;
    background-color: #8139df;
    z-index: -1;
}

.bio_content p {
    font-size: 16px;
    color: #dddddd;
    width: 80%;
}

.bio_signature {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 225px;
}

.bio_signature h3 {
    color: #8139df;
    border-color: #8139df;
    font-size: 25px;
}

.bio_signature p {
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
}

/* New songs cover */
.new_cover_songs {
    width: 100%;
    height: 100vh;
    background: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.section_header {
    color: #ffffff;
    font-size: 40px;
}

.new_cover_songs_content {
    width: 100%;
    max-width: 770px;
    /* optional: limit size on big screens */
    margin: 0 auto;
    /* optional: center it */
    aspect-ratio: 16 / 9;
    /* modern responsive sizing */
    position: relative;
}

.new_cover_songs_content iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.new_cover_songs p {
    margin-bottom: 30px;
    color: #adadad;
    font-size: 12px;
}

/* Book to sing */
.book_to_sing {
    width: 100%;
    height: 80vh;
    background: url("/assets/img/contact_2.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.book_to_sing_cont {
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: end;
}

.book_to_sing_content .form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.book_to_sing_content {
    width: 46%;
}

.book1 {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}


.book1 input {
    height: 50px;
    width: 50%;
    background-color: transparent;
    border-radius: 3px;
    box-shadow: none;
    color: #222222;
    padding-left: 30px;
    padding-right: 20px;
    padding-top: 11px;
    padding-bottom: 13px;
    font-size: 14px;
    line-height: 26px;
    font-weight: 400;
    border: 1px solid #222222;
    font-family: 'Changa', sans-serif;
    color: #ffffff;
    border-color: #ffffff;
        transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.book2 textarea {
    background-color: transparent;
    width: 100%;
    height: 120px;
    border-radius: 3px;
    box-shadow: none;
    color: #222222;
    padding: 12px 20px;
    font-size: 14px;
    line-height: 26px;
    font-weight: 400;
    border: 1px solid #222222;
    font-family: 'Changa', sans-serif;
    color: #ffffff;
    border-color: #ffffff;
        transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.book1 input::placeholder, .book2 textarea::placeholder {
    color: #ffffff;
}

.book_to_sing_cont p{
    color: #d4d4d4;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 45px;
    width: 46%;
    text-align: center;
    font-weight: 400;
    line-height: 25px;
}

.button_cont{
    width: 46%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.button_cont button{
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    padding: 15px 35px;
    text-align: center;
    color: #ffffff;
    background-color: #222222;
    border-radius: 5px;
    border: none;
    transition: all 0.4s linear 0s;
    min-width: 160px;
    font-family: 'Changa', sans-serif;
    background-color: #8139df;
    cursor: pointer;
}

.button_cont button:hover {
    background-color: #c13266;
    color: #000000;
}

/* Home Footer */
.home_footer {
    width: 100%;
    background:#222222;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 100px;
    padding-top: 100px;
}

.home_footer_cont{
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.col{
    width: 33.33333333%;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer{
    width: 100%;
    background: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
}

.subscribe-field{
    position: relative;
    display: flex;
    justify-content: center;
    height: 40px;
    margin-top: 35px;
}

.subscribe-input{
    width: 79%;
    height: 43px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    padding: 0 34px 0 16px;
    color: #fff;
    font-size: 11px;
    outline: none;
}

/* placeholder style like screenshot */
.subscribe-input::placeholder{
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: 1px;
}

/* icon button inside input */
.subscribe-icon-btn{
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 26px;
    border: 0;
    background: transparent;
    cursor: pointer;
    display: grid;
    place-items: center;
}

.subscribe-icon-btn i{
  font-size: 22px;
  color: #8139df; /* pink like the image */
}

/* optional hover/focus polish */
.subscribe-field:focus-within .subscribe-input{
  border-color: #8139df;
}

.subscribe-icon-btn:hover i{
  filter: brightness(1.1);
}

.home_footer_info{
    margin-top: 30px;
}

.home_f_p{
    margin-bottom: 0 !important;
}

.home_footer_info p{
    color: #b9b9b9;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 15px;
    width: 100%;
    text-align: center;
    font-weight: 400;
    line-height: 25px;
    font-family: Lato, sans-serif;
}

.home_footer_info p:nth-child(2){
    color: #8139df;
    font-size: 13px;
}
.home_footer_info p:nth-child(5){
    color: #8139df;
    font-size: 13px;
}
.home_footer_info p:nth-child(8){
    color: #8139df;
    font-size: 13px;
}

.home_footer_info p i{
    margin-right: 10px;
    font-size: 12px;
    color: #8139df;
}

.home_f_p a{
    color: #b9b9b9;
    text-decoration: none;
}

.home_f_p p{
    color: #8139df;
    font-size: 12px;
}
.container{
padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.copyright {
    color: #d4d4d4;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 25px;
}

footer{
    height: 250px;
}

.social_media{
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}



/* the clickable circle */
.social-btn{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  text-decoration: none;

  background: #222; /* fallback */
  transition: transform .2s ease, filter .2s ease;
}

/* icon size */
.social-btn i{
  font-size: 14px;
  line-height: 1;
}

/* brand colors on the <a> */
.social-btn.facebook{
  background-color: #507cbe;
}

.social-btn.google{
  background-color: #db4437;
}

.social-btn.instagram{
  background: linear-gradient(to right, #833ab4, #fd1d1d, #fcb045);
}

/* hover/focus */
.social-btn:hover,
.social-btn:focus-visible{
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.social-btn:focus-visible{
  outline: 2px solid rgba(255,255,255,0.7);
  outline-offset: 4px;
}

.container {
    max-width: 100%;
    
}


.comingsoon{
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 70px 16px;
  background: #1b1b1b;
  color: #fff;
}
.comingsoon-inner{
  width: 100%;
  max-width: 900px;
  text-align: center;
}

/* ---------- TEXTS (SCALED DOWN) ---------- */
.comingsoon-title{
  font-family: "Oswald", sans-serif;
  font-size: clamp(34px, 4.5vw, 64px);
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.comingsoon-subtitle{
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
}

/* ---------- COUNTDOWN ---------- */
.countdown{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  max-width: 860px;
  margin: 0 auto 0; /* no subscribe below, so no extra margin needed */
}

.time-box{
  position: relative;
  padding: 8px 8px 14px;
}

/* vertical separators */
.time-box:not(:last-child)::after{
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  width: 1px;
  height: 120px;
  background: rgba(255,255,255,0.55);
}

/* ✅ Countdown color */
.time-amount{
  font-size: clamp(52px, 7vw, 105px);
  font-weight: 600;
  line-height: 1;
  color: #8139df;
}

.time-label{
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

.confetti{
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 99999;
}

.confetti-piece{
  position: absolute;
  top: -12px;
  opacity: 0.95;
  will-change: transform;
  animation: confetti-fall var(--dur) cubic-bezier(.2,.65,.2,1) forwards;
}

:root{
  --ls-pop-bg: #1a1a1a;
  --ls-pop-ink: #4e1d8f;
  --ls-pop-ink2: #7b6a74;
  --ls-pop-shadow: rgba(0,0,0,.28);
}

.ls-pop{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}
.ls-pop.is-open{ display: block; }

.ls-pop__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

.ls-pop__panel{
  position: relative;
  width: min(760px, calc(100% - 48px));
  margin: 18vh auto 0;
  background: var(--ls-pop-bg);
  box-shadow: 0 18px 70px var(--ls-pop-shadow);
  padding: 34px 34px 28px;
  outline: none;
}

.ls-pop__close{
  position: absolute;
  top: 0;
  right: 0;
  width: 72px;
  height: 52px;
  border: 0;
  background: var(--ls-pop-ink);
  color: #ffffff;
  font-size: 12px;
  letter-spacing: .08em;
  cursor: pointer;
}
.ls-pop__close:hover{ filter: brightness(1.06); }

.ls-pop__title{
  margin: 0 0 10px;
  color: #ffffff;
  font-family: "Times New Roman", Georgia, serif; /* swap to your site serif if you have one */
  font-size: 42px;
  letter-spacing: .03em;
  font-weight: 500;
  text-transform: uppercase;
}

.ls-pop__text{
  margin: 0 0 22px;
  color: #c6afe4;
  opacity: .9;
  font-size: 16px;
  line-height: 1.45;
}

.ls-pop__form{
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 20px;
  align-items: center;
}

.ls-pop__input{
  height: 44px;
  padding: 0 14px;
  border: 2px solid #ffffff;
  background: transparent;
  color: #ffffff;
  outline: none;
  width: 400px;
}
.ls-pop__input::placeholder{
  color: #ffffff;
  opacity: .85;
}

.ls-pop__btn{
  height: 44px;
  padding: 0 26px;
  border: 2px solid var(--ls-pop-ink);
  background: var(--ls-pop-ink);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}
.ls-pop__btn:hover{ filter: brightness(1.06); }

.ls-pop__msg{
  grid-column: 1 / -1;
  min-height: 18px;
  color: var(--ls-pop-ink);
  font-size: 14px;
  opacity: .95;
  margin-top: -6px;
}

body.ls-pop-lock{ overflow: hidden; }

/* Responsive: stack fields on small screens */
@media (max-width: 640px){
  .ls-pop__panel{ padding: 26px 18px 20px; margin-top: 14vh; }
  .ls-pop__title{ font-size: 30px; }
  .ls-pop__form{ grid-template-columns: 1fr; gap: 14px; }
  .ls-pop__btn{ width: 100%; }
}

@keyframes confetti-fall{
  0%   { transform: translate3d(var(--x0), -12px, 0) rotate(var(--r0)); }
  100% { transform: translate3d(var(--x1), 110vh, 0) rotate(var(--r1)); }
}
/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px){
  .countdown{
    row-gap: 22px;
    max-width: 520px;
  }

  .time-box:not(:last-child)::after{
    display: none;
  }
}

@media (max-width: 420px){
  .comingsoon{
    padding: 60px 12px;
  }
}


/* Scrollbar width */
::-webkit-scrollbar {
    width: 5px;
    height: 16px;
}

/* Track (background) */
::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0);
}

/* Thumb (the draggable part) */
::-webkit-scrollbar-thumb {
    background: #5316a1;
    border-radius: 0px;
    border: 2px solid #5316a1;
    /* gives spacing from track */
}

/* Thumb on hover */
::-webkit-scrollbar-thumb:hover {
    background: #5b2d97;
}

/* ---------- RESPONSIVE BREAKPOINTS ---------- */
@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}
/* Tablet: tighten spacing */
@media (max-width: 1024px) {
    .nav ul li:nth-child(4) a {
        font-size: 32px;
    }

    .nav ul li a {
        padding: 0 12px;
    }

}

@media (min-width: 992px) {
    .bio_content h2.section_header {
        font-size: 48px;
    }
}

/* Mobile: collapse to hamburger */
@media (max-width: 768px) {
    .nav-inner {
        justify-content: center;
    }

    .nav-toggle {
        display: block;
    }

    /* Make brand smaller so it fits */
    .nav ul li:nth-child(4) a {
        font-size: 26px;
        line-height: 70px;
        padding: 0 10px;
    }

    /* Turn the ul into a dropdown panel */
    .nav ul {
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.92);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.25s ease;
        padding: 0;
    }

    .nav ul li a {
        line-height: 1;
        padding: 16px;
        width: 100%;
    }

    /* Open state (when nav has .open) */
    .nav.open ul {
        max-height: 520px;
        /* enough to show all links */
        padding: 8px 0;
    }

    /* Hover underline doesn’t look great on dropdown; optional disable */
    .nav ul li a::after {
        bottom: 6px;
    }
}

@media (max-width: 480px){
  .subscribe-input{
    height: 70px;
    padding: 0 70px 0 20px;
    font-size: 16px;
  }
  .subscribe-icon-btn{
    right: 14px;
  }
}

/* Small phones */
@media (max-width: 420px) {
    .nav ul li:nth-child(4) a {
        font-size: 22px;
    }
}