/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; }

/* ── BASE ── */
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #000;
  color: #f5f5f5;
}

/* ── HEADER ── */
.site-header {
  height: 50px;
  background: #808080;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo-placeholder { font-weight: 700; font-size: 16px; color: #111; letter-spacing: .06em; }
.site-nav { display: flex; gap: 26px; font-weight: 600; }
.site-nav a { text-decoration: none; color: #111; white-space: nowrap; font-size: 15px; }
.site-nav a:hover { text-decoration: underline; }
.site-nav a.active { border-bottom: 2px solid #111; }
.search-wrapper { display: flex; align-items: center; gap: 6px; font-size: 13px; color: #222; }
.search-icon { font-size: 18px; cursor: pointer; }

/* ── BUTTONS ── */
/* Primärer Button — klein/inline */
.btn {
  display: inline-block;
  padding: 9px 20px;
  background: #0a84ff;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid #66aaff;
  font-size: 13px;
  letter-spacing: .03em;
  transition: background .15s;
  margin-bottom: 16px;
}
.btn:hover { background: #0069d9; }

/* Outline-Variante */
.btn-outline {
  background: transparent;
  border-color: #666;
  color: #f5f5f5;
}
.btn-outline:hover { background: #1a1a1a; }

/* Breiter Block-Button */
.btn-wide {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  margin: 0 auto 24px;
  background: #0a84ff;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid #66aaff;
  letter-spacing: .04em;
  transition: background .15s;
}
.btn-wide:hover { background: #0069d9; }

/* Karten-Button */
.card-btn {
  display: block;
  padding: 7px 14px;
  background: #0a84ff;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid #66aaff;
  font-size: 12px;
  text-align: center;
  transition: background .15s;
  margin-top: 4px;
}
.card-btn:hover { background: #0069d9; }

/* ── FOOTER ── */
.site-footer {
  background: #111;
  border-top: 1px solid #333;
  padding: 28px 40px;
  margin-top: 60px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-nav { display: flex; gap: 24px; }
.footer-nav a { color: #aaa; text-decoration: none; font-size: 14px; }
.footer-nav a:hover { color: #f5f5f5; }
.footer-copy { color: #555; font-size: 13px; margin: 0; }

/* ── LAYOUT WRAPPER ── */
.wrapper { max-width: 1200px; margin: 40px auto 80px; padding: 0 20px; }

/* ── PAGE TITLES ── */
.main-title {
  text-align: center;
  font-size: clamp(22px, 4vw, 36px);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 20px 0 36px;
}
.main-title span { border-bottom: 3px solid #f5f5f5; padding-bottom: 6px; }
.intro-text { color: #ccc; font-size: 15px; line-height: 1.7; margin: 0 0 32px; }

/* ── TEXT BLOCKS ── */
.text-block {
  background: #111;
  border-radius: 10px;
  padding: 18px 24px;
  border: 1px solid #333;
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 28px;
}
.text-block h2 { margin: 0 0 8px; font-size: 19px; }
.text-block p  { margin: 0; color: #ccc; }
.text-block p + p { margin-top: 8px; }
.text-block ul { margin: 8px 0 0; padding-left: 20px; color: #ccc; }
.text-block li { margin-bottom: 4px; }
.text-block-wide { margin-bottom: 36px; }
.text-two-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 28px; }
.text-block-red { background: #1a0a0a; border-color: #5a1a1a; }

/* ── IMAGE GRID (5-spaltig) ── */
.image-grid-5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}
.image-card {
  display: flex;
  flex-direction: column;
  background: #111;
  border-radius: 10px;
  border: 1px solid #333;
  overflow: hidden;
  transition: border-color .2s;
}
.image-card:hover { border-color: #0a84ff; }
.image-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  background: #1a1a1a;
}
.image-card-body {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.card-title  { font-size: 14px; font-weight: 700; color: #f5f5f5; margin: 0; line-height: 1.3; }
.card-desc   { font-size: 12px; color: #aaa; line-height: 1.5; margin: 0; flex: 1; }

/* ── QUOTE BLOCK ── */
.quote-block {
  border-left: 3px solid #0a84ff;
  padding: 14px 20px;
  background: #0a0f1a;
  border-radius: 0 10px 10px 0;
  font-style: italic;
  color: #7ec8ff;
  font-size: 17px;
  margin-bottom: 28px;
}

/* ── PURPLE SECTION ── */
.purple-section { background: #1a0033; padding: 40px 20px; margin-top: 40px; }
.purple-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.purple-box { background: #2a0050; border-radius: 10px; padding: 22px 24px; border: 1px solid #5a00a0; }
.purple-box h2 { margin: 0 0 10px; font-size: 17px; color: #e0aaff; }
.purple-box a { color: #c080ff; text-decoration: none; font-weight: 600; }
.purple-box a:hover { text-decoration: underline; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .site-header { flex-wrap: wrap; height: auto; padding: 10px 16px; gap: 8px; }
  .site-nav { flex-wrap: wrap; gap: 10px; }
  .search-wrapper { display: none; }
  .text-two-cols { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .site-header { padding: 10px 12px; }
  .image-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .image-card img { height: 120px; }
}
@media (max-width: 380px) {
  .image-grid-5 { grid-template-columns: 1fr; }
}
