/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* FULL PAGE BACKGROUND */
html {
  scroll-behavior: smooth;
}

body, html {
  width: 100%;
  height: 100%;
  font-family: Helvetica, sans-serif;
  background: url('background.gif') no-repeat center center / cover;
  background-attachment: fixed;
  overflow-x: hidden;
}

/* BACKGROUND HOLDER */
.page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* TOUR FLYER (Outside the box) */
.tour-flyer {
  max-width: 520px;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  pointer-events: none;
  max-height: 0;
  overflow: hidden;
}

.tour-flyer.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  max-height: 2000px;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out, max-height 0.5s ease-in-out;
}

.tour-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: block;
}

.tour-flyer.active .tour-image {
  opacity: 1;
}

/* TICKETS TEXT (Between flyer and info box) */
.tickets-text {
  text-align: center;
  padding: 30px 20px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  pointer-events: none;
  max-height: 0;
  overflow: visible;
}

.tickets-text.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  max-height: 200px;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out, max-height 0.5s ease-in-out;
}

.tickets-link {
  color: white;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  animation: bulge 3s ease-in-out infinite;
  transform-origin: center;
  padding: 10px 0;
  box-sizing: border-box;
}

.tickets-word {
  text-decoration: underline;
}

@keyframes bulge {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
}

/* WHITE INFO BOX */
.info-box {
  background: white;
  padding: 32px 42px 36px;
  border-radius: 12px;
  width: 520px;
  text-align: center;
  position: relative;
  box-sizing: border-box;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.8),
              0 0 60px rgba(255, 255, 255, 0.5),
              0 0 90px rgba(255, 255, 255, 0.3);
  transition: box-shadow 0.3s ease;
  overflow-x: hidden;
}

/* MAIN CONTENT */
.main-content {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* TOUR CONTENT (Inside the box) */
.tour-content {
  margin-top: 0;
  margin-bottom: 24px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  pointer-events: none;
  max-height: 0;
  overflow: hidden;
}

.tour-content.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  max-height: 2000px;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out, max-height 0.5s ease-in-out;
}

.tour-dates {
  text-align: left;
  width: 100%;
}

.tour-date-item {
  padding: 16px 0;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.tour-date-item:first-child {
  padding-top: 8px;
}

.tour-date-item:last-child {
  border-bottom: none;
  padding-bottom: 8px;
}

.tour-date-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 0;
}

.tour-date-item .date {
  font-weight: bold;
  font-size: 16px;
  line-height: 1.2;
}

.tour-date-item .location {
  font-size: 14px;
  color: #333;
  line-height: 1.3;
}

.tour-date-item a {
  display: inline-block;
  text-decoration: none;
}

.tickets-button {
  background: black;
  color: white;
  border: none;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: normal;
  border-radius: 4px;
  cursor: pointer;
  font-family: Helvetica, sans-serif;
  white-space: nowrap;
  transition: background 0.3s ease, transform 0.2s ease;
}

.tickets-button:hover {
  background: #333;
  transform: translateY(-1px);
}

.tickets-button:active {
  transform: translateY(0);
}

/* MUSIC CONTENT (Outside the box, above it) */
.music-content {
  text-align: center;
  max-width: 520px;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  margin-bottom: 20px;
  margin-top: 0;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out, margin-top 0.5s ease-in-out;
  pointer-events: none;
  max-height: 0;
  overflow: hidden;
}

.music-content.active {
  opacity: 1;
  transform: translateY(0);
  margin-top: -60px;
  pointer-events: auto;
  max-height: 2000px;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out, max-height 0.5s ease-in-out, margin-top 0.5s ease-in-out;
}

.music-question-box {
  width: 320px;
  height: 320px;
  border: none;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: black;
}

.question-mark {
  font-size: 170px;
  font-weight: bold;
  color: white;
  line-height: 1;
}

.coming-soon {
  font-size: 30px;
  font-weight: bold;
  color: white;
  margin-bottom: 16px;
  margin-top: 0;
  text-transform: uppercase;
  letter-spacing: 1px;

  ily-text {
    margin-bottom: 20px;
  }
  
}

.listen-now-button {
  background: rgb(173, 17, 17);
  color: white;
  border: none;
  padding: 14px;
  font-size: 20px;
  font-weight: normal;
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
  font-family: Helvetica, sans-serif;
  transition: background 0.3s ease, transform 0.2s ease;
  width: 320px;
  max-width: 100%;
}

.listen-now-button:hover {
  background: #cc0000;
  transform: translateY(-2px);
}

.listen-now-button:active {
  transform: translateY(0);
}

/* NAV */
.nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  font-size: 20px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  width: 100%;
  max-width: 100%;
  flex-wrap: wrap;
  box-sizing: border-box;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.nav a {
  color: black;
  text-decoration: none;
  font-weight: normal;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
  display: inline-block;
  position: relative;
}

