/* GLOBAL BASE STYLES (used by all pages) */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f4f2e6; /* poster cream */
  color: #1d4f57; /* deep teal */
  overflow-x: hidden;
}

/* Header poster-style vertical text */
.vertical-text {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 4rem;
  font-weight: 800;
  color: #5fa9e8; /* the blue used in your posters */
  letter-spacing: 0.1rem;
  opacity: 0.2;
  user-select: none;
}

/* Main content container (home default) */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 20px;
  text-align: center;
}

/* Headings (used on index; can be reused elsewhere) */
h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #1d4f57;
}

h2 {
  font-size: 1.2rem;
  letter-spacing: 0.15rem;
  margin-top: 0;
  color: #5fa9e8;
}

/* Buttons row on home */
.btn-row {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

a.button {
  padding: 12px 28px;
  background-color: #1d4f57;
  color: white;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.05rem;
  transition: opacity 0.2s ease;
}

a.button:hover {
  opacity: 0.8;
}

/* Poster-ish divider line */
.divider {
  width: 160px;
  height: 3px;
  background-color: #5fa9e8;
  margin: 40px auto;
  opacity: 0.6;
}

/* Footer */
footer {
  margin-top: 80px;
  font-size: 0.9rem;
  opacity: 0.6;
  text-align: center;
}

/* ========================= */
/* SHOWS PAGE-SPECIFIC STYLES */
/* (scope with body.shows)   */
/* ========================= */

/* Slightly smaller vertical text on shows page */
body.shows .vertical-text {
  font-size: 3.5rem;
}

/* Different container padding + left alignment on shows page */
body.shows .container {
  padding: 80px 20px 60px;
  text-align: left;
}

/* Header on shows page */
body.shows header {
  text-align: center;
  margin-bottom: 40px;
}

body.shows header h1 {
  font-size: 2.4rem;
  margin: 0;
  letter-spacing: 0.08rem;
}

body.shows header p {
  margin: 10px 0 0;
  color: #5fa9e8;
  letter-spacing: 0.08rem;
  font-size: 0.95rem;
  text-transform: uppercase;
}

/* Simple nav (shows page) */
body.shows nav {
  text-align: center;
  margin-bottom: 30px;
  font-size: 0.95rem;
}

body.shows nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #1d4f57;
}

body.shows nav a:hover {
  text-decoration: underline;
}

/* Adjust divider margin on shows page (optional) */
body.shows .divider {
  margin: 0 auto 30px;
  width: 140px;
}

/* Shows list layout */
.shows-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.show-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.show-main {
  font-weight: 600;
  font-size: 1.05rem;
}

.show-sub {
  font-size: 0.9rem;
  opacity: 0.8;
}

.show-note {
  font-size: 0.9rem;
  margin-top: 4px;
}

.ticket-link {
  font-size: 0.9rem;
  margin-top: 4px;
}

.ticket-link a {
  text-decoration: none;
  color: #5fa9e8;
}

.ticket-link a:hover {
  text-decoration: underline;
}

.empty-state {
  text-align: center;
  margin-top: 40px;
  font-size: 0.95rem;
  opacity: 0.75;
}

/* Footer spacing tweak on shows page (slightly smaller top margin) */
body.shows footer {
  margin-top: 60px;
  font-size: 0.85rem;
}

/* Responsive layout for shows list */
@media (min-width: 600px) {
  .show-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
  }

  .show-left {
    max-width: 60%;
  }

  .show-right {
    text-align: right;
  }
}
