@import url('https://fonts.googleapis.com/css2?family=Metal+Mania&display=swap');

:root {
  --accent: #d40000;
  --bg: #0d0d0d;
  --wrap: 1100px;
  --muted: #777;
}

body {
  margin: 0;
  font-family: 'Metal Mania', cursive;
  background: url('assets/bg_noise.jpg') repeat center center;
  color: #f4f4f4;
  text-align: center;
  letter-spacing: 1px;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }

.site-header {
  background: #000;
  border-bottom: 2px solid var(--accent);
  padding: 14px 0;
}
.site-header .wrap { display: flex; justify-content: center; }
.logo img { height: 60px; filter: invert(1); }

.hero {
  text-align: center;
  padding: 100px 0 60px;
  background: rgba(0,0,0,0.6);
}
.hero-logo {
  width: 200px;
  height: auto;
  filter: invert(1);
  margin-bottom: 20px;
}
.hero h1 {
  color: var(--accent);
  font-size: 64px;
  margin: 0;
}

.section {
  padding: 60px 0;
  border-top: 2px dashed #222;
}
.section h2 {
  color: var(--accent);
  font-size: 32px;
  margin-bottom: 16px;
}
.section p {
  color: #ddd;
  font-size: 20px;
}

.merch-grid {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.card {
  border: 2px solid #222;
  background: #111;
  padding: 12px;
  border-radius: 8px;
  width: 200px;
  text-align: center;
}
.card img {
  max-width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 6px;
}

.social-links {
  margin-top: 20px;
}
.btn {
  display: inline-block;
  color: #fff;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 20px;
  transition: background 0.3s, transform 0.2s;
  margin: 5px;
}
.btn.instagram {
  background: var(--accent);
}
.btn.facebook {
  background: #3b5998;
}
.btn.instagram:hover {
  background: #ff1a1a;
  transform: scale(1.05);
}
.btn.facebook:hover {
  background: #4c70ba;
  transform: scale(1.05);
}

.site-footer {
  padding: 20px 0;
  background: #000;
  border-top: 2px solid var(--accent);
  text-align: center;
  color: var(--muted);
}

.footer-socials {
  margin-bottom: 10px;
}
.footer-icon {
  color: var(--accent);
  font-size: 30px;
  margin: 0 10px;
  transition: transform 0.2s, color 0.2s;
}
.footer-icon:hover {
  transform: scale(1.2);
  color: #ff1a1a;
}

@keyframes flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% { opacity: 1; }
  20%, 24%, 55% { opacity: 0.4; }
  21%, 56% { opacity: 0.1; }
}
.flicker {
  animation: flicker 2.5s infinite;
}

@font-face {
  font-family: 'MB Forever Raw';
  src: url('assets/MB-ForeverRaw.ttf') format('truetype');
}
body {
  font-family: 'MB Forever Raw', sans-serif;
}
.sticky-header {
  position: sticky;
  top: 0;
  background: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  z-index: 1000;
}
.sticky-header a {
  color: red;
  font-size: 24px;
  text-decoration: none;
  margin: 0 10px;
}

.header-logo img.header-band-logo {
  height: 80px;
  object-fit: contain;
}
.social-icons i {
  font-size: 24px;
  margin: 0 8px;
  color: red;
}
.hero-logo, .merch-logo {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
