/* WolfGäng – hellhounds-from-the-east.de
   Horror-Punk / Werwolf Redesign */

:root{
  --bone:#efe8d8;
  --bone-dim:#b9b09a;
  --black:#0a0908;
  --black-2:#141110;
  --black-3:#1c1816;
  --blood:#b3141a;
  --blood-dark:#5c0d10;
  --maxw:960px;
}

*{ box-sizing:border-box; }

html{ scroll-behavior:smooth; }

body{
  margin:0;
  background:var(--black);
  color:var(--bone);
  font-family:'Oswald', Arial, sans-serif;
  font-weight:400;
  line-height:1.6;
}

.site{
  max-width:var(--maxw);
  margin:0 auto;
  background:var(--black);
  min-height:100vh;
  border-left:1px solid #2a2422;
  border-right:1px solid #2a2422;
}

a{ color:var(--blood); text-decoration:underline; }
a:hover{ color:#e2555a; }

h1,h2,h3{
  font-family:'Anton', Arial, sans-serif;
  letter-spacing:0.5px;
  color:var(--bone);
  margin:0 0 0.6em;
}

img{ max-width:100%; display:block; }

/* ================= NAV ================= */
nav.site-nav{
  display:flex;
  align-items:center;
  padding:14px 24px;
  background:var(--black-2);
  border-bottom:3px solid var(--blood);
  position:sticky;
  top:0;
  z-index:20;
  flex-wrap:wrap;
}
.nav-logo{ order:0; }
.nav-logo img{ height:34px; filter:grayscale(1) contrast(1.3); }
.nav-toggle{
  display:none;
  order:1;
  margin-left:auto;
  flex-direction:column;
  justify-content:center;
  gap:4px;
  background:none;
  border:none;
  width:32px;
  height:28px;
  padding:0;
  cursor:pointer;
}
.nav-toggle span{ display:block; width:100%; height:2px; background:var(--bone); }
.nav-links{
  order:2;
  margin-left:24px;
  display:flex;
  gap:20px;
  list-style:none;
  margin-top:0; margin-bottom:0;
  padding:0;
  flex-wrap:wrap;
}
.nav-links a{
  color:var(--bone-dim);
  text-decoration:none;
  font-size:13px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  font-weight:500;
  padding-bottom:3px;
  border-bottom:2px solid transparent;
}
.nav-links a:hover,
.nav-links a.active{ color:var(--bone); border-bottom-color:var(--blood); }

@media (max-width:700px){
  .nav-toggle{ display:flex; }
  .nav-links{
    display:none;
    width:100%;
    flex-direction:column;
    gap:0;
    margin-left:0;
    margin-top:12px;
    order:3;
  }
  .nav-links.open{ display:flex; }
  .nav-links li{ border-bottom:1px solid #221d1b; }
  .nav-links a{ display:block; padding:12px 4px; }
}

/* ================= HERO ================= */
.hero{
  position:relative;
  min-height:340px;
  overflow:hidden;
  display:flex;
  align-items:flex-end;
  border-bottom:1px solid #2a2422;
}
.hero picture, .hero img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  filter:grayscale(1) contrast(1.25) brightness(0.55);
}
.hero::after{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(10,9,8,0.15) 0%, rgba(10,9,8,0.55) 55%, rgba(10,9,8,0.95) 100%),
    linear-gradient(0deg, rgba(179,20,26,0.35), rgba(179,20,26,0.08));
  mix-blend-mode:multiply;
}
.hero-content{ position:relative; z-index:2; padding:28px; }
.hero-eyebrow{
  font-family:'Special Elite', monospace;
  font-size:12px; letter-spacing:3px; color:var(--blood);
  text-transform:uppercase; margin:0 0 6px;
}
.hero-title{
  font-size:56px; line-height:0.95; margin:0;
  text-shadow:3px 3px 0 var(--blood-dark);
}
.hero-sub{
  font-family:'Special Elite', monospace; font-size:14px;
  color:var(--bone-dim); margin:10px 0 0;
}

@media (max-width:640px){
  .hero{ min-height:260px; }
  .hero-title{ font-size:34px; }
}

