/* My Inferno Band Website Styles */
body {
  margin: 0;
  font-family: 'Oswald', 'Impact', 'Arial Black', Arial, sans-serif;
  background: #0a0a0a;
  color: #e0e0e0;
  letter-spacing: 0.5px;
}

/* Responsive Navigation */
.nav-links {
  list-style: none;
  display: flex;
  gap: 2.2rem;
  margin: 0;
  padding: 0;
}
@media (max-width: 800px) {
  nav {
    flex-direction: row;
    align-items: center;
    padding: 1rem 1.2rem;
    position: relative;
  }
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    z-index: 20;
  }
  .hamburger span {
    display: block;
    width: 30px;
    height: 4px;
    margin: 4px 0;
    background: #e0e0e0;
    border-radius: 2px;
    transition: 0.3s;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: #181818;
    flex-direction: column;
    gap: 1.2rem;
    width: 200px;
    margin: 0;
    padding: 1.2rem 0;
    align-items: flex-start;
    box-shadow: 0 8px 24px #000a;
    border-radius: 0 0 8px 8px;
    display: none;
    z-index: 10;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    font-size: 1.2rem;
    padding: 0.5rem 1.5rem;
    width: 100%;
    box-sizing: border-box;
  }
  .logo img {
    height: 56px !important;
  }
}

@media (max-width: 600px) {
  .logo img {
    height: 90px !important;
    max-width: 95vw;
  }
}

/* Hide hamburger on desktop */
.hamburger {
  display: none;
}
@media (max-width: 800px) {
  .hamburger {
    display: flex;
  }
}

/* Merch grid responsive centering */
.merch-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}
.merch-item {
  background: #181818;
  border-radius: 10px;
  box-shadow: 0 2px 8px #000a;
  padding: 1.2rem;
  width: 260px;
  text-align: center;
  margin-bottom: 1.5rem;
}
.merch-item img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 600px) {
  .merch-grid {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }
  .merch-item {
    width: 90vw;
    min-width: 0;
    max-width: 340px;
  }
}
.gothic-title {
  font-family: 'Staatliches', 'Oswald', 'Impact', 'Arial Black', Arial, sans-serif;
  font-size: 3.2rem;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 1.2rem;
  text-shadow: 2px 2px 8px #000, 0 0 10px #b30000aa;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111112;
  padding: 1.2rem 2.5rem;
  border-bottom: 3px solid #b30000;
  box-shadow: 0 2px 8px #000a;
}
.logo {
  font-size: 2.2rem;
  font-family: 'Oswald', 'Impact', 'Arial Black', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 4px;
  color: #b30000;
  text-transform: uppercase;
  text-shadow: 2px 2px 8px #000, 0 0 10px #b30000aa;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2.2rem;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.2s, text-shadow 0.2s;
}
.nav-links a:hover {
  color: #b30000;
  text-shadow: 0 0 8px #b30000, 0 0 2px #fff;
}
  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 65vh;
    background: url('assets/FIRE.png') center/cover no-repeat;
    text-align: center;
    padding: 5rem 1rem 3rem 1rem;
    border-bottom: 4px solid #b30000;
    box-shadow: 0 8px 32px #000b;
    position: relative;
  }
.hero::after {
  content: none;
}
.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.2rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 6px;
  font-family: 'Oswald', 'Impact', 'Arial Black', Arial, sans-serif;
  text-shadow: 3px 3px 12px #b30000, 0 0 18px #000;
  position: relative;
  z-index: 2;
}
.hero p {
  font-size: 1.4rem;
  color: #e0e0e0;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 8px #000, 0 0 2px #b30000;
}
main, section {
  z-index: 2;
  position: relative;
}
@media (max-width: 900px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  nav {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 1rem;
  }
}
@media (max-width: 700px) {
  .nav-links {
    flex-direction: column;
    gap: 1rem;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
}
