/* RESET */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: Arial, sans-serif; }

/* PAPER TEXTURE */
.paper-bg {
  background: #eaeaea url("../images/grain.png");
}

/* HEADER */
.header {
  background: #f2f2f2;
  padding: 20px;
  border-bottom: 6px solid #000;
  text-align: center;
}

.logo {
  max-width: 520px;
  filter: contrast(120%);
}

.nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-weight: bold;
  margin-top: 10px;
}

/* HERO */
.hero {
  position: relative;
  margin: 30px auto;
  max-width: 1200px;
  border: 6px solid #000;
  background: #000;
}

.hero-img {
  width: 100%;
  display: block;
  filter: grayscale(100%) contrast(130%);
}

.hero-text {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: white;
  max-width: 60%;
}

.hero-text h1 {
  font-size: 48px;
  text-transform: uppercase;
  background: rgba(0,0,0,0.8);
  padding: 10px;
}

.hero-text p {
  background: rgba(0,0,0,0.8);
  padding: 6px 10px;
}

.read-more {
  display: inline-block;
  margin-top: 10px;
  background: #000;
  color: #fff;
  padding: 8px 14px;
  font-weight: bold;
}

/* TORN EDGES */
.torn::before,
.torn::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 30px;
  background-size: cover;
}

.torn::before {
  top: -30px;
  background-image: url("../images/torn-top.png");
}

.torn::after {
  bottom: -30px;
  background-image: url("../images/torn-bottom.png");
}

/* LAYOUT */
.layout {
  max-width: 1200px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: 220px 1fr 300px;
  gap: 30px;
}

/* NEWS */
.news-item {
  border-bottom: 3px solid #000;
  padding: 20px 0;
}

.news-item h2 {
  font-size: 28px;
  text-transform: uppercase;
}

/* PUNK BOXES */
.punk-box {
  background: #000;
  color: #fff;
  padding: 18px;
  margin-bottom: 20px;
  border: 4px solid #000;
}

.punk-box h3 {
  background: #fff;
  color: #000;
  padding: 6px;
  font-size: 14px;
  margin-bottom: 10px;
}

/* FOOTER */
.footer {
  margin-top: 60px;
  padding: 30px;
  background: #000;
  color: #fff;
  text-align: center;
}
/* =========================
   HERO – PUNK TREATMENT
========================= */

.hero {
  position: relative;
  max-width: 1200px;
  height: 420px;
  margin: 40px auto;
  overflow: hidden;
  border: 6px solid #000;
  background: #000;
}

/* Hero image */
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(130%);
}

/* Grain overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/images/grain.png");
  opacity: 0.18;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 2;
}

/* Torn paper edges */
.hero::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  width: 100%;
  height: 40px;
  background: url("/images/torn-top.png") repeat-x;
  background-size: auto 40px;
  z-index: 3;
}

.hero .torn-bottom {
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 40px;
  background: url("/images/torn-bottom.png") repeat-x;
  background-size: auto 40px;
  z-index: 3;
}

/* Headline overlay */
.hero-text {
  position: absolute;
  bottom: 30px;
  left: 30px;
  max-width: 70%;
  background: rgba(0,0,0,0.75);
  color: #fff;
  padding: 18px 22px;
  z-index: 4;
  text-transform: uppercase;
}

.hero-text h1 {
  margin: 0 0 6px;
  font-size: 34px;
  letter-spacing: 1px;
}

.hero-text p {
  margin: 0;
  font-size: 14px;
  opacity: 0.85;
}
