.prompt-thin {
  font-family: "Prompt", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.prompt-extralight {
  font-family: "Prompt", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.prompt-light {
  font-family: "Prompt", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.prompt-regular {
  font-family: "Prompt", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.prompt-medium {
  font-family: "Prompt", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.prompt-semibold {
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.prompt-bold {
  font-family: "Prompt", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.prompt-extrabold {
  font-family: "Prompt", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.prompt-black {
  font-family: "Prompt", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.prompt-thin-italic {
  font-family: "Prompt", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.prompt-extralight-italic {
  font-family: "Prompt", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.prompt-light-italic {
  font-family: "Prompt", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.prompt-regular-italic {
  font-family: "Prompt", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.prompt-medium-italic {
  font-family: "Prompt", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.prompt-semibold-italic {
  font-family: "Prompt", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.prompt-bold-italic {
  font-family: "Prompt", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.prompt-extrabold-italic {
  font-family: "Prompt", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.prompt-black-italic {
  font-family: "Prompt", sans-serif;
  font-weight: 900;
  font-style: italic;
}

body {
    margin: 0;
    font-family: 'Prompt', sans-serif;
    background-color: white;
    color: black;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 6px;
  padding-bottom: 10px;
  border-bottom: 1px solid black;
  background-color: white;
  z-index: 1000;
  position: fixed;
  width: 100%;
  top: 0;
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 4px;
}

.nav-bar {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.menu-links {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.menu-links li a {
  text-decoration: none;
  color: black;
  font-size: 1rem;
  text-transform: lowercase;
  padding-bottom: 3px;
  position: relative;
  font-family: "Prompt", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.menu-links li a.active::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2px; /* adjust as needed */
  width: 6px;
  height: 6px;
  background-color: black;
  border-radius: 50%;
}

.menu-links li a:visited {
  color: black;
}

.menu-links li a:hover {
  opacity: 0.7;
}

.social-icons {
  position: absolute;
  right: 20px;
  display: flex;
  gap: 16px;
}

.social-icons a {
  color: black;
  font-size: 1.2rem;
  transition: opacity 0.3s ease;
}

.social-icons a:hover {
  opacity: 0.6;
}

section {
/*  min-height: 100vh;*/
  display: block;
  font-size: 2rem;
  padding-bottom: 50px;
}

.news-feed {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  gap: 40px;
  padding: 20px 20px;
  box-sizing: border-box;
}

.news-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.news-title {
  font-size: 1rem;
  margin: 0;
  text-align: center;
}

.news-card img,
.news-card video {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.shows-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 500px;
  margin: 0 auto;
  padding: 40px 20px;
}

.show-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
  gap: 12px;
  flex-wrap: wrap;
}

.show-date {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  min-width: 55px;
}

.show-date .date {
  display: block;
}

.show-date .day {
  display: block;
  color: #444;
}

.show-details {
  flex: 1;
  font-size: 0.95rem;
}

.show-details .title {
  font-weight: 500;
  margin-bottom: 4px;
}

.show-details .location {
  font-weight: 300;
  color: #555;
}

.show-actions {
  display: flex;
  gap: 8px;
}

.show-actions button {
  background-color: black;
  color: white;
  font-size: 0.7rem;
  padding: 4px 10px;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  text-transform: uppercase;
}

.section-title {
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: lowercase;
  text-align: center;
  margin-bottom: 10px auto;
  border-bottom: 1px solid #333;
  display: inline-block;
  padding-bottom: 0px;
}

.section-title-wrapper {
  text-align: center;
}

.ticket-button {
  background-color: black;
  color: white;
  font-size: 0.7rem;
  padding: 4px 10px;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  line-height: 1;
}

.signup-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 20px 0;
}

.signup-iframe {
  width: 100%;
  max-width: 500px;
  height: 580px;
  border: none;
}

#music {
  background-color: #004225;
  color: white;
  padding-top: 50px;
  padding-bottom: 50px;
}

#music .section-title {
  color: black;
}

.music-scroll-container {
  display: flex;
  overflow-x: auto;
  gap: 24px;
  padding: 20px;
  max-width: 600px;
  margin: 0 auto;
  scroll-snap-type: x mandatory;
}

.music-card {
  flex: 0 0 calc(100% / 3 - 16px); /* Show 3 cards */
  background-color: black;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  scroll-snap-align: start;
  box-sizing: border-box;
  text-decoration: none;
}

.music-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.music-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.song-title {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 300;
  color: white;
  line-height: 1.3;
  font-weight: 500;
  text-align: center;
}

.music-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.music-icons a {
  color: black;
  font-size: 1.8rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.music-icons a:hover {
  opacity: 0.7;
  transform: scale(1.1);
}

.music-note {
  text-align: center;
  font-size: 0.6rem;
  font-weight: 300;
  margin-top: 8px;
  color: black;
  font-family: "Prompt", sans-serif;
}

#home {
    background: #fafafa;
}
#shows { background: #f0f0f0; }
#music { background: #e6e6e6; }
#signup { background: #dddddd; }

@media (max-width: 600px) {
  .nav-bar {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .social-icons {
    position: static;
    margin-top: 8px;
    order: 1;
  }

  .menu-links {
    order: 2;
    flex-direction: row; /* Keep horizontal layout */
    flex-wrap: wrap;      /* Wrap if needed */
    justify-content: center;
    gap: 16px;
  }

  .menu-links li {
    margin-bottom: 0;
  }
}

