/* ============================================================
   BRINGER OF DOOM — site styles
   Aesthetic: VHS horror video-nasty crossed with 80s metal sleeve.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Nosifer&family=Metal+Mania&family=Special+Elite&family=EB+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --ink:        #06030a;
  --ink-2:      #120816;
  --bone:       #f1e6c8;
  --bone-dim:   #9c8e6f;
  --blood:      #d4192e;
  --blood-dark: #7a0d18;
  --toxic:      #2bc24a;
  --hotpink:    #ff2d8e;
  --flame:      #f5b300;
  --rust:       #ff6b1a;

  --font-display: 'Nosifer', 'Creepster', cursive;
  --font-sub:     'Metal Mania', 'Pirata One', cursive;
  --font-body:    'Special Elite', 'Courier New', monospace;
  --font-prose:   'EB Garamond', 'Times New Roman', serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  min-height: 100%;
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255, 45, 142, 0.10) 0%, transparent 45%),
    radial-gradient(ellipse at 90% 80%, rgba(43, 194, 74, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, #1a0a1f 0%, var(--ink) 60%);
  background-attachment: fixed;
}

body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 1;
  background-image: radial-gradient(rgba(255, 45, 142, 0.18) 1px, transparent 1.2px);
  background-size: 8px 8px;
  mix-blend-mode: screen;
  opacity: 0.35;
}

body::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 2;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.18) 0px, rgba(0, 0, 0, 0.18) 1px,
    transparent 1px, transparent 3px
  );
  mix-blend-mode: multiply;
}

.grain::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 3;
  opacity: 0.10;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.7'/></svg>");
  mix-blend-mode: overlay;
}

.wrap { position: relative; z-index: 10; max-width: 1180px; margin: 0 auto; padding: 0 28px; }
main { padding-bottom: 80px; }

/* header / nav */
.site-header {
  position: relative; z-index: 50;
  padding: 26px 0 0;
  border-bottom: 1px solid rgba(212, 25, 46, 0.25);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 22px; padding-bottom: 22px;
}
.brand {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--blood);
  text-decoration: none;
  letter-spacing: 1px;
  text-shadow: 0 0 1px var(--flame), 0 0 14px rgba(212, 25, 46, 0.45), 2px 2px 0 #000;
  line-height: 1;
  transform: rotate(-1.5deg);
  transition: transform 180ms ease, filter 180ms ease;
}
.brand:hover { transform: rotate(-1deg) scale(1.02); filter: drop-shadow(0 0 8px var(--blood)); }
.brand small {
  display: block;
  font-family: var(--font-sub);
  font-size: 14px;
  color: var(--flame);
  letter-spacing: 4px;
  margin-top: 2px;
  text-shadow: 1px 1px 0 #000;
}

.nav { display: flex; gap: 4px; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; }
.nav a {
  display: inline-block; padding: 8px 14px;
  font-family: var(--font-sub); font-size: 19px;
  color: var(--bone); text-decoration: none;
  letter-spacing: 1.5px;
  position: relative;
  transition: color 120ms ease;
}
.nav a::before {
  content: ""; position: absolute; left: 8px; right: 8px; bottom: 4px;
  height: 2px; background: var(--blood);
  transform: scaleX(0); transform-origin: left;
  transition: transform 220ms cubic-bezier(.7,.1,.3,1);
}
.nav a:hover { color: var(--flame); }
.nav a:hover::before { transform: scaleX(1); }
.nav a.active { color: var(--blood); }
.nav a.active::before { transform: scaleX(1); }
.nav a:hover { animation: nudge 160ms steps(2, end); }
@keyframes nudge {
  0%{transform:translate(0,0)} 50%{transform:translate(-1px,1px)} 100%{transform:translate(0,0)}
}

