/* ==========================================================================
   SHOWS PAGE STYLES
   ========================================================================== */

/* Hero Section */
.hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 0px 40px rgba(0, 0, 255, 0.1);
}

.hero-bg {
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background-image: url('/images/tour-bg.webp');
  background-size: cover;
  background-position: center;
  filter: brightness(0.6);
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
  z-index: -1;
}

.hero-content {
  text-align: center;
  padding: 0 2rem;
  max-width: 900px;
  margin-top: 9rem;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 2px 4px 20px rgba(0,0,0,0.5);
}

/* Main Content */
.main-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 2rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--color-primary-light);
  margin-bottom: 2rem;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 1px;
}

.no-shows-message {
  color: var(--color-text-muted);
  font-style: italic;
  padding: 2rem 0;
  text-align: center;
}

/* Tour Date Cards */
.upcoming-shows,
.past-shows {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tour-date {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #222;
  align-items: flex-start;
  width: 100%;
  max-width: 275px;
}

.tour-date:last-child {
  border-bottom: none;
}

.date-box {
  min-width: 70px;
  text-align: center;
  flex-shrink: 0;
}

.date-month {
  font-family: var(--font-display);
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--color-primary-light);
  letter-spacing: 0.05em;
}

.date-day {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--color-text);
  line-height: 1;
  margin: 0.2rem 0;
}

.date-year {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.tour-info {
  flex: 1;
}

.tour-venue {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-text);
  margin-bottom: 0.3rem;
}

.tour-location {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.tour-note {
  color: var(--color-primary-light);
  font-size: 0.9rem;
  font-style: italic;
  margin-top: 0.3rem;
}

.tour-note a {
  color: var(--color-primary);
}

.tour-note a:hover {
  text-decoration: underline;
}

.tour-time {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin-top: 0.3rem;
}

/* Past Shows Section */
.past-shows {
  margin-top: 4rem;
  opacity: 0.8;
}

.past-shows .tour-date {
  opacity: 0.7;
}

.past-shows .date-box {
  opacity: 0.8;
}

/* ==========================================================================
   RESPONSIVE - Smaller Screen
   ========================================================================== */
@media (max-width: 1125px) {
  .hero-content {
    margin-top: 7rem;
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .hero {
    min-height: 40vh;
  }

  .hero-content {
    margin-top: 3rem;
  }

  .main-content {
    padding: 1.5rem 1.5rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .tour-date {
    gap: 1rem;
  }

  .date-box {
    min-width: 55px;
  }

  .date-day {
    font-size: 1.8rem;
  }

  .tour-venue {
    font-size: 1rem;
  }
}
