
/* Light weight */
@font-face {
  font-family: 'Conthrax';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/Conthrax-Light.woff2') format('woff2'),
       url('../fonts/Conthrax-Light.woff') format('woff');
}

/* SemiBold weight */
@font-face {
  font-family: 'Conthrax';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/Conthrax-SemiBold.woff2') format('woff2'),
       url('../fonts/Conthrax-SemiBold.woff') format('woff');
}



html, body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  scroll-behavior: smooth;
  overflow: auto;
  height: 100vh;
}

.scroll-container {
  overflow-x: hidden;
  overflow-y: scroll;
  height: 100vh;
  -webkit-overflow-scrolling: touch;
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  background: black;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: top 0.3s ease-in-out;
}

.navbar.hidden {
  top: -100px; /* hide it by moving it out of view */
}

.navbar-left .logo {
  font-family: 'Conthrax', sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 2px;
  color: white;
  text-transform: uppercase;
  text-decoration: none;
}

.navbar-right {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 60px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  justify-content: center;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-size: 15px;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #9b9b9b;
}

.ticket-btn {
  padding: 8px 18px;
  border-radius: 25px;
  background-color: rgb(0, 0, 0);
  border: 1px solid white;
  color: rgb(255, 255, 255) !important;
  font-weight: 600;
  font-size: 12px;
  transition: background 0.3s, color 0.3s;
}

 .ticket-btn:hover {
    background-color: white;
    color: black !important;
  }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: 20px;
  z-index: 1001; /* stay above the menu */
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Active state for morphing into an X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 70%;
  background-color: rgba(0, 0, 0, 0.95);
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  text-align: center;
  padding: 20px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu.active {
  transform: translateX(0);
}


.mobile-menu a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: white;
  text-decoration: none;
  margin: 10px 0;
  font-size: 16px;
  text-transform: uppercase;
}

.mobile-menu .ticket-btn {
  background: rgb(0, 0, 0);
  border: 1px solid white;
  color: rgb(255, 255, 255);
  padding: 10px 20px;
  border-radius: 25px;
}

.mobile-menu .ticket-btn:hover {
  background: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  border-radius: 25px;
}

 .mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }

.close-btn {
  font-size: 32px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}


section {
  scroll-snap-align: start;
  min-height: 100vh; 
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
}

#hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100svh; /* mobile landscape safe */
  background: url('../images/album-img.avif') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  font-family: 'Conthrax', 'Montserrat', sans-serif;
  font-weight: 600;
  scroll-snap-align: start;
  box-sizing: border-box;
  padding: 0 20px;
  z-index: 3;
  overflow: hidden;
}

#hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  z-index: 1;
  pointer-events: none;
}

.title-content {
  position: absolute;
  top: 220px;
  left: 80px;
  z-index: 2;
  max-width: 90%;
  text-align: left;
  color: white;
}


.title {
  font-size: 50px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  margin: 0;
}

.subtitle {
  font-size: 34px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  margin-top: 10px;
  padding-bottom: 20px;
}

.hero-cta-button {
  text-decoration: none;
  margin-top: 30px;
  padding: 15px 30px;
  font-size: 15px;
  font-weight: 300;
  border: none;
  background-color: #ffffff;
  color: #000000;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  font-family: 'Conthrax', 'Montserrat', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-cta-button:hover {
  background-color: #000;
  color: white;
  transform: translateY(-2px);
}

.countdown {
  background-color: black;
  color: white;
  text-align: center;
  width: 100%;
  margin: auto;
  padding-bottom: 80px;
  display: flex;
  gap: 20px;
  justify-content: center;
  font-family: 'Conthrax', 'Montserrat', sans-serif;
  font-weight: 600;
}

.countdown-heading {
  font-family: 'Conthrax', 'Montserrat', sans-serif;
  font-weight: 600;
  width: 100%;
  margin-bottom: 15px;
  font-size: 24px;
}


.countdown-item {
  text-align: center;
}

.countdown-item .number {
  font-size: 40px;
}

.countdown-item .label {
  font-size: 14px;
  margin-top: 5px;
}


#details {
  position: relative;
  background-color: white;
  border-radius: 0 0 30px 30px;
  color: #000;
  z-index: 3;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  display: flex;                
  justify-content: center;    
  align-items: center;         
  min-height: 100vh;          
  padding: 40px 20px;          
  box-sizing: border-box;
}


.details-content {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
  font-family: 'Merriweather', serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.8;
}

.details-content strong {
  font-weight: 800;
  color: #111;
}

.details-content em {
  font-style: italic;
  color: #555;
}



