/* ============================================================
   FONTS
   ============================================================ */
@font-face {
  font-family: 'MUC Stars';
  src: url('./fonts/MUCStars-Regular.woff2') format('woff2'),
       url('./fonts/MUCStars-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'MUC Stars VF';
  src: url('./fonts/MUCStarsVF.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'MUC Stars Condensed';
  src: url('./fonts/MUCStars-RegularCondensed.woff2') format('woff2'),
       url('./fonts/MUCStars-RegularCondensed.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nimbus Sans';
  src: url('./fonts/NimbusSansNovusTOT-Lig.woff2') format('woff2'),
       url('./fonts/NimbusSansNovusTOT-Lig.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nimbus Sans';
  src: url('./fonts/NimbusSansNovusTOT-Reg.woff2') format('woff2'),
       url('./fonts/NimbusSansNovusTOT-Reg.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --black:        #1a1a18;
  --dark-purple:  #220025;
  --mauve:        #7a4456;
  --pink:         #ca92a8;
  --olive:        #555832;
  --navy:         #43497b;
  --rose:         #da525d;
  --white:        #ffffff;
  --off-white:    #f0ece8;

  --font-display: 'MUC Stars', serif;
  --font-condensed: 'MUC Stars Condensed', serif;
  --font-body:    'Nimbus Sans', Arial, sans-serif;

  --nav-height: 110px;
  --transition: 0.3s ease;
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: linear-gradient(to bottom, rgba(26,26,24,0.6) 0%, rgba(26,26,24,0) 100%);
  transition: background var(--transition), backdrop-filter var(--transition);
}

#main-nav.scrolled {
  background: rgba(26, 26, 24, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 96px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: opacity var(--transition);
}

.nav-logo:hover img {
  opacity: 0.7;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--pink);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left center;
}

.nav-links a:hover {
  color: var(--pink);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  background-image: url('Images/MUC_Hero-Image.webp');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 24, 0.15) 0%,
    rgba(26, 26, 24, 0.0) 40%,
    rgba(26, 26, 24, 0.5) 80%,
    rgba(26, 26, 24, 1.0) 100%
  );
}

/* ---- Scroll indicator ---- */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
  animation: scrollBounce 2.2s ease-in-out infinite;
}

.hero-scroll-label {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.hero-scroll:hover {
  color: var(--white);
}

.hero-scroll svg {
  width: 28px;
  height: 28px;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0);   opacity: 0.7; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 1;   }
}

/* ============================================================
   TOUR / LIVE SECTION
   ============================================================ */
.tour-section {
  padding: 80px 0 120px;
  background: var(--black);
  scroll-margin-top: var(--nav-height);
}

.section-heading {
  font-family: 'MUC Stars VF', serif;
  font-weight: 400;
  font-size: clamp(60px, 10vw, 120px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 60px;
}

.section-heading .vf-char {
  display: inline-block;
}

/* ---- Tour list ---- */
.tour-list {
  width: 100%;
}

.tour-loading,
.tour-empty,
.tour-error {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.4);
  padding: 40px 0;
}

.tour-row {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transition: background var(--transition);
}

.tour-row:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tour-row:hover {
  background: rgba(255, 255, 255, 0.02);
}

.tour-date {
  font-family: 'MUC Stars VF', serif;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: 0.02em;
  color: var(--white);
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
  display: flex;
  align-items: flex-start;
}

.tour-date .vf-char {
  display: inline;
}

.tour-weekday {
  font-family: 'Nimbus Sans', Arial, sans-serif;
  font-size: 0.4em;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-right: 0.3em;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1;
}

.tour-row.sold-out .tour-date,
.tour-row.sold-out .tour-city,
.tour-row.sold-out .tour-venue {
  text-decoration: line-through;
  opacity: 0.35;
}

.tour-sold-out {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  padding: 14px 24px;
  margin-right: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
  display: inline-block;
  align-self: center;
}


.tour-info {
  display: block;
}

.tour-city {
  font-family: 'Nimbus Sans', Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(28px, 3.5vw, 46px);
  letter-spacing: -0.075em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  display: block;
}

.tour-venue {
  font-family: 'Nimbus Sans', Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(28px, 3.5vw, 46px);
  letter-spacing: -0.075em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.5);
}

.tour-ticket {
  display: inline-block;
  align-self: center;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 14px 24px;
  margin-right: 24px;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.tour-ticket:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--black);
}

.tour-ticket-placeholder {
  display: inline-block;
  width: 100px;
  align-self: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 56px 0 40px;
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.footer-logo {
  height: 56px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.35;
  transition: opacity var(--transition);
}

.footer-logo:hover {
  opacity: 0.7;
}

.footer-social {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--transition);
  display: flex;
  align-items: center;
}

.footer-social a:hover {
  color: var(--white);
}

.footer-contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  line-height: 1.8;
}

.footer-contacts a {
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--transition);
}

.footer-contacts a:hover {
  color: var(--pink);
}

.footer-sep {
  margin: 0 10px;
  opacity: 0.4;
}

.footer-nav {
  display: flex;
  gap: 24px;
}

.footer-nav a {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-copy {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.2);
}

/* ============================================================
   SUBPAGES (Imprint / Data Privacy)
   ============================================================ */
.subpage-wrap {
  min-height: 100vh;
  padding: calc(var(--nav-height) + 80px) 0 120px;
}

.subpage-wrap .container {
  max-width: 1200px;
}

.subpage-wrap h1 {
  font-family: 'MUC Stars VF', serif;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 56px;
  line-height: 1;
}

.subpage-wrap h2 {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin: 48px 0 16px;
}

.subpage-wrap h2:first-of-type {
  margin-top: 0;
}

.subpage-wrap p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 12px;
}

.subpage-wrap a {
  color: var(--pink);
  transition: opacity var(--transition);
}

.subpage-wrap a:hover {
  opacity: 0.7;
}

.subpage-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 64px;
  transition: color var(--transition);
}

.subpage-back:hover {
  color: var(--white);
}

.subpage-back::before {
  content: '←';
  font-size: 14px;
  letter-spacing: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --nav-height: 80px;
  }


  .container {
    padding: 0 24px;
  }

  .nav-inner {
    padding: 0 24px;
  }

  .nav-logo img {
    height: 60px;
  }

  .nav-links {
    gap: 24px;
  }

  .nav-links a {
    font-size: 10px;
  }

  .tour-section {
    padding: 60px 0 80px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .tour-row {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 8px 16px;
    padding: 18px 0;
  }

  .tour-date {
    grid-column: 1;
    grid-row: 1;
    font-size: 14px;
  }

  .tour-weekday {
    font-size: 0.55em;
    vertical-align: baseline;
    line-height: inherit;
  }

  .tour-info {
    grid-column: 1;
    grid-row: 2;
  }

  .tour-ticket, .tour-ticket-placeholder {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
  }
}

@media (max-width: 480px) {
  .nav-links {
    gap: 16px;
  }

  .tour-row {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 6px;
  }

  .tour-ticket, .tour-ticket-placeholder {
    grid-column: 1;
    grid-row: auto;
    display: inline-block;
    margin-top: 8px;
  }
}