/* page title */
.page-title { margin: 60px 0 40px; position: relative; text-align: center; }
.page-title h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 110px);
  color: var(--blood); margin: 0;
  letter-spacing: 2px; line-height: 0.95;
  text-shadow: 0 0 1px var(--flame), 0 0 18px rgba(212, 25, 46, 0.5),
               4px 4px 0 #000, -1px -1px 0 var(--hotpink);
  animation: title-in 700ms cubic-bezier(.2,.7,.2,1) both;
}
.page-title .kicker {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: 18px;
  color: var(--flame);
  letter-spacing: 8px;
  margin-bottom: 12px;
  padding: 4px 14px;
  border: 1px solid rgba(245, 179, 0, 0.4);
  background: rgba(0, 0, 0, 0.5);
  transform: rotate(-1deg);
  animation: title-in 600ms 80ms cubic-bezier(.2,.7,.2,1) both;
}
@keyframes title-in {
  from { opacity: 0; transform: translateY(20px) rotate(-2deg); }
  to   { opacity: 1; transform: translateY(0) rotate(0); }
}

.drip {
  display: block; width: 100%; height: 28px; margin: 18px 0 30px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 28' preserveAspectRatio='none'><path d='M0,0 L200,0 L200,4 C190,6 188,18 186,4 C184,16 178,2 174,8 C170,18 166,4 162,12 C158,6 154,22 150,6 C146,14 142,4 138,16 C134,6 130,18 126,4 C122,12 118,6 114,18 C110,4 106,14 102,6 C98,18 94,4 90,12 C86,6 82,20 78,5 C74,15 70,5 66,18 C62,6 58,14 54,4 C50,16 46,4 42,14 C38,4 34,18 30,6 C26,12 22,5 18,16 C14,6 10,18 6,4 L0,5 Z' fill='%23d4192e'/></svg>");
  background-repeat: repeat-x; background-size: 200px 28px;
  filter: drop-shadow(0 4px 6px rgba(212, 25, 46, 0.4));
}

h2 {
  font-family: var(--font-sub);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--flame);
  letter-spacing: 2px;
  margin: 50px 0 14px;
  text-shadow: 2px 2px 0 #000;
}
h2::before { content: "✟ "; color: var(--blood); }

h3 {
  font-family: var(--font-sub);
  font-size: 24px;
  color: var(--toxic);
  letter-spacing: 1.5px;
  margin: 26px 0 8px;
  text-shadow: 1px 1px 0 #000;
}

p { margin: 0 0 18px; }

.prose { font-family: var(--font-prose); font-size: 19px; line-height: 1.65; color: var(--bone); }
.prose p { margin: 0 0 22px; }
.prose > p:first-child:first-letter,
.prose.drop > p:first-letter {
  font-family: var(--font-display);
  color: var(--blood);
  font-size: 2.6em;
  float: left;
  line-height: 0.9;
  padding: 6px 10px 0 0;
  text-shadow: 2px 2px 0 #000;
}

a { color: var(--flame); }
a:hover { color: var(--blood); }

/* hero */
.hero {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 50px; align-items: center; margin: 30px 0 50px;
}
@media (max-width: 880px) { .hero { grid-template-columns: 1fr; } }

.hero-art {
  position: relative;
  transform: rotate(-2deg);
  filter: drop-shadow(0 0 24px rgba(255, 45, 142, 0.3)) drop-shadow(0 0 60px rgba(212, 25, 46, 0.25));
  animation: float 7s ease-in-out infinite;
}
.hero-art img {
  width: 100%; height: auto; display: block;
  border: 3px solid var(--blood);
  outline: 1px solid rgba(245, 179, 0, 0.5); outline-offset: -8px;
  box-shadow: 0 0 0 1px #000,
              18px 18px 0 0 rgba(245, 179, 0, 0.6),
              32px 32px 0 0 var(--blood);
}
@keyframes float {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50%      { transform: rotate(-1.5deg) translateY(-8px); }
}

.hero-tag {
  font-family: var(--font-sub); font-size: 22px;
  color: var(--flame); letter-spacing: 3px; margin-bottom: 12px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  color: var(--blood); line-height: 1; margin: 0 0 22px;
  text-shadow: 0 0 18px rgba(212, 25, 46, 0.55), 3px 3px 0 #000;
}

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 18px; }
.btn {
  display: inline-block; padding: 14px 26px;
  font-family: var(--font-sub); font-size: 19px;
  letter-spacing: 2px; text-decoration: none; color: var(--bone);
  background: linear-gradient(135deg, var(--blood-dark), var(--blood));
  border: 2px solid var(--flame); position: relative;
  transition: transform 140ms ease, box-shadow 140ms ease;
  box-shadow: 4px 4px 0 #000;
}
.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #000, 0 0 22px var(--blood);
  color: var(--flame);
}
.btn.ghost { background: transparent; border-color: var(--toxic); color: var(--toxic); }
.btn.ghost:hover { color: var(--flame); border-color: var(--flame); }