/* ================= SECTIONS / GENERIC ================= */
main{ padding:0; }
section, .page{ padding:36px 28px; border-bottom:1px solid #221d1b; }
.page-inner{ max-width:640px; }

.section-title{
  font-size:24px;
  display:flex; align-items:center; gap:10px;
}
.section-title::before{
  content:"";
  width:14px; height:14px; background:var(--blood); flex:none;
  clip-path:polygon(50% 0%,100% 50%,50% 100%,0% 50%);
}

.quote-box{
  margin:0 0 32px; max-width:340px; padding:14px 16px;
  border:1px dotted var(--bone-dim); font-style:italic; color:var(--bone-dim);
}
.quote-box footer{ text-align:right; font-style:normal; font-size:12px; margin-top:8px; color:var(--blood); }

/* ================= NEWS ================= */
.news-item{ display:flex; gap:16px; padding:14px 0; border-bottom:1px dashed #2e2724; }
.news-item:last-child{ border-bottom:none; }
.news-date{
  font-family:'Special Elite', monospace; font-size:12px; color:var(--blood);
  min-width:110px; flex:none; padding-top:2px;
}
.news-text{ font-size:15px; color:var(--bone-dim); }
.news-text b{ color:var(--bone); font-weight:600; }

/* ================= BAND ================= */
.band-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:14px;
}
.band-card{ border:1px solid #2e2724; background:var(--black-2); text-decoration:none; display:block; }
.band-card .thumb{ position:relative; overflow:hidden; }
.band-card img{
  width:100%; height:150px; object-fit:cover;
  filter:grayscale(1) contrast(1.3) brightness(0.85);
}
.band-card .duo{
  position:absolute; inset:0; height:150px;
  background:linear-gradient(160deg, rgba(179,20,26,0.35), rgba(0,0,0,0.05));
  mix-blend-mode:multiply;
}
.band-name{ font-family:'Anton', sans-serif; font-size:15px; padding:9px 10px 3px; color:var(--bone); }
.band-role{ font-family:'Special Elite', monospace; font-size:10px; color:var(--bone-dim); padding:0 10px 10px; text-transform:uppercase; letter-spacing:1px; }

.band-card--vacant img{ opacity:0.55; }
.band-card--vacant .band-role{ color:var(--blood); }
.band-name--strike{
  text-decoration:line-through;
  text-decoration-color:var(--blood);
  text-decoration-thickness:3px;
  color:var(--bone-dim);
}
.scratch-x{ position:absolute; inset:0; width:100%; height:150px; pointer-events:none; }
.scratch-x path{ stroke:var(--blood); stroke-width:3; stroke-linecap:round; fill:none; }

@media (max-width:640px){
  .band-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:420px){
  .band-grid{ grid-template-columns:1fr; }
}

.band-detail{ display:flex; gap:24px; flex-wrap:wrap; }
.band-detail img{ width:260px; filter:grayscale(1) contrast(1.2); }
.band-detail .text{ flex:1; min-width:220px; color:var(--bone-dim); }

/* ================= GALLERY ================= */
.gallery{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:10px;
}
.gallery a{ display:block; }
.gallery img{
  width:100%; height:140px; object-fit:cover;
  filter:grayscale(1) contrast(1.2) brightness(0.75);
  border:1px solid #2e2724;
}
.gallery img:hover{ filter:grayscale(0.4) contrast(1.15) brightness(0.9); }

@media (max-width:640px){
  .gallery{ grid-template-columns:repeat(2,1fr); }
}

/* ================= CONSENT / CLICK-TO-LOAD EMBEDS ================= */
.embed-consent{
  position:relative;
  min-height:200px;
  background:var(--black-2);
  border:1px dashed var(--bone-dim);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:12px; padding:24px; text-align:center;
  margin-bottom:20px;
}
.embed-consent p{ color:var(--bone-dim); font-size:13px; max-width:420px; margin:0; }
.embed-consent button{
  font-family:'Special Elite', monospace;
  background:transparent; color:var(--bone);
  border:1px solid var(--blood); padding:10px 18px;
  cursor:pointer; letter-spacing:1px; text-transform:uppercase; font-size:12px;
}
.embed-consent button:hover{ background:var(--blood); }
.embed-frame{ width:100%; }
.embed-frame iframe{ width:100%; border:none; }

/* ================= FOOTER ================= */
footer.site-footer{
  padding:22px 28px;
  display:flex; justify-content:space-between; align-items:center;
  font-family:'Special Elite', monospace; font-size:11px; color:var(--bone-dim);
  letter-spacing:1px; flex-wrap:wrap; gap:10px;
}
footer.site-footer a{ color:var(--bone-dim); text-decoration:none; }
footer.site-footer a:hover{ color:var(--blood); }

.tag{
  display:inline-block; font-family:'Special Elite', monospace; font-size:10px;
  color:var(--blood); border:1px solid var(--blood); padding:2px 7px;
  letter-spacing:1px; text-transform:uppercase; margin-left:10px; vertical-align:middle;
}

/* ================= LIGHTBOX ================= */
.lightbox{
  position:fixed; inset:0; background:rgba(5,4,4,0.92);
  display:none; align-items:center; justify-content:center; z-index:50; padding:20px;
}
.lightbox.open{ display:flex; }
.lightbox img{ max-width:100%; max-height:90vh; border:2px solid var(--blood); }
.lightbox-close{
  position:absolute; top:16px; right:20px; background:none; border:none;
  color:var(--bone); font-size:28px; cursor:pointer; line-height:1;
}

.sr-only{
  position:absolute; width:1px; height:1px; overflow:hidden;
  clip:rect(0 0 0 0); white-space:nowrap;
}
