:root {
  --bg-color: #fff;
  --text-color: #000;
  --border-color: #e0e0e0;
  --font-main: "Inter", sans-serif;
  --font-mono: "Space Mono", monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-mono);
  background-color: var(--bg-color);
  color: var(--text-color);
  font-size: 14px;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity .3s;
}

a:hover {
  opacity: .6;
}

ul {
  list-style: none;
}

.top-nav {
  border-bottom: 1px solid var(--text-color);
  background: var(--bg-color);
  z-index: 100;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  display: flex;
  position: sticky;
  top: 0;
}

.nav-left {
  align-items: center;
  gap: 2rem;
  display: flex;
}

.nav-logo {
  font-size: 1.5rem;
}

.nav-links {
  gap: 2rem;
  display: flex;
}

.nav-links a, .nav-right a {
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .8rem;
}

.hero {
  border-bottom: 1px solid var(--border-color);
  width: 100%;
}

.hero-image-container {
  width: 100%;
  height: 80vh;
  position: relative;
  overflow: hidden;
}

.hero-img {
  object-fit: cover;
  filter: grayscale();
  width: 100%;
  height: 100%;
}

.hero-controls {
  justify-content: space-between;
  width: 100%;
  padding: 0 2rem;
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.hero-controls button {
  color: #fff;
  cursor: pointer;
  opacity: .5;
  background: none;
  border: none;
  font-size: 2rem;
}

.hero-controls button:hover {
  opacity: 1;
}

.new-album {
  border-bottom: 1px solid var(--border-color);
}

.album-header {
  text-transform: uppercase;
  padding: 1rem 2rem;
  font-size: .8rem;
}

.album-content {
  border-top: 1px solid var(--border-color);
  grid-template-columns: 1.5fr 1fr 1fr;
  display: grid;
}

.album-details {
  border-right: 1px solid var(--border-color);
  gap: 2rem;
  padding: 2rem;
  display: flex;
}

.album-cover img {
  object-fit: cover;
  width: 150px;
  height: 150px;
}

.tracklist {
  flex: 1;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  font-size: .8rem;
  display: grid;
}

.tracklist ul li {
  margin-bottom: .5rem;
}

.track-num {
  opacity: .6;
}

.player-controls {
  grid-column: 1 / -1;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  display: flex;
}

.progress-bar {
  background: #eee;
  flex: 1;
  height: 2px;
  position: relative;
}

.progress {
  background: #000;
  width: 30%;
  height: 100%;
}

.progress:after {
  content: "";
  background: #000;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.album-promo {
  border-right: 1px solid var(--border-color);
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  display: flex;
}

.album-promo h2 {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.4;
}

.btn-underline {
  text-transform: uppercase;
  margin-top: auto;
  font-size: .8rem;
  text-decoration: underline;
}

.album-listen {
  padding: 2rem;
}

.album-listen h3 {
  opacity: .6;
  margin-bottom: 1rem;
  font-size: .8rem;
  font-weight: 400;
}

.album-listen ul li {
  margin-bottom: .5rem;
  font-size: .9rem;
}

.merch {
  border-bottom: 1px solid var(--border-color);
  background: #f9f9f9;
}

.merch-grid {
  grid-template-columns: 1fr 1fr;
  display: grid;
}

.merch-item {
  justify-content: center;
  align-items: center;
  padding: 4rem;
  display: flex;
}

.merch-item:first-child {
  border-right: 1px solid var(--border-color);
}

.merch-item img {
  mix-blend-mode: multiply;
  max-width: 100%;
  height: auto;
}

.tour {
  border-bottom: 1px solid var(--border-color);
}

.section-header {
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 2rem;
  font-size: .8rem;
}

.tour-list {
  width: 100%;
  padding-bottom: 20px;
}

.tour-item {
  border-bottom: 1px solid var(--border-color);
  font-family: var(--font-mono);
  align-items: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  display: flex;
}

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

.tour-date {
  width: 150px;
  font-weight: bold;
}

.tour-venue {
  flex: 1;
}

.tour-action {
  text-align: right;
}

.tour-action a {
  text-transform: uppercase;
  font-size: .8rem;
  text-decoration: underline;
}

.sold-out .tour-action span {
  text-transform: uppercase;
  opacity: .5;
  font-size: .8rem;
  text-decoration: line-through;
}

.lifestyle img {
  filter: grayscale(20%) contrast(1.1);
  width: 100%;
  height: 100vh;
  display: block;
}

.discography {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 2rem;
}

.disco-grid {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  align-items: start;
  gap: 2rem;
  padding: 2rem;
  display: grid;
}

.disco-year-group {
  flex-direction: column;
  gap: 1rem;
  display: flex;
}

.year-label {
  margin-bottom: .5rem;
  font-size: 1.2rem;
  font-weight: bold;
  display: block;
}

.disco-item img {
  width: 100%;
  height: auto;
  display: block;
}

footer {
  text-transform: uppercase;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: .7rem;
  display: flex;
}

.footer-content {
  justify-content: space-between;
  width: 100%;
  display: flex;
}

@media (width <= 1024px) {
  .album-content {
    grid-template-columns: 1fr;
  }

  .album-details, .album-promo, .album-listen {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }

  .merch-grid {
    grid-template-columns: 1fr;
  }

  .merch-item:first-child {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }
}

@media (width <= 768px) {
  .top-nav {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    display: none;
  }

  .tour-item {
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
  }

  .tour-action {
    text-align: left;
    width: 100%;
  }
}

.about-hero img {
  object-fit: cover;
  filter: grayscale();
  width: 100%;
  height: 100vh;
  display: block;
}

.about-content-section {
  height: 90vh;
  padding: 4rem 2rem;
}

.about-grid {
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  display: grid;
}

.about-text-block h3 {
  text-transform: uppercase;
  border-bottom: 1px solid var(--text-color);
  width: 100%;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  font-size: .8rem;
  display: inline-block;
}

.about-text-block p {
  font-family: var(--font-mono);
  max-width: 800px;
  margin-bottom: 2rem;
}

.about-images {
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 4rem;
  display: grid;
}

.about-images img {
  filter: grayscale();
  width: 100%;
  height: auto;
}

.caption {
  opacity: .7;
  margin-top: .5rem;
  font-size: .7rem;
}

.about-sidebar {
  padding-top: 4rem;
}

.sidebar-block {
  margin-bottom: 3rem;
}

.sidebar-block h4 {
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-size: .8rem;
  font-weight: 400;
}

.sidebar-block p, .sidebar-list li {
  font-family: var(--font-mono);
  margin-bottom: .5rem;
  font-size: .9rem;
}

.underline {
  text-decoration: underline;
}

.listen-section {
  padding: 4rem 2rem;
}

.listen-grid {
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  display: grid;
}

.listen-visual img, .listen-visual canvas {
  background-color: var(--bg-color);
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
  display: block;
}

.player-bar-large {
  font-family: var(--font-mono);
  align-items: center;
  gap: 1rem;
  display: flex;
}

.info-block {
  margin-bottom: 3rem;
}

.info-block h4 {
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  font-size: .8rem;
  font-weight: 400;
}

.info-block p {
  font-family: var(--font-mono);
  line-height: 1.6;
}

.song-list-large li {
  font-family: var(--font-mono);
  cursor: pointer;
  border-bottom: 1px solid #0000;
  justify-content: space-between;
  padding: .5rem 0;
  display: flex;
}

.song-list-large li:hover {
  border-bottom: 1px solid var(--border-color);
}

.play-icon {
  margin-right: 1rem;
  font-size: .8rem;
}

.active {
  font-weight: bold;
}

@media (width <= 768px) {
  .about-grid, .listen-grid, .about-images {
    grid-template-columns: 1fr;
  }
}
/*# sourceMappingURL=mithras-band-site.2cdaf7bc.css.map */