/* members */
.member-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px; margin: 36px 0;
}
.member {
  background: linear-gradient(180deg, rgba(212, 25, 46, 0.10), rgba(0,0,0,0.4));
  border: 1px solid rgba(245, 179, 0, 0.35);
  padding: 22px 22px 24px;
  position: relative;
  transition: transform 180ms ease, border-color 180ms ease;
}
.member:nth-child(odd)  { transform: rotate(-0.5deg); }
.member:nth-child(even) { transform: rotate(0.5deg); }
.member:hover { border-color: var(--blood); transform: rotate(0) translateY(-4px); }
.member::before {
  content: ""; position: absolute; top: -1px; left: -1px;
  width: 28px; height: 28px;
  border-top: 3px solid var(--blood); border-left: 3px solid var(--blood);
}
.member::after {
  content: ""; position: absolute; bottom: -1px; right: -1px;
  width: 28px; height: 28px;
  border-bottom: 3px solid var(--blood); border-right: 3px solid var(--blood);
}
.member .role {
  font-family: var(--font-sub); font-size: 16px;
  color: var(--toxic); letter-spacing: 2px; margin-bottom: 4px;
}
.member .name {
  font-family: var(--font-display); font-size: 26px;
  color: var(--blood); line-height: 1.05; margin: 0 0 10px;
  text-shadow: 2px 2px 0 #000;
}
.member p { font-family: var(--font-prose); font-size: 16px; color: var(--bone); }

/* merch */
.product { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; margin: 30px 0 60px; }
@media (max-width: 820px) { .product { grid-template-columns: 1fr; } }
.product-img {
  position: relative; background: #000; padding: 14px;
  border: 2px solid var(--blood);
  outline: 1px solid var(--flame); outline-offset: -10px;
  transform: rotate(-1deg);
  box-shadow: 12px 12px 0 var(--blood-dark);
}
.product-img img { width: 100%; display: block; }
.product-info h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  color: var(--blood); margin: 0 0 8px; line-height: 0.95;
  text-shadow: 3px 3px 0 #000;
}
.product-info .meta {
  display: flex; gap: 18px; flex-wrap: wrap; margin: 18px 0;
  font-family: var(--font-sub); font-size: 15px;
  color: var(--toxic); letter-spacing: 2px;
}
.product-info .meta span::before { content: "» "; color: var(--blood); }

#paypal-container-X6QNLNZ332FWW {
  margin-top: 24px; padding: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(245, 179, 0, 0.4);
  min-height: 60px;
}

