body {
  background: url('../img/BG.jpg') center/cover no-repeat;
  color: #3e2c1c;
  font-family: 'Playfair Display', serif;
  text-shadow: 1px 1px 2px #fff;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}
header {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 250, 240, 0.8);
  border-bottom: 2px solid #3e2c1c;
}
header h1 {
  font-size: 5rem;
  margin: 0;
}
#slideshow {
  position: relative;
  max-width: 90vw;
  margin: 2rem auto;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#slideshow img {
  width: auto;
  max-width: 100%;
  max-height: 60vh;
  height: auto;
  display: none;
  border: 5px solid #3e2c1c;
  box-shadow: 0 0 10px #000;
  object-fit: contain;
}
#slideshow img.active {
  display: block;
  margin: 0 auto;
}
footer {
  text-align: center;
  font-size: x-large;
  padding: 1rem;
  background: rgba(255, 250, 240, 0.8);
  border-top: 2px solid #3e2c1c;
}
footer a {
  color: #5a2e07;
  text-decoration: none;
  font-weight: bold;
}
.mobile-break {
  display: none;
}
.wanted-poster {
  background: url('../img/wanted_poster.png') center center/cover no-repeat;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}
.wanted-poster > * {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5vh;
  margin-bottom: 5vh;
  /* Keeps content away from top/sides/bottom */
}
.wanted-poster h2 {
  font-size: 8rem;
}

.wanted-poster h3 {
  font-size: 6rem;
}
.wanted-poster h4 {
  font-size: 3rem;
}
.wanted-poster h5 {
  font-size: 2rem;
}
.wanted-poster ul {
  font-size: 2rem;
}

/* Responsive adjustments */
@media (max-width: 600px) {
.desktop-break {
    display: none;
  }
  .mobile-break {
    display: inline;
  }

  header h1 {
    font-size: 2rem;
  }
  #slideshow {
    max-width: 98vw;
    margin: 1rem auto;
    height: 40vh;
  }
  #slideshow img {
    border-width: 2px;
    border-radius: 6px;
    box-shadow: 0 0 8px #000;
    max-height: 40vh;
  }
  footer {
    font-size: 0.95rem;
    padding: 0.5rem;
  }
  html {
    font-size: 12px; /* or even 10px for very small screens */
  }
  .wanted-poster h2 {
    font-size: 2.2rem;
  }
  .wanted-poster h3 {
    font-size: 1.5rem;
  }
  .wanted-poster h4 {
    font-size: 1.2rem;
  }
  .wanted-poster h5,
  .wanted-poster ul {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .wanted-poster > * {
    width: 98%;
    margin-top: 3vw;
    margin-bottom: 3vw;
  }
}

header h1,
.wanted-poster h2,
.wanted-poster h3,
.wanted-poster h4  {
  font-family: 'Rye', 'Special Elite', 'Stardos Stencil', serif;
  letter-spacing: 2px;
  font-weight: bold;
}
.past-performances-row {
  width: 100%;
  gap: 2rem;
  align-items: stretch;
}
.past-performances-list {
  font-size: 2rem;
  flex: 1 1 300px;
  max-width: 400px;
  align-self: stretch;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


/* Make logo match list height on desktop */
@media (min-width: 769px) {
  .past-performances-row {
    flex-direction: row;
  }
.past-performances-logo {
  flex: 1 1 300px;
  max-width: 400px;
  width: 100%;
  object-fit: contain;
  height: auto;
  display: flex;
  align-items: center;
}
}
