/* =========================================================
   LIGA DES BÖSEN — Stylesheet
   ========================================================= */

:root {
  --bg:           #0a0a0f;
  --surface:      #111118;
  --surface-hi:   #1a1a24;
  --gold:         #c9a827;
  --gold-dim:     rgba(201, 168, 39, 0.12);
  --gold-border:  rgba(201, 168, 39, 0.25);
  --text:         #c8c8d0;
  --text-dim:     #6b6b78;
  --text-bright:  #f4f0e8;
  --border:       rgba(255, 255, 255, 0.07);
  --radius:       2px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.15s;
}

a:hover {
  opacity: 0.75;
}


/* ---------------------------------------------------------
   NAVIGATION
   --------------------------------------------------------- */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}

.nav-logo {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  color: var(--text);
  font-size: 0.875rem;
  letter-spacing: 0.02em;
}

.nav-links a:hover {
  color: var(--text-bright);
  opacity: 1;
}

.badge {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--gold-dim);
  color: var(--gold);
  padding: 0.15em 0.5em;
  border-radius: 2px;
  margin-left: 0.35em;
  vertical-align: middle;
}


/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  padding: 5rem 2.5rem 4rem;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 168, 39, 0.06) 0%, transparent 70%);
}

.hero-center {
  text-align: center;
  flex: 1;
  max-width: 520px;
}

.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  color: var(--text-bright);
  letter-spacing: 0.07em;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 0 60px rgba(201, 168, 39, 0.2);
}

.motto {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.villain-portrait {
  width: 130px;
  height: 175px;
  border: 1px solid var(--gold-border);
  background: linear-gradient(155deg, #16161f 0%, #0c0c14 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 0.7rem;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.villain-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ---------------------------------------------------------
   MAIN WRAPPER
   --------------------------------------------------------- */

.main-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem;
}


/* ---------------------------------------------------------
   FEATURED ARTICLES
   --------------------------------------------------------- */

.featured-section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}

.section-label {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 2.5rem;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.featured-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: border-color 0.2s ease, background 0.2s ease;
  cursor: default;
}

.featured-card:hover {
  border-color: var(--gold-border);
  background: var(--surface-hi);
}

.featured-card.card-meta {
  border-color: var(--gold-border);
  background: var(--surface-hi);
}

.tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
}

.featured-card h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-bright);
  line-height: 1.4;
}

.featured-card p {
  font-size: 0.875rem;
  color: var(--text);
  flex: 1;
}

.attribution {
  color: var(--text-dim) !important;
  font-style: italic;
  font-size: 0.8rem !important;
}

.read-link {
  color: var(--gold);
  font-size: 0.825rem;
  font-weight: 500;
  display: inline-block;
  margin-top: 0.25rem;
  align-self: flex-start;
}


/* ---------------------------------------------------------
   ARTICLES LIST
   --------------------------------------------------------- */

.articles-section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}

.articles-list {
  list-style: none;
}

.article-item {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
}

.article-item:first-child {
  border-top: 1px solid var(--border);
}

.article-cat {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  min-width: 100px;
  flex-shrink: 0;
}

.article-item a {
  color: var(--text);
  font-size: 0.9rem;
  flex: 1;
  transition: color 0.15s;
}

.article-item a:hover {
  color: var(--text-bright);
  opacity: 1;
}

.article-item .placeholder-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-style: italic;
  flex-shrink: 0;
}


/* ---------------------------------------------------------
   NEWSLETTER
   --------------------------------------------------------- */

.newsletter-section {
  padding: 5rem 0 4rem;
}

.newsletter-box {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-box h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  color: var(--text-bright);
  margin-bottom: 0.75rem;
}

.newsletter-desc {
  color: var(--text-dim);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  margin-bottom: 1rem;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.75rem 1rem;
  background: var(--surface);
  border: 1px solid var(--gold-border);
  border-right: none;
  color: var(--text-bright);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  outline: none;
  border-radius: var(--radius) 0 0 var(--radius);
  transition: border-color 0.15s;
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--gold);
}

.newsletter-form input[type="email"]::placeholder {
  color: var(--text-dim);
}

.newsletter-form button {
  padding: 0.75rem 1.5rem;
  background: var(--gold);
  border: none;
  color: #0a0a0f;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: opacity 0.15s;
}

.newsletter-form button:hover {
  opacity: 0.85;
}

.dsgvo-note {
  font-size: 0.72rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.dsgvo-note a {
  color: var(--text-dim);
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* ---------------------------------------------------------
   FOOTER
   --------------------------------------------------------- */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  font-size: 0.78rem;
  color: var(--text-dim);
}

.footer-nav {
  display: flex;
  gap: 2rem;
}

.footer-nav a {
  color: var(--text-dim);
  font-size: 0.78rem;
  transition: color 0.15s;
}

.footer-nav a:hover {
  color: var(--text);
  opacity: 1;
}


/* ---------------------------------------------------------
   ARTICLE PAGE
   --------------------------------------------------------- */

.article-page {
  max-width: min(50rem, 90vw);
  margin: 4rem auto;
  padding: 0 2.5rem 6rem;
}

.article-page-header {
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.article-page-header .tag {
  display: block;
  margin-bottom: 1.25rem;
}

.article-page-header h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--text-bright);
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

.article-lead {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.75;
}

.article-body {
  line-height: 1.85;
}

.article-body p + p,
.article-body p + h2,
.article-body h2 + p {
  margin-top: 1.5rem;
}

.article-body h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  color: var(--text-bright);
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.article-body ul,
.article-body ol {
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.article-body li + li {
  margin-top: 0.4rem;
}

.article-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  color: var(--text);
  font-style: italic;
  background: var(--surface);
}

.article-body .continue-marker {
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-left: 3px solid var(--gold);
  padding: 0.75rem 1.25rem;
  margin: 2rem 0;
  font-size: 0.85rem;
  color: var(--gold);
  font-style: normal;
}

.placeholder-box {
  border: 1px dashed var(--border);
  padding: 4rem 2rem;
  text-align: center;
  color: var(--text-dim);
  font-style: italic;
  font-size: 0.9rem;
  margin-top: 2rem;
}

.article-back {
  display: inline-block;
  margin-top: 3rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.article-back:hover {
  color: var(--text);
  opacity: 1;
}


/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */

@media (max-width: 900px) {
  .featured-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .navbar {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    gap: 1.25rem;
  }

  .hero {
    flex-direction: column;
    padding: 3rem 1.5rem 2.5rem;
    gap: 2rem;
  }

  .villain-portrait {
    width: 90px;
    height: 120px;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .main-content {
    padding: 0 1.5rem;
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }

  .article-item {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .article-cat {
    min-width: unset;
  }

  .site-footer {
    flex-direction: column;
    gap: 1.25rem;
    text-align: center;
    padding: 2rem 1.5rem;
  }
}
