/* Bonusdirekt - Bold magazine style with red accents */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --red: #D62828;
  --red-dark: #A81E1E;
  --black: #0F0F0F;
  --off-white: #FAF8F5;
  --grey-100: #EEEAE4;
  --grey-300: #C4BDB3;
  --grey-600: #6B6560;
  --grey-800: #2A2725;
}

html { scroll-behavior: smooth; }

body {
  font-family: Georgia, 'Times New Roman', serif;
  background: var(--off-white);
  color: var(--grey-800);
  line-height: 1.7;
  font-size: 17px;
}

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  background: var(--black);
  color: var(--off-white);
  border-bottom: 4px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.logo {
  font-family: Impact, 'Arial Narrow', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--off-white);
  text-decoration: none;
}
.logo span { color: var(--red); }
nav ul { list-style: none; display: flex; gap: 28px; }
nav a {
  color: var(--off-white);
  text-decoration: none;
  font-family: Impact, 'Arial Narrow', sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 15px;
  transition: color 0.2s;
}
nav a:hover { color: var(--red); }

/* Hero */
.hero {
  background: var(--black);
  color: var(--off-white);
  padding: 60px 0 80px;
  position: relative;
}
.hero::after {
  content: "";
  display: block;
  height: 20px;
  background: repeating-linear-gradient(90deg, var(--red) 0 40px, var(--black) 40px 80px);
}
.hero h1 {
  font-family: Impact, 'Arial Narrow', sans-serif;
  font-size: clamp(38px, 6vw, 68px);
  letter-spacing: 1px;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero .tag {
  display: inline-block;
  background: var(--red);
  color: var(--off-white);
  padding: 6px 14px;
  font-family: Impact, sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 24px;
}
.hero p.lede {
  font-size: 20px;
  line-height: 1.5;
  max-width: 720px;
  color: var(--grey-100);
}
.hero-image {
  width: 100%;
  height: auto;
  margin-top: 40px;
  border: 4px solid var(--red);
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 16px 0;
  font-size: 14px;
  color: var(--grey-600);
  border-bottom: 1px solid var(--grey-100);
}
.breadcrumbs a { color: var(--red); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }

/* Main article */
main { padding: 50px 0; }
article { max-width: 820px; margin: 0 auto; }

article h2 {
  font-family: Impact, 'Arial Narrow', sans-serif;
  font-size: 32px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--black);
  border-left: 6px solid var(--red);
  padding-left: 18px;
  margin: 50px 0 22px;
  line-height: 1.15;
}
article h3 {
  font-family: Impact, 'Arial Narrow', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--red-dark);
  margin: 32px 0 14px;
  text-transform: uppercase;
}
article p { margin-bottom: 18px; }
article ul, article ol { margin: 18px 0 18px 28px; }
article li { margin-bottom: 8px; }
article a { color: var(--red); font-weight: bold; }
article a:hover { color: var(--red-dark); }

article strong { color: var(--black); }

/* Table of contents */
.toc {
  background: var(--grey-100);
  border-left: 6px solid var(--red);
  padding: 28px 32px;
  margin: 40px 0;
}
.toc h2 {
  font-family: Impact, sans-serif;
  font-size: 22px;
  margin: 0 0 18px !important;
  border: none !important;
  padding: 0 !important;
  color: var(--black);
}
.toc ol { list-style: none; margin: 0; counter-reset: toc-count; }
.toc li {
  counter-increment: toc-count;
  padding: 6px 0;
  border-bottom: 1px dashed var(--grey-300);
  padding-left: 44px;
  position: relative;
}
.toc li:last-child { border-bottom: none; }
.toc li::before {
  content: counter(toc-count, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 6px;
  font-family: Impact, sans-serif;
  color: var(--red);
  font-size: 18px;
}
.toc a {
  color: var(--grey-800);
  text-decoration: none;
  font-weight: normal;
}
.toc a:hover { color: var(--red); }

/* Article images */
.article-image {
  width: 100%;
  height: auto;
  margin: 32px 0;
  border: 3px solid var(--black);
  display: block;
}
.article-image + em, .article-image + .caption {
  display: block;
  text-align: center;
  font-size: 14px;
  color: var(--grey-600);
  margin-top: -20px;
  margin-bottom: 32px;
}

/* FAQ */
.faq-section { margin: 50px 0; }
.faq-section details {
  background: #fff;
  border-left: 4px solid var(--red);
  border-bottom: 1px solid var(--grey-100);
  padding: 18px 24px;
  margin-bottom: 10px;
}
.faq-section summary {
  font-family: Impact, sans-serif;
  font-size: 18px;
  letter-spacing: 0.5px;
  color: var(--black);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 30px;
  text-transform: uppercase;
}
.faq-section summary::-webkit-details-marker { display: none; }
.faq-section summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -4px;
  color: var(--red);
  font-size: 26px;
  font-family: Impact, sans-serif;
}
.faq-section details[open] summary::after { content: "−"; }
.faq-section details p {
  margin-top: 14px;
  color: var(--grey-800);
}

