/* ========================================
   RESET
======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.85)),
    url("images/hero.jpg");

  background-attachment: fixed;
  background-size: cover;
  background-position: center;

  color: #f2f2f2;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ========================================
   NAVIGATION
======================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 80px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 5%;

  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);

  z-index: 1000;
}

.logo {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 3px;
}

.navbar nav {
  display: flex;
  gap: 30px;
}

.navbar nav a {
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 2px;
  transition: opacity 0.2s;
}

.navbar nav a:hover {
  opacity: 0.5;
}

/* ========================================
   HERO
======================================== */

.hero {
  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  padding: 100px 20px;

  /* background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.85)),
    url("images/hero.jpg");

  background-size: cover;
  background-position: center; */
}

.hero-content {
  max-width: 1000px;
}

.eyebrow {
  font-size: 0.7rem;
  font-weight: bold;
  letter-spacing: 5px;
  margin-bottom: 15px;
}

.hero h1 {
  font-size: clamp(3rem, 9vw, 9rem);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -5px;
}

.tagline {
  margin-top: 30px;

  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 6px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;

  margin-top: 40px;
}

/* ========================================
   BUTTONS
======================================== */

.button {
  display: inline-block;

  padding: 15px 28px;

  background: #fff;
  color: #000;

  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 2px;

  transition: all 0.2s;
}

.button:hover {
  background: #ccc;
}

.button-outline {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.button-outline:hover {
  background: #fff;
  color: #000;
}

/* ========================================
   GENERAL SECTIONS
======================================== */

.section {
  max-width: 1200px;
  margin: auto;
  padding: 120px 5%;
}

.section-heading {
  margin-bottom: 60px;
}

.section-heading h2,
.about-text h2,
.contact-section h2 {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -3px;
}

/* ========================================
   MUSIC
======================================== */

.music-section {
  background: #080808;
}

.release {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.release-art img {
  display: block;
  width: 100%;
}

.release-info {
  max-width: 500px;
}

.release-type {
  font-size: 0.7rem;
  letter-spacing: 4px;
  font-weight: bold;
  margin-bottom: 15px;
}

.release-info h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.release-info p {
  color: #aaa;
  margin-bottom: 30px;
}

.streaming-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.streaming-links a {
  border: 1px solid #444;
  padding: 10px 15px;

  font-size: 0.7rem;
  font-weight: bold;
  letter-spacing: 1px;

  transition: 0.2s;
}

.streaming-links a:hover {
  background: #fff;
  color: #000;
}

/* ========================================
   VIDEO
======================================== */

.video-section {
  padding: 0 5% 120px;
}

.video-container {
  max-width: 1200px;
  margin: auto;

  position: relative;
  aspect-ratio: 16 / 9;
}

.video-container iframe {
  position: absolute;

  width: 100%;
  height: 100%;

  border: none;
}

/* ========================================
   ABOUT
======================================== */

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;

  align-items: center;
}

.about-image img {
  width: 100%;
  display: block;
}

.about-text p:not(.eyebrow) {
  color: #aaa;
  margin-top: 25px;
}

/* ========================================
   SHOWS
======================================== */

.shows-section {
  max-width: 1000px;
}

.show-list {
  border-top: 1px solid #333;
}

.show {
  display: grid;
  grid-template-columns: 100px 1fr auto;

  align-items: center;

  padding: 30px 0;

  border-bottom: 1px solid #333;
}

.show-date {
  text-align: center;
}

.show-date .day {
  display: block;

  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.show-date .month {
  font-size: 0.65rem;
  letter-spacing: 2px;
}

.show-details h3 {
  font-size: 1.2rem;
}

.show-details p {
  color: #777;
  font-size: 0.75rem;
  letter-spacing: 2px;
}

.show-button {
  border: 1px solid #555;
  padding: 10px 20px;

  font-size: 0.65rem;
  font-weight: bold;
  letter-spacing: 2px;
}

.show-button:hover {
  background: #fff;
  color: #000;
}

.no-shows {
  padding: 40px 0;

  color: #555;

  text-align: center;

  font-size: 0.7rem;
  font-weight: bold;
  letter-spacing: 3px;
}

/* ========================================
   MERCH
======================================== */

.merch-section {
  background: #0b0b0b;
}

.merch-content {
  max-width: 1000px;
}

.merch-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.merch-image {
  background: #111;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.merch-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.merch-info h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.merch-info p {
  color: #888;
  margin-bottom: 30px;
  max-width: 400px;
}

/* Mobile */

@media (max-width: 700px) {
  .merch-item {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ========================================
   CONTACT
======================================== */

.contact-section {
  padding: 150px 5%;

  text-align: center;

  background: #111;
}

.contact-section h2 {
  margin-bottom: 30px;
}

.contact-section > p:not(.eyebrow) {
  color: #888;
}

.email {
  display: inline-block;

  margin-top: 15px;

  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: bold;
}

.email:hover {
  opacity: 0.6;
}

.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;

  margin-top: 50px;
}

.social-links a {
  font-size: 0.7rem;
  letter-spacing: 2px;
  font-weight: bold;
}

.social-links a:hover {
  opacity: 0.5;
}

/* ========================================
   FOOTER
======================================== */

footer {
  padding: 50px 5%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  color: #555;
}

.footer-logo {
  font-weight: 900;
  letter-spacing: 3px;
}

footer p {
  font-size: 0.7rem;
}

/* ========================================
   MOBILE
======================================== */

@media (max-width: 700px) {
  .navbar {
    height: 65px;
  }

  .navbar nav {
    gap: 15px;
  }

  .navbar nav a {
    font-size: 0.6rem;
  }

  .hero h1 {
    letter-spacing: -2px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
  }

  .release {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .show {
    grid-template-columns: 70px 1fr;
    gap: 15px;
  }

  .show-button {
    grid-column: 2;
    width: fit-content;
  }

  footer {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* ========================================
   SCROLL REVEAL
======================================== */

.section,
.video-section,
.contact-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.section.visible,
.video-section.visible,
.contact-section.visible {
  opacity: 1;
  transform: translateY(0);
}
