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

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

body, html {
  width: 100%;
  height: 100%;
  font-family: Arial, 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: flex-start;
  gap: 18px;
  padding: 24px 12px 32px;
  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);
  }
}

/* MAIN PANEL */
.info-box {
  background: rgba(5, 5, 5, 0.96);
  padding: 18px 24px 24px;
  border-radius: 0;
  width: 100%;
  max-width: 1200px;
  text-align: left;
  position: relative;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.9);
  transition: box-shadow 0.3s ease, margin-top 0.5s ease-in-out;
  overflow-x: hidden;
}

/* Move info box up on tour page (desktop only) */
@media (min-width: 769px) {
  .info-box.tour-active {
    margin-top: -40px;
  }
}

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

/* TWO-COLUMN LAYOUT */
.content-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 24px;
  align-items: flex-start;
}

.sidebar {
  background: rgba(15, 15, 15, 0.95);
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 14px 14px 16px;
  color: #f5f5f5;
}

.sidebar-section {
  margin-top: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.sidebar-section-title {
  background: linear-gradient(to right, #4a0030, #240016);
  color: #f5f5f5;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 6px;
}

.sidebar-section-body {
  background: rgba(8, 8, 8, 0.95);
  padding: 6px 6px 8px;
}

.sidebar-list {
  list-style: none;
  font-size: 11px;
}

.sidebar-list li {
  padding: 1px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-list li:last-child {
  border-bottom: none;
}

.sidebar-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3px 2px;
  text-decoration: none;
}

.sidebar-list .label {
  color: #f5f5f5;
  margin-right: 6px;
  font-weight: 700;
}

.sidebar-list .value {
  color: #d3b4ff;
}

.link-left {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.sidebar-icon {
  width: 18px;
  height: 18px;
  object-fit: cover;
  border-radius: 4px;
}

.profile-card {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 8px 6px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  margin-bottom: 12px;
}

.profile-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 0;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.profile-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.profile-top {
  display: none;
  align-items: center;
  gap: 10px;
  margin: 10px 0 12px;
}

.profile-top .profile-avatar img {
  width: 72px;
  height: 72px;
  border-radius: 0;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.profile-top .profile-meta .profile-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.site-icon-block {
  margin-top: 10px;
  display: flex;
  justify-content: flex-start;
}

.site-icon-block img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.profile-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.profile-tagline {
  font-size: 12px;
  opacity: 0.8;
}

.music-panel {
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent),
              rgba(12, 12, 12, 0.96);
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 16px 18px 18px;
  color: #f5f5f5;
}

/* 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: left;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  pointer-events: none;
  max-height: 0;
  overflow: hidden;
}

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

.music-main {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 18px;
}

.music-image-box {
  width: 100%;
  max-width: 620px;
}

.music-album-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 0;
  display: block;
}

.track-meta {
  min-width: 140px;
  color: #f5f5f5;
  font-size: 15px;
}

.track-label {
  font-weight: 700;
  text-transform: lowercase;
  margin-bottom: 4px;
}

.track-title {
  font-size: 16px;
}

.coming-soon {
  font-size: 30px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 10px;
  margin-top: 0;
  letter-spacing: 0;
  line-height: 1.1;
}

.drop-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px 4px;
  margin-bottom: 6px;
  background: linear-gradient(to right, #4a0030, #240016);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  max-width: 100%;
  flex-wrap: wrap;
}

.drop-date {
  font-size: 13px;
  color: #cccccc;
  font-weight: 500;
}

.listen-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
  max-width: 600px;
  margin: 10px 0 0;
}

.listen-buttons a {
  text-decoration: none;
  display: block;
  width: auto;
}

.listen-now-button {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ff77b0, #c2185b 45%, #7a103d);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.9);
  padding: 7px 16px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
  width: auto;
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.5);
}

.listen-now-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -30%;
  width: 50%;
  height: 140%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.65), transparent);
  opacity: 0.75;
  transform: translateX(0) skewX(-15deg);
  pointer-events: none;
}

.button-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.listen-now-button span {
  display: inline-block;
}

/* Spotify - Green */
.listen-buttons a:nth-child(1) .listen-now-button {
  background:
    radial-gradient(circle at 15% 0%, rgba(110, 255, 180, 0.9), transparent 55%) padding-box,
    linear-gradient(145deg, rgba(40, 210, 120, 0.9), transparent 60%) padding-box,
    linear-gradient(135deg, #4bff8a, #1db954 45%, #0a7a34);
  box-shadow: 0 0 16px rgba(75, 255, 138, 0.6);
}

.listen-buttons a:nth-child(1) .listen-now-button:hover {
  background:
    radial-gradient(circle at 15% 0%, rgba(135, 255, 200, 0.95), transparent 55%) padding-box,
    linear-gradient(145deg, rgba(60, 230, 150, 1), transparent 60%) padding-box,
    linear-gradient(135deg, #6dff9e, #28e565 45%, #0da048);
}

/* Apple Music - Red */
.listen-buttons a:nth-child(2) .listen-now-button {
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 140, 190, 0.9), transparent 55%) padding-box,
    linear-gradient(145deg, rgba(235, 80, 150, 0.9), transparent 60%) padding-box,
    linear-gradient(135deg, #ff739f, #e91e63 45%, #b0123f);
  box-shadow: 0 0 16px rgba(255, 115, 159, 0.6);
}

.listen-buttons a:nth-child(2) .listen-now-button:hover {
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 170, 215, 0.95), transparent 55%) padding-box,
    linear-gradient(145deg, rgba(245, 110, 185, 1), transparent 60%) padding-box,
    linear-gradient(135deg, #ff94b8, #f06292 45%, #c51b57);
}

  /* SoundCloud - Orange */
  .listen-buttons a:nth-child(3) .listen-now-button {
    background:
      radial-gradient(circle at 15% 0%, rgba(255, 190, 120, 0.9), transparent 55%) padding-box,
      linear-gradient(145deg, rgba(245, 130, 60, 0.9), transparent 60%) padding-box,
      linear-gradient(135deg, #ffb347, #ff5500 45%, #d63b00);
    box-shadow: 0 0 16px rgba(255, 150, 64, 0.6);
  }

.listen-buttons a:nth-child(3) .listen-now-button:hover {
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 210, 150, 0.95), transparent 55%) padding-box,
    linear-gradient(145deg, rgba(255, 170, 95, 0.95), transparent 60%) padding-box,
    linear-gradient(135deg, #ffd27c, #ff7700 45%, #f05a00);
}

/* YouTube - Red */
.listen-buttons a:nth-child(4) .listen-now-button {
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 150, 190, 0.9), transparent 55%) padding-box,
    linear-gradient(145deg, rgba(220, 70, 130, 0.9), transparent 60%) padding-box,
    linear-gradient(135deg, #ff6b9d, #ad1457 45%, #6b0032);
  box-shadow: 0 0 16px rgba(255, 107, 157, 0.6);
}

.listen-buttons a:nth-child(4) .listen-now-button:hover {
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 185, 215, 0.95), transparent 55%) padding-box,
    linear-gradient(145deg, rgba(245, 110, 190, 1), transparent 60%) padding-box,
    linear-gradient(135deg, #ff8cbc, #d81b60 45%, #8a0040);
}

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

.button-logo {
  filter: brightness(0) invert(1);
}

/* NAV */
.nav {
  display: flex;
  justify-content: flex-start;
  gap: 18px;
  font-size: 18px;
  margin: 0 auto 4px;
  padding: 6px 10px 8px;
  width: 100%;
  max-width: 1200px;
  flex-wrap: wrap;
  box-sizing: border-box;
  background: linear-gradient(to right, #4a0030, #240016);
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.nav a {
  color: #f5f5f5;
  text-decoration: none;
  font-weight: 500;
  padding: 2px 6px;
  border-radius: 3px;
  transition: all 0.15s ease;
  display: inline-block;
  position: relative;
}

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

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

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

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

.nav span {
  color: #f5f5f5;
}

/* ICON ROW */
.icons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  margin-bottom: 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: 4px;
}

.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: 32px;
  height: 32px;
  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 28px;
    gap: 18px;
  }

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

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

  .content-layout {
    grid-template-columns: 1fr;
    display: grid;
  }

  .music-panel {
    margin-top: 12px;
  }

  .drop-header {
    gap: 6px;
    padding: 3px 8px 4px;
    flex-wrap: nowrap;
  }

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

  .drop-date {
    font-size: 12px;
  }

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

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

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

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

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

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

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

  /* Music image box - responsive */
  .music-image-box {
    max-width: 100%;
  }

  .music-album-image {
    max-width: 100%;
  }

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

  .listen-buttons {
    max-width: 100%;
    gap: 8px;
  }

  .listen-now-button {
    width: 100%;
    max-width: 100%;
    font-size: 15px;
    padding: 10px 14px;
  }

  /* 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-image-box {
    max-width: 240px;
  }

  .music-album-image {
    max-width: 240px;
  }

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

  .listen-buttons {
    max-width: 240px;
    gap: 8px;
  }

  .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;
  }
}