/* Disclaimer */
.disclaimer {
  background: var(--black);
  color: var(--off-white);
  padding: 28px 32px;
  border-left: 6px solid var(--red);
  margin: 50px 0;
}
.disclaimer h3 {
  font-family: Impact, sans-serif;
  color: var(--red);
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.disclaimer p { color: var(--grey-100); margin-bottom: 10px; }
.disclaimer a { color: var(--red); }

/* Author bio */
.author-bio {
  display: flex;
  gap: 24px;
  background: var(--grey-100);
  padding: 24px;
  border-left: 6px solid var(--red);
  margin: 50px 0;
  align-items: flex-start;
}
.author-bio img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 3px solid var(--red);
  object-fit: cover;
  flex-shrink: 0;
}
.author-bio .who {
  font-family: Impact, sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--black);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.author-bio .role {
  font-size: 14px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.author-bio p { font-size: 15px; line-height: 1.55; margin: 0; }

/* Related pages */
.related {
  border-top: 3px solid var(--black);
  border-bottom: 3px solid var(--black);
  padding: 30px 0;
  margin: 50px 0;
}
.related h3 {
  font-family: Impact, sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 18px;
  letter-spacing: 1px;
}
.related ul { list-style: none; margin: 0; }
.related li { padding: 8px 0; border-bottom: 1px dashed var(--grey-300); }
.related li:last-child { border: none; }

/* Footer */
footer {
  background: var(--black);
  color: var(--grey-100);
  padding: 50px 0 30px;
  margin-top: 60px;
  border-top: 6px solid var(--red);
}
footer .container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
footer h4 {
  font-family: Impact, sans-serif;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  font-size: 16px;
}
footer ul { list-style: none; }
footer li { padding: 4px 0; }
footer a { color: var(--grey-100); text-decoration: none; font-size: 15px; }
footer a:hover { color: var(--red); }
footer p { font-size: 14px; line-height: 1.5; color: var(--grey-300); }
.copyright {
  text-align: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid var(--grey-800);
  font-size: 13px;
  color: var(--grey-600);
}

/* Contact form */
.contact-form {
  background: #fff;
  padding: 32px;
  border-left: 6px solid var(--red);
  margin: 30px 0;
}
.contact-form label {
  display: block;
  font-family: Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--black);
  margin: 16px 0 8px;
  font-size: 14px;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--grey-300);
  background: var(--off-white);
  font-family: Georgia, serif;
  font-size: 16px;
}
.contact-form button {
  background: var(--red);
  color: var(--off-white);
  border: none;
  padding: 14px 36px;
  font-family: Impact, sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
}
.contact-form button:hover { background: var(--red-dark); }

/* Responsive */
@media (max-width: 768px) {
  .site-header .container { flex-direction: column; gap: 14px; padding: 14px 24px; }
  nav ul { gap: 16px; flex-wrap: wrap; justify-content: center; }
  nav a { font-size: 13px; }
  .hero { padding: 40px 0 50px; }
  .hero h1 { font-size: 36px; }
  .hero p.lede { font-size: 17px; }
  article h2 { font-size: 24px; padding-left: 14px; }
  article h3 { font-size: 19px; }
  .toc { padding: 20px; }
  .toc li { padding-left: 38px; }
  .author-bio { flex-direction: column; align-items: center; text-align: center; }
  footer .container { grid-template-columns: 1fr; gap: 30px; }
}

/* Print */
@media print {
  .site-header, footer, nav, .contact-form button { display: none; }
  body { background: white; color: black; }
  article { max-width: 100%; }
}