.nav a:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.nav a:active {
  transform: translateY(0) scale(0.95);
  background: rgba(0, 0, 0, 0.15);
}

.nav a:focus {
  font-weight: bold;
  outline: none;
}

.nav a.active {
  font-weight: bold;
}

.nav span {
  color: black;
}

/* ICON ROW */
.icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  margin-top: 0;
  width: 100%;
  max-width: 100%;
  flex-wrap: wrap;
  box-sizing: border-box;
  transition: margin-top 0.5s ease-in-out;
}

/* Move icons higher when tour content is not shown (home/music pages) */
.main-content:not(.tour-active) .icons {
  margin-top: -12px;
}

.icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease;
  line-height: 0;
}

.icons a:hover {
  transform: translateY(-5px);
}

.icons img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  cursor: pointer;
  display: block;
}

/* LOGO */
.logo img {
  width: 140px;
  max-width: 100%;
  margin: 0 auto;
  display: block;
  height: auto;
}

/* MOBILE RESPONSIVE STYLES */
@media (max-width: 768px) {
  /* Page padding */
  .page {
    padding: 20px 10px;
    gap: 20px;
  }

  /* Info box - make it responsive */
  .info-box {
    width: 100%;
    max-width: 100%;
    padding: 24px 20px;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  /* Main content - ensure it's bound */
  .main-content {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Navigation - smaller font */
  .nav {
    font-size: 18px;
    gap: 10px;
    margin-bottom: 20px;
  }

  .nav a {
    padding: 3px 6px;
  }

  /* Icons - slightly smaller */
  .icons {
    gap: 12px;
    margin-bottom: 20px;
  }

  /* Move icons higher on non-tour pages for mobile */
  .main-content:not(.tour-active) .icons {
    margin-top: -8px;
  }

  .icons img {
    width: 52px;
    height: 52px;
  }

  /* Logo - smaller */
  .logo img {
    width: 100px;
    max-width: 100%;
    height: auto;
  }

  /* Music content - shift up on mobile */
  .music-content.active {
    margin-top: -40px;
  }

  /* Music question box - responsive */
  .music-question-box {
    width: 100%;
    max-width: 280px;
    height: 280px;
  }

  .question-mark {
    font-size: 140px;
  }

  .coming-soon {
    font-size: 24px;
  }

  .listen-now-button {
    width: 100%;
    max-width: 280px;
    font-size: 18px;
    padding: 12px;
   
  }

  /* Tour dates - stack on mobile */
  .tour-dates {
    text-align: center;
    width: 100%;
  }

  .tour-date-item {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 0;
    width: 100%;
  }

  .tour-date-item:first-child {
    padding-top: 12px;
  }

  .tour-date-item:last-child {
    padding-bottom: 12px;
  }

  .tour-date-info {
    text-align: center;
    align-items: center;
    width: 100%;
    gap: 8px;
  }

  .tour-date-item .date {
    font-size: 17px;
  }

  .tour-date-item .location {
    font-size: 15px;
  }

  .tour-date-item a {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 4px;
  }

  .tickets-button {
    width: 100%;
    max-width: 220px;
    padding: 14px;
    font-size: 16px;
    font-weight: bold;
  }

  /* Tickets text - smaller */
  .tickets-text {
    font-size: 14px;
    padding: 24px 15px;
    letter-spacing: 1px;
  }

  /* Tour flyer padding */
  .tour-flyer {
    padding: 0 10px;
  }
}

/* Extra small devices (phones in portrait) */
@media (max-width: 480px) {
  .page {
    padding: 15px 8px;
    gap: 16px;
  }

  .info-box {
    padding: 20px 16px;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .main-content {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .nav {
    font-size: 16px;
    gap: 8px;
  }

  /* Music content - shift up on extra small screens */
  .music-content.active {
    margin-top: -30px;
  }

  .music-question-box {
    max-width: 240px;
    height: 240px;
  }

  .question-mark {
    font-size: 120px;
  }

  .coming-soon {
    font-size: 20px;
  }

  .listen-now-button {
    max-width: 240px;
    font-size: 16px;
  }

  .icons img {
    width: 45px;
    height: 48px;
  }

  .logo img {
    width: 80px;
    max-width: 100%;
    height: auto;
  }

  .tour-dates {
    text-align: center;
    width: 100%;
  }

  .tour-date-item {
    align-items: center;
    padding: 18px 0;
    gap: 10px;
  }

  .tour-date-item:first-child {
    padding-top: 10px;
  }

  .tour-date-item:last-child {
    padding-bottom: 10px;
  }

  .tour-date-info {
    text-align: center;
    align-items: center;
    width: 100%;
    gap: 6px;
  }

  .tour-date-item a {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 4px;
  }

  .tickets-button {
    max-width: 200px;
    padding: 12px;
    font-size: 15px;
  }

  .tour-date-item .date {
    font-size: 15px;
  }

  .tour-date-item .location {
    font-size: 14px;
  }
}
