    :root {
      --font-heading: "Press Start 2P", monospace;
      --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      --bg: #000;
      --fg: #f5f5f5;
      --accent: #e30613;
      --muted: #888;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-body);
      background: var(--bg);
      color: var(--fg);
      line-height: 1.6;
    }

    /* NAV */
    nav {
      position: sticky;
      top: 0;
      background: #111;
      padding: 0.75rem 1rem;
      z-index: 1000;
      display: flex;
      justify-content: center;
      gap: 2rem;
      border-bottom: 1px solid #333;
    }

    nav a {
      font-family: var(--font-heading);
      font-size: 0.7rem;
      color: var(--fg);
      text-decoration: none;
      text-transform: uppercase;
    }

    nav a:hover {
      color: var(--accent);
    }

/* Hamburger button - hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  gap: 4px;
}
.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--fg);
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Desktop nav links wrapper */
.nav-links {
  display: flex;
  gap: 2rem;
}

/* Mobile styles */
@media (max-width: 768px) {
  nav {
    justify-content: flex-start;
    gap: 0;
  }
  
  .hamburger {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #111;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  
  .nav-links.active {
    transform: translateX(0);
  }
  
  .nav-links a {
    font-size: 1.5rem;
  }
}

    /* HEADER */
    header {
      background: url("header.jpg") center / cover no-repeat;
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
    }


    header img.logo {
      max-width: 1000px;
      width: 80%;
      margin-bottom: 1rem;
      height: auto;
    }

    header .tagline {
      font-family: var(--font-heading);
      font-size: 0.8rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    /* SECTIONS */
    section {
      padding-top: 30px;
      padding-bottom: 30px;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    section.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .section-content {
      padding: 3rem 1.5rem;
      max-width: 1000px;
      margin: 0 auto;
    }

    section h2 {
      font-family: var(--font-heading);
      font-size: 1rem;
      margin-bottom: 2rem;
      text-transform: uppercase;
      color: var(--accent);
    }
    section h3 {
      font-family: var(--font-heading);
      font-size: 1rem;
      margin-bottom: 1rem;
      margin-top: 1rem;
      text-transform: uppercase;
      color: var(--accent);}

    /* ABOUT */
    #about {
      background: #000000;
    }

    .about-layout {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      align-items: center;
    }

    .about-text {
      flex: 1 1 50%;
    }

    .about-image {
      flex: 1 1 40%;
    }

    .about-image img {
      width: 100%;
      border: none;
    }

/* Mobile layout */
@media (max-width: 768px) {
  .about-layout {
    flex-direction: column-reverse;
  }
  
  .about-text,
  .about-image {
    flex: 1 1 100%;
  }
}
    /* RELEASES */
    #releases {
      min-height: 100vh;
      background:
        linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url("release.png") center / cover no-repeat;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
    }

    #releases .section-content {
      width: 100%;
    }

    #releases h2 {
      text-align: center;
      margin-bottom: 3rem;
    text-shadow: 4px 4px #000000;
    }

    .release-layout {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 3rem;
      flex-wrap: wrap;
      text-align: left;
    }

    .release-info {
      flex: 1 1 300px;
      max-width: 400px;
      padding: 20px;
    }

.cover-wrapper {
  flex: 1 1 400px;
  max-width: 400px;
}

.cover-wrapper img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

    .release-text {
      font-size: 0.9rem;
      margin-bottom: 1.5rem;
    }

    .release-btn {
      display: inline-block;
      padding: 0.5rem 1rem;
margin-top: 20px;
      border: 1px solid var(--accent);
      background: #000000;
      color: var(--accent);
      font-family: var(--font-heading);
      font-size: 0.7rem;
      text-transform: uppercase;
      text-decoration: none;
    }

    .release-btn:hover {
      background: var(--accent);
      color: #000;
    }

    /* SHOWS */
    ul {
      list-style: none;
    }

    ul li {
      margin-bottom: 0.5rem;
    }

    /* GALLERY */
    #gallery {
      background: url("gallery.png") center / cover no-repeat;
      padding: 1rem 1rem;
      text-align: center;
    }
    #gallery h2{
    font-size: 3em;
    text-shadow: 4px 4px #000000;
}

    .carousel {
      position: relative;
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
      overflow: hidden;
      height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .carousel-track {
      display: flex;
      transition: transform 0.5s ease;
      height: 100%;
      align-items: center;
    }

    .carousel-slide {
      min-width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 2rem;
    }

    .carousel-slide img {
      max-height: 400px;
      max-width: 100%;
      object-fit: contain;
      border-radius: 4px;
      transition: 0.3s ease;
      box-shadow: 0px 0px 15px black
    }

    .carousel-slide.side img {
      filter: blur(3px) brightness(0.5);
      transform: scale(0.85);
    }

    .carousel-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 2rem;
      color: var(--accent);
      cursor: pointer;
      user-select: none;
      padding: 0.5rem;
      z-index: 10;
      background: rgba(0,0,0,0.5);
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .carousel-arrow:hover {
      background: rgba(228, 27, 27, 0.3);
    }

    .carousel-arrow.left {
      left: 1rem;
    }

    .carousel-arrow.right {
      right: 1rem;
    }

    /* FOOTER */
    footer {
      text-align: center;
      padding: 2rem 1rem;
      font-size: 0.75rem;
      color: var(--muted);
      border-top: 1px solid #222;
      font-family: var(--font-heading);
    }

/* CONTACT SECTION */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
}