/* videos */
.video-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 36px; margin: 30px 0 60px;
}
@media (max-width: 600px) { .video-grid { grid-template-columns: 1fr; } }
.video-card { position: relative; }
.video-card:nth-child(odd)  { transform: rotate(-0.7deg); }
.video-card:nth-child(even) { transform: rotate(0.7deg); }
.video-frame {
  position: relative; padding-bottom: 56.25%; height: 0;
  border: 3px solid var(--blood);
  outline: 1px solid var(--flame); outline-offset: -8px;
  box-shadow: 8px 8px 0 #000;
  background: #000;
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-card h3 {
  font-family: var(--font-display);
  color: var(--blood); font-size: 22px;
  margin: 16px 4px 0;
  text-shadow: 2px 2px 0 #000;
  line-height: 1.15;
}
.video-card h3::before { content: "▶ "; color: var(--toxic); }

/* gallery */
.gallery {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px; margin: 30px 0 60px;
}
.shot {
  position: relative; overflow: hidden; background: #000;
  border: 2px solid var(--blood-dark);
  transition: transform 220ms cubic-bezier(.2,.7,.2,1), border-color 220ms ease, box-shadow 220ms ease;
  cursor: pointer;
}
.shot:nth-child(3n+1) { transform: rotate(-1deg); }
.shot:nth-child(3n+2) { transform: rotate(0.6deg); }
.shot:nth-child(3n+3) { transform: rotate(-0.3deg); }
.shot:hover {
  transform: rotate(0) scale(1.03);
  border-color: var(--flame);
  box-shadow: 0 0 24px rgba(245, 179, 0, 0.4), 6px 6px 0 #000;
  z-index: 5;
}
.shot img {
  display: block; width: 100%; height: 320px; object-fit: cover;
  filter: contrast(1.05) saturate(1.1);
  transition: filter 220ms ease;
}
.shot:hover img { filter: contrast(1.1) saturate(1.25); }
.shot .tape {
  position: absolute; top: 8px; left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 90px; height: 18px;
  background: rgba(245, 179, 0, 0.55);
  border: 1px dashed rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 4px rgba(0,0,0,0.5);
  pointer-events: none;
}

.lightbox {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0, 0, 0, 0.92);
  display: none; align-items: center; justify-content: center;
  padding: 30px; cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 95vw; max-height: 92vh;
  border: 4px solid var(--blood);
  outline: 1px solid var(--flame); outline-offset: -10px;
  box-shadow: 0 0 60px rgba(212, 25, 46, 0.6);
  cursor: default;
}
.lightbox__close {
  position: absolute; top: 14px; right: 18px;
  width: 44px; height: 44px;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid var(--blood);
  color: var(--bone);
  font: 700 28px/1 system-ui, sans-serif;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
  transition: background 150ms ease, transform 150ms ease;
}
.lightbox__close:hover {
  background: var(--blood);
  transform: rotate(90deg);
}
.lightbox.loading::before {
  content: "";
  position: absolute;
  width: 48px; height: 48px;
  border: 4px solid rgba(244, 232, 208, 0.18);
  border-top-color: var(--blood);
  border-radius: 50%;
  animation: lb-spin 0.9s linear infinite;
}
@keyframes lb-spin { to { transform: rotate(360deg); } }

/* shows */
.show-list { list-style: none; padding: 0; margin: 24px 0 50px; }
.show {
  display: grid; grid-template-columns: 120px 1fr auto;
  gap: 24px; align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(212, 25, 46, 0.25);
  transition: background 180ms ease;
}
.show:hover { background: rgba(212, 25, 46, 0.06); }
.show .date {
  font-family: var(--font-sub);
  font-size: 22px;
  color: var(--flame);
  letter-spacing: 1px;
  line-height: 1.1;
}
.show .venue {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--blood);
  text-shadow: 2px 2px 0 #000;
  margin: 0 0 4px;
}
.show .where { font-family: var(--font-body); color: var(--bone-dim); font-size: 15px; }
@media (max-width: 600px) { .show { grid-template-columns: 1fr; gap: 6px; } }

.notice {
  margin: 30px 0; padding: 26px 28px;
  background: rgba(212, 25, 46, 0.08);
  border-left: 4px solid var(--blood);
  font-family: var(--font-prose);
  font-size: 18px; position: relative;
}
.notice::before {
  content: "⚠"; position: absolute; left: -28px; top: 16px;
  font-size: 36px; color: var(--flame);
}

/* footer */
.site-footer {
  position: relative; z-index: 10;
  margin-top: 80px; padding: 40px 0 30px;
  border-top: 1px solid rgba(212, 25, 46, 0.25);
  background: rgba(0, 0, 0, 0.4);
}
.site-footer .wrap {
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 20px; align-items: center;
}
.site-footer .mark {
  font-family: var(--font-display);
  color: var(--blood); font-size: 24px;
  text-shadow: 2px 2px 0 #000;
}
.site-footer .small {
  font-family: var(--font-body);
  font-size: 13px; color: var(--bone-dim);
  letter-spacing: 1px;
}
.site-footer a { color: var(--flame); }

.center { text-align: center; }
.muted { color: var(--bone-dim); }

main > * { animation: fade-up 600ms cubic-bezier(.2,.7,.2,1) both; }
main > *:nth-child(1) { animation-delay: 60ms; }
main > *:nth-child(2) { animation-delay: 160ms; }
main > *:nth-child(3) { animation-delay: 240ms; }
main > *:nth-child(4) { animation-delay: 320ms; }
main > *:nth-child(5) { animation-delay: 400ms; }
@keyframes fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

::selection { background: var(--blood); color: var(--bone); }