@media screen and (max-width: 768px) {
  .main-content {
    flex-direction: column;
  }
  .countdown {
    flex-wrap: wrap;
  }
}

#pricing h1 {
  margin-bottom: 50px;
  font-size: 40px;
  text-align: center;
  font-family: 'Conthrax', 'Montserrat', sans-serif;
  font-weight: 600;
  color: #333;
}

.tickets-section {
  padding: 60px 20px;
  background: #f5f5f5;
  text-align: center;
}

.ticket-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
}

.ticket-card {
  flex: 0 1 calc(50% - 30px);
  background: none;
  padding: 50px;
  text-align: center;              
  display: flex;
  flex-direction: column;
  align-items: center; 
}

.ticket-card img {
  max-width: 200%;
  width: 550px;           
  height: auto;
  object-fit: cover;
}



.ticket-card p {
  font-size: 2.1rem;
  font-weight: bold;
  margin: 35px 0 5px 0;
  font-family: 'Conthrax', 'Montserrat', sans-serif;
}

/* Price colors */
.ticket-card.standard p {
  color: #888;
}
.ticket-card.vip p {
  color: #8B4513;
}
.ticket-card.vvip p {
  color: #bea505;
}



.ticket-card .buy-btn {
  margin-top: 10px;
  text-decoration: none;
  padding: 12px 35px;
  border: none;
  border-radius: 25px;
  background-color: #333;
  color: white;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  width: 100%;
}

.ticket-card .buy-btn:hover {
  background-color: #555;
  transform: translateY(-2px);
}



.site-footer {
  background-color: #000;
  color: #fff;
  padding: 30px 20px;
  text-align: center;
  scroll-snap-align: start;
  min-height: 300px;
}

.social-links {
  margin-bottom: 15px;
}

.social-links a {
  color: #fff;
  font-size: 1.5rem;
  margin: 0 12px;
  text-decoration: none;
  transition: opacity 0.3s;
}

.social-links a:hover {
  opacity: 0.7;
}

.site-footer p {
  font-size: 0.95rem;
  margin: 0;
}





/* ====== Responsive Styles ====== */

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .navbar {
    padding: 20px 40px;
    justify-content: center;
  }

  .navbar-left,
  .navbar-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

    .navbar-left .logo {
      position: absolute;
      left: 44%;
      transform: translateX(-50%);
      font-size: 15px;
    }
  }

  @media (min-width: 1025px) {
    .navbar-left .logo {
      margin-right: 80px;
    }
}


@media screen and (min-width: 769px) and (max-width: 1024px) {

 .title-content {
    font-size: 90%;
    padding: 10px;
  }



  .title {
    font-size: 50px;
  }

  .subtitle {
    font-size: 36px;
  }

  .hero-cta-button {
    padding: 14px 28px;
    font-size: 15px;
  }

  .countdown {
    flex-wrap: wrap;
    gap: 15px;
  }

  .details-content {
    font-size: 16px;
    padding: 0 40px;
  }

 

}

@media (max-width: 1024px) and (orientation: landscape) {
  #hero {
    overflow-y: auto;              
  }

  #hero::after {
    content: "";
    position: fixed; 
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 50vh;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    z-index: 1;
    pointer-events: none;
  }

    .title {
    font-size: 37px;
  }

  .subtitle {
    font-size: 23px;
  }

  .hero-cta-button {
    padding: 12px 28px;
    font-size: 15px;
  }
}




@media screen and (max-width: 768px) {

  #hero {
    background-position: 70% center
  }


  .title-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 90%;
    padding: 20px;
    margin-bottom: 120px; 
    left: 0;
    right: 0;
  }
  


  .title {
    font-size: 30px;
  }

  .subtitle {
    font-size: 18px;
  }

  .hero-cta-button {
    padding: 12px 28px;
    font-size: 12px;
  }

  .countdown {
    flex-wrap: wrap;
    gap: 10px;
  }

  .details-content {
    font-size: 18px;
    padding: 0 20px;
    scroll-snap-align: start;
  }

  .tickets-section h1 {
    font-size: 25px;
  }

.ticket-grid {
  display: flex;
  flex-direction: column;
  align-items: center;       
  justify-content: center;
  padding: 0;                
  margin: 0 auto;           
  width: 100%;
}

.ticket-card {
  width: 100%;
  max-width: 90%;          
  margin: 0 auto;           
  box-sizing: border-box;
  text-align: center;
}


  .ticket-card img {
    width: 140%;
    aspect-ratio: 3 / 1;
    object-fit: cover;
  }

}