.contact-info {
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 2rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--fg);
  transition: fill 0.3s ease;
}

.contact-list a {
  display: flex;           /* put icon and text in a row */
  align-items: center;     /* vertically center them */
  gap: 0.5rem;             /* space between icon and text */
  color: var(--fg);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.contact-list a:hover {
  color: var(--accent);
}

.contact-list a:hover .contact-icon svg {
  fill: var(--accent);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-image {
    height: 280px;
  }
}
footer p{
  font-size: 10px;
}
/* LINEUP */
#lineup {
  background: #000000;
}

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.lineup-member {
  text-align: center;
  transition: transform 0.3s ease;
}

.lineup-member:hover {
  transform: translateY(-5px);
}

.lineup-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 2px solid var(--accent);
}

.lineup-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.lineup-photo:hover img {
  filter: grayscale(0%);
}

.lineup-name {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  color: var(--fg);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.lineup-role {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .lineup-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .lineup-grid {
    grid-template-columns: 1fr;
  }
}

.shows-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.show-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.show-item.hidden {
  display: none;
}

.show-info {
  flex: 1;
}

.show-date {
  font-weight: bold;
  margin-bottom: 5px;
}

.show-location {
  opacity: 0.8;
}

.show-more-button {
  margin-top: 30px;
display: inline-block;
      padding: 0.5rem 1rem;
margin-top: 20px;
      border: 1px solid var(--accent);
      background: #000000;
      color: var(--accent);
      font-family: var(--font-heading);
      font-size: 0.7rem;
      text-transform: uppercase;
      text-decoration: none;
    }

    .show-more-button:hover {
      background: var(--accent);
      color: #000;
    }

}

.show-more-button.hidden {
  display: none;
}

/* DIALOG WINDOW */
.dialog-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dialog-overlay.active {
  display: flex;
  opacity: 1;
}

.dialog-content {
  background-color: #000000;
  padding: 40px;
  max-width: 450px;
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  border: 2px solid var(--accent);
}

.dialog-overlay.active .dialog-content {
  transform: scale(1);
}

.dialog-content h3 {
      font-family: var(--font-heading);
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 24px;
}

.dialog-content p {
  margin-bottom: 30px;
  line-height: 1.6;
}

.dialog-close-button {
  margin-top: 30px;
display: inline-block;
      padding: 0.5rem 1rem;
margin-top: 20px;
      border: 1px solid var(--accent);
      background: #000000;
      color: var(--accent);
      font-family: var(--font-heading);
      font-size: 0.7rem;
      text-transform: uppercase;
      text-decoration: none;
    }

    .dialog-close-button:hover {
      background: var(--accent);
      color: #000;
    }

    .content {
        max-width: 1000px;
        margin: 0 auto;
        padding: 1rem;
    }
    .razor-blades {
        display: inline;
        bottom: -2px;
        left: 0;
        z-index: 10;
        width: 100vw;
        margin: 0;
        margin-left: calc(-50vw + 50%);
        animation: razor-glow 3s ease-in-out infinite alternate;
    }
    @keyframes razor-glow {
        from { opacity: 0.7; }
        to   { opacity: 1; }
    }

    .music-carousel {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 2rem auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.cover-wrapper {
  flex: 1 1 300px;
  max-width: 300px;
}

.cover-wrapper img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border: 2px solid var(--accent);
  border-radius: 5px;
}

.release-info {
  flex: 1 1 400px;
  max-width: 400px;
}

.release-info h3 {
  font-family: var(--font-heading);
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.release-text {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.release-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid var(--accent);
  background: #000;
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  text-transform: uppercase;
  text-decoration: none;
}

.release-btn:hover {
  background: var(--accent);
  color: #000;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: var(--accent);
  cursor: pointer;
  padding: 0.5rem;
  z-index: 10;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  user-select: none;
}

.carousel-arrow.left { left: 1rem; }
.carousel-arrow.right { right: 1rem; }

.carousel-arrow:hover {
  background: rgba(228, 27, 27, 0.3);
}

#email {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 80px 5%;
    background: #000;
}

.email-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.email-form {
    flex: 1.5;
}

.email-social {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.social-row {
    display: flex;
    gap: 30px;
}

.social-row a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    letter-spacing: 2px;
    transition: 0.3s ease;
}

.social-row a:hover {
    color: #e30613;
}

.email-logo-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.email-logo-wrapper img {
    max-width: 1000px;
    width: 80%;      
    margin-bottom: 1rem;
    height: auto;
}

#about {
    padding: 120px 10%;
    background: #000;
    color: white;
}

.about-text {
    max-width: 900px;
}

.about-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    letter-spacing: 3px;
    text-align: center;
}

.about-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #ccc;
}


.about-images {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.about-images img {
    width: 100%;
    height: auto;  
    display: block;
}





/* ========================= */
/* MERCH SECTION */
/* ========================= */

#merch {
  padding: 120px 10%;
  background: #000;
  text-align: center;
}

.merch-header h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.merch-header p {
  color: var(--muted);
  margin-bottom: 3rem;
}

/* GRID */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(350px, 1fr));
  gap: 2rem;
  justify-items: center;
  align-items: center;
}

/* MERCH ITEM */
.merch-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 550px; /* bigger items */
  position: relative; /* for arrows */
  transition: transform 0.3s ease;
}

.merch-item:hover {
  transform: scale(1.05);
}

/* MERCH SLIDER */
.merch-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 2px solid var(--accent);
  border-radius: 6px;
}

/* MERCH TRACK */
.merch-track {
  display: flex;
  transition: transform 0.4s ease;
  height: 100%;
}

.merch-track img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* keeps aspect ratio */
  flex-shrink: 0;
}

/* INFO */
.merch-info h3 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--fg);
  text-transform: uppercase;
}

.merch-info p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* ARROWS */
.merch-prev,
.merch-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: var(--accent);
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 10;
}

.merch-prev { left: 10px; }
.merch-next { right: 10px; }

.merch-prev:hover,
.merch-next:hover {
  background: var(--accent);
  color: #000;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .merch-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 600px) {
  .merch-grid {
    grid-template-columns: 1fr;
  }
}

/* SOLD OUT IMAGE EFFECT */
.merch-item.sold-out .merch-slider img {
  filter: grayscale(100%) brightness(0.6); /* gray out the image */
}

/* DIAGONAL RIBBON */
.merch-item.sold-out::before {
  content: "SOLD OUT";
  position: absolute;
  top: 5px; /* adjust vertical position */
  left: -30px; /* start outside left */
  width: 100px;
  background: var(--accent);
  color: #000;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  text-align: center;
  padding: 0.3rem 0;
  transform: rotate(-45deg);
  z-index: 20;
  box-shadow: 0 0 5px rgba(0,0,0,0.5);
  pointer-events: none;
}

@media (max-width: 768px) {
  header {
    height: 80vh;
    padding: 0 20px;
  }

  header img.logo {
    width: 95%;
    max-width: 400px;
  }
}
@media (max-width: 768px) {
  .carousel-slide {
    flex-direction: column;
    text-align: center;
  }

  .release-info {
    max-width: 100%;
  }

  .cover-wrapper {
    max-width: 250px;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
}
@media (max-width: 900px) {
  .email-layout {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .email-logo-wrapper {
    justify-content: center;
  }

  .email-logo-wrapper img {
    max-width: 300px;
  }

  .social-row {
    flex-direction: column;
    gap: 15px;
  }
}

.snapwidget-widget {
  width: 100% !important;
  max-width: 795px;
  height: 550px;
}

@media (max-width: 768px) {
  .about-text h2 {
    font-size: 24px;
  }

  section h2 {
    font-size: 0.8rem;
  }

  nav a {
    font-size: 1.2rem;
  }

  .merch-header h2 {
    font-size: 1.5rem;
  }
}

body {
  overflow-x: hidden;
}

button, a {
  min-height: 20px;
}

@media (max-width: 768px) {

  nav {
    justify-content: space-between;
    align-items: center;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #111;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

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

@media (max-width: 768px) {
  header {
    height: 40vh; /* smaller height for mobile */
    padding: 0 20px; /* optional side padding */
    background-size: cover; /* keep the image covering nicely */
    background-position: center;
  }

  header img.logo {
    width: 90%;     /* shrink logo */
    max-width: 300px; /* max width */
    margin-bottom: 1rem;
    height: auto;
  }

  header .tagline {
    font-size: 0.6rem; /* optional smaller tagline */
  }
}

@media (max-width: 768px) {
  .razor-blades {
    display: block;
    width: 100vw;       /* full viewport width */
    max-width: 200%;    /* allow some extra width */
    height: 60px;       /* taller separator */
    margin-left: -50vw; /* center the image beyond edges */
    left: 50%;          /* position relative to center */
    position: relative; /* needed for left + margin-left trick */
    margin-top: 0;
    margin-bottom: 20px; 
    animation: razor-glow 2s ease-in-out infinite alternate;
    object-fit: cover;
  }
}

@media (max-width: 768px) {
  #instagram iframe.snapwidget-widget {
    width: 100% !important;      /* full width of container */
    max-width: 100% !important;  /* prevent oversize */
    height: auto !important;     /* auto height for scaling */
    aspect-ratio: 795 / 550;     /* keep Instagram aspect ratio */
    display: block;
    margin: 0;                   /* remove extra margin */
  }

  #instagram {
    padding-bottom: 30;           /* remove bottom padding that adds space */
  }
}