:root {
  --bg: #0a0a0a;
  --panel: #141414;
  --text: #f5f5f5;
  --muted: #9e9e9e;

  --accent: #ff0033;
  --accent-dark: #99001f;

  --border: rgba(255,255,255,0.08);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: Metal Mania;
}

a {
  color: inherit;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

/* NAV */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.navbar {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  padding: 16px;
  position: relative;
}

.logo {
  font-weight: 800;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #f5f5f5;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    color 0.25s ease,
    background 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  background: #8b0000;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-links a:hover {
  transform: translateY(-2px);
  color: #ffffff;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links a:active {
  transform: translateY(0);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px 0;
  background: #fff;
  transition: 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
    margin-left: auto;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;

    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 10px 0;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;

    transition:
      opacity 0.28s ease,
      transform 0.28s ease,
      visibility 0.28s ease;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links li {
    width: 100%;
    list-style: none;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 14px 18px;
    border-radius: 0;
  }

  .nav-links a::after {
    display: none;
  }
}


/* HERO */
.hero-text > * {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFade 0.8s ease forwards;
}

.hero-text > *:nth-child(1) { animation-delay: 0.1s; }
.hero-text > *:nth-child(2) { animation-delay: 0.2s; }
.hero-text > *:nth-child(3) { animation-delay: 0.3s; }
.hero-text > *:nth-child(4) { animation-delay: 0.4s; }

@keyframes heroFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  text-shadow:
    0 0 10px rgba(139, 0, 0, 0.4),
    0 0 30px rgba(139, 0, 0, 0.2);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    url("./assets/images/band.jpg") center center / cover no-repeat,
    #050505;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.45) 0%,
      rgba(0, 0, 0, 0.70) 45%,
      rgba(0, 0, 0, 0.88) 100%
    );
  z-index: 1;
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.08;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(255,255,255,0.22) 0.6px, transparent 0.6px);
  background-size: 8px 8px;
}

.hero-container {
  position: relative;
  z-index: 3;
  width: min(100% - 2rem, 1200px);
  margin: 0 auto;
}

.hero-text {
  max-width: 760px;
  text-align: left;
  padding: 120px 0 90px;
}

.hero-kicker {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #b3b3b3;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(3.8rem, 10vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  color: #f5f5f5;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
}

.hero-description {
  max-width: 620px;
  font-size: 1.08rem;
  line-height: 1.7;
  color: #c8c8c8;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: #8b0000;
  color: #fff;
  border: 1px solid #8b0000;
}

.btn-primary:hover {
  background: #a40000;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.20);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-primary,
.btn-secondary {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
  }

  .hero-text {
    padding: 110px 0 70px;
  }

  .hero h1 {
    letter-spacing: 0.04em;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}

/* SECTIONS */
section {
  padding: 80px 20px;
}

.container {
  max-width: 1100px;
  margin: auto;
}

/* MUSIC */
.album {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}

.album img {
  width: 100%;
    transition: transform 0.5s ease, filter 0.4s ease;
}

.album img:hover {
  transform: scale(1.03);
  filter: brightness(1.05);
}

.music-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.music-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #8b0000;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.music-links a:hover {
  transform: translateY(-2px);
  background: rgba(139, 0, 0, 0.16);
  border-color: rgba(139, 0, 0, 0.45);
  color: #ffffff;
}

.music-links a:visited {
  color: #f5f5f5;
}

.music-links a:focus-visible {
  outline: 2px solid #8b0000;
  outline-offset: 3px;
}

/* SHOWS */

.shows {
  padding: 90px 20px;
  background: linear-gradient(180deg, #0b0b0b, #111111);
}

.section-header {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-label {
  color: #9e9e9e;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.section-copy {
  color: #bdbdbd;
  max-width: 620px;
}

.bandsintown-wrap {
  margin-top: 32px;
  padding: 20px;
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.04),
    rgba(0,0,0,0.65)
  );
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
  .bandsintown-wrap {
    padding: 14px;
    border-radius: 14px;
  }
}

/* IG */ 

.instagram {
  padding: 90px 20px;
  background: linear-gradient(180deg, #0b0b0b, #111111);
}

.instagram-wrap {
  margin-top: 30px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

/* ABOUT */
.about p {
  max-width: 700px;
  line-height: 1.7;
  margin-top: 20px;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 20px;
  text-align: center;
}

.socials {
  margin-top: 10px;
  display: flex;
  gap: 12px;
  justify-content: center;
}

/* MOBILE */
@media (max-width: 768px) {
  .album {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }
}


/* ETC */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }