body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #111;
  color: #fff;
}

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

header {
  background-color: #000;
  padding: 20px 0;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header .logo img { 
  height: 110px; 
}

nav ul { 
  display: flex; 
  list-style: none; 
  margin: 0; 
  padding: 0; 
}

nav li { 
  margin-left: 30px; 
}

nav li a:hover { 
  color: #f04; 
}

/* --- Social Media in Header --- */
.header-socials {
  display: flex;
  gap: 15px;
  margin-left: 20px;
}

.header-socials a {
  color: #f04;              /* always red */
  font-size: 20px;
  transition: transform 0.2s ease;
}

.header-socials a:hover {
  transform: scale(1.2);
  color: #f04;              /* stays red */
}

/* ===========================
   Mobile / Responsive styles
   =========================== */
@media (max-width: 768px) {

  /* Make header thinner */
  header {
    padding: 10px 0;
  }

  /* Header container narrower */
  .header-container {
    max-width: 90%;
    padding: 0 10px;
    margin: 0 auto;
  }

  /* Smaller logo */
  header .logo img {
    height: 50px;
  }

  /* Mobile navigation - simple toggle */
  nav ul {
    display: none;             /* hidden by default */
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 60px;                 /* below header */
    right: 10px;
    width: 180px;              /* menu width */
    padding: 10px;
    list-style: none;
    margin: 0;
    border: 1px solid #222;
    border-radius: 5px;        /* optional rounded corners */
    transition: all 0.3s ease;
  }

  /* Show menu when toggled */
  nav ul.show {
    display: flex;
  }

  /* Hamburger button */
  .hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    margin-left: auto;
  }

  .hamburger span {
    height: 3px;
    width: 25px;
    background: #fff;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  /* Hamburger animation to "X" */
  .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);
  }

  /* Move socials under nav menu in mobile */
  .header-socials {
    display: none;
  }

  nav ul.show + .header-socials {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-top: 10px;
  }
}

.hero {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('IMG_1552.JPG') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-text h1 { 
  font-size: 64px; 
  margin: 0; 
}

.hero-text p { 
  font-size: 24px; 
  margin-top: 10px; 
  color: #f04; 
}

.section { 
  padding: 100px 20px; 
  text-align: center; 
}

.section h2 { 
  font-size: 36px; 
  margin-bottom: 20px; 
  color: #f04; 
}

/* ===========================
   Band Section Image (Responsive)
   =========================== */
..band-image {
  width: 100%;
  background: #000;          /* fills space above/below when image doesn't fully cover */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.band-image img {
  width: 100%;
  height: auto;              /* keeps full image visible */
  object-fit: contain;       /* show full image, no cropping */
  display: block;
}

.personnel {
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 700px) {
  .band-image {
    max-height: 260px;
  }
}
.socials a { 
  margin: 0 10px; 
  color: #f04; 
}

footer { 
  background-color: #000; 
  text-align: center; 
  padding: 20px; 
  border-top: 1px solid #222; 
}
/* Header social icons */
.header-socials a {
  margin: 0 10px;
  color: #f04;
  font-size: 20px;
  transition: transform 0.2s;
}

.header-socials a:hover {
  transform: scale(1.2);
}

/* ===========================
   Mobile adjustments
   =========================== */
@media (max-width: 768px) {
  .header-socials {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    width: 100%;
  }

  /* Move the social icons below the nav menu when toggled */
  nav ul.show + .header-socials {
    display: flex;
	 /* Merch section pulse */
.glow-text {
  font-size: 22px;
  color: #f04;                     /* base red color */
  letter-spacing: 1px;
  margin-top: 15px;
  text-shadow: 0 0 5px #f04, 0 0 10px #f04, 0 0 20px #900;
  animation: pulseGlow 1.5s infinite alternate;  /* faster pulse */
}

@keyframes pulseGlow {
  from {
    text-shadow: 0 0 5px #f04, 0 0 10px #f04, 0 0 20px #900;
    opacity: 1;
  }
  to {
    text-shadow: 0 0 15px #f04, 0 0 30px #f04, 0 0 45px #f04;
    opacity: 0.8;
  }
}
	/* ===========================
   Merch Section Neon Glow Pulse
   =========================== */
.glow-text {
  font-size: 24px;
  font-weight: 700;
  color: #ff0000;                   /* bright red base */
  text-align: center;
  margin-top: 20px;

  /* strong glow */
  text-shadow: 0 0 10px #ff0000,
               0 0 20px #ff0000,
               0 0 30px #ff3300,
               0 0 40px #ff3300,
               0 0 50px #ff3300;

  /* animation */
  animation: neonPulse 1.5s infinite alternate;
}

@keyframes neonPulse {
  from {
    text-shadow: 0 0 5px #ff0000,
                 0 0 10px #ff0000,
                 0 0 15px #ff3300,
                 0 0 20px #ff3300,
                 0 0 25px #ff3300;
    opacity: 1;
  }
  to {
    text-shadow: 0 0 20px #ff0000,
                 0 0 40px #ff0000,
                 0 0 60px #ff3300,
                 0 0 80px #ff3300,
                 0 0 100px #ff3300;
    opacity: 0.8;
  }
}
	