/* obstbau-sachsen.de - Casino Bonus ohne Einzahlung */
/* Navy + warm gold, modern card-based editorial */

:root {
  --navy: #1A1F3D;
  --navy-mid: #2A3158;
  --navy-light: #3D4470;
  --navy-pale: #EDEEF4;
  --gold: #D4A843;
  --gold-dark: #B8902E;
  --gold-light: #E8C76B;
  --gold-pale: #FDF8EC;
  --bg: #FAF8F5;
  --white: #FFFFFF;
  --dark: #111318;
  --text: #2B2D35;
  --text-muted: #6B6E7A;
  --text-light: #9A9CA6;
  --border: #E4E2DD;
  --border-dark: #D0CEC8;
  --radius: 10px;
  --radius-sm: 6px;
  --max-w: 740px;
  --sans: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
  --heading: var(--sans);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16.5px; scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

/* ── HEADER ── */
.site-header {
  background: var(--navy);
  border-bottom: 3px solid var(--gold);
}

.header-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.logo { text-decoration: none; padding: 14px 0; display: flex; align-items: center; gap: 6px; }
.logo-icon { font-size: 1.15rem; }
.logo-text { font-size: 1rem; font-weight: 800; color: #fff; letter-spacing: -0.01em; }
.logo-accent { color: var(--gold); }

.main-nav { display: flex; gap: 0; flex-wrap: wrap; }

.main-nav a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 15px 14px;
  transition: color 0.15s;
  position: relative;
}

.main-nav a:hover { color: rgba(255,255,255,0.85); }

.main-nav a.active {
  color: #fff;
  font-weight: 700;
}

.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px 3px 0 0;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px 24px 0;
  font-size: 0.73rem;
  color: var(--text-light);
}

.breadcrumb a { color: var(--navy-light); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 5px; }

/* ── HERO ── */
.hero {
  max-width: var(--max-w);
  margin: 30px auto 0;
  padding: 0 24px;
}

.hero-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  background: var(--gold-pale);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.hero h1 {
  font-family: var(--heading);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.18;
  color: var(--dark);
  margin-bottom: 14px;
}

.hero .lead {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 620px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-light);
}

.hero-meta img { width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--gold-pale); }

/* ── MAIN ── */
.content-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px 24px 60px;
}

/* ── TOC ── */
.toc {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 0 0 32px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.toc-title {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 10px;
}

.toc ol { list-style: none; columns: 2; column-gap: 20px; margin: 0; padding: 0; counter-reset: toc; }

.toc li { counter-increment: toc; margin-bottom: 3px; }

.toc li::before {
  content: counter(toc, decimal-leading-zero);
  font-weight: 700;
  color: var(--gold);
  font-size: 0.78rem;
  margin-right: 6px;
}

.toc a { font-size: 0.82rem; color: var(--text-muted); text-decoration: none; }
.toc a:hover { color: var(--navy); }

/* ── HEADINGS ── */
h2 {
  font-family: var(--heading);
  font-size: 1.38rem;
  font-weight: 800;
  color: var(--dark);
  margin: 46px 0 6px;
  line-height: 1.25;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
}

h3 {
  font-size: 1.04rem;
  font-weight: 700;
  color: var(--navy-mid);
  margin: 28px 0 8px;
}

h4 { font-size: 0.92rem; font-weight: 600; margin: 16px 0 6px; }

/* ── PROSE ── */
p { margin-bottom: 15px; }
a { color: var(--navy-mid); }
strong { font-weight: 600; }
ul, ol { margin: 0 0 16px 22px; }
li { margin-bottom: 5px; }

/* ── IMAGES ── */
.article-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 26px 0;
  border: 1px solid var(--border);
}

/* ── INFO BOX ── */
.info-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 22px 0;
  font-size: 0.92rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}

.info-box.navy-bg {
  background: var(--navy);
  color: rgba(255,255,255,0.9);
  border: none;
  border-radius: var(--radius-sm);
}

.info-box.navy-bg a { color: var(--gold-light); }
.info-box.gold-bg { background: var(--gold-pale); border-left-color: var(--gold-dark); }
.info-box strong { display: block; margin-bottom: 4px; }

/* ── STEPS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  position: relative;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.step-card .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--navy);
  color: var(--gold);
  font-weight: 800;
  font-size: 0.82rem;
  border-radius: 50%;
  margin-bottom: 10px;
}

.step-card h4 { margin: 0 0 4px; font-size: 0.88rem; }
.step-card p { margin: 0; font-size: 0.84rem; color: var(--text-muted); line-height: 1.55; }

/* ── TABLE ── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
  font-size: 0.88rem;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.data-table th {
  background: var(--navy);
  color: var(--gold-light);
  text-align: left;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.data-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: rgba(26,31,61,0.015); }

/* ── FAQ ── */
.faq-section { margin: 36px 0; }

.faq-section details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

.faq-section summary {
  padding: 14px 42px 14px 18px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  font-size: 0.92rem;
  position: relative;
}

.faq-section summary:hover { color: var(--navy-mid); }
.faq-section summary::-webkit-details-marker { display: none; }

.faq-section summary::after {
  content: '+';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--gold);
}

.faq-section details[open] summary::after { content: '−'; }
.faq-section details[open] summary { color: var(--navy); }

.faq-answer {
  padding: 0 18px 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── AUTHOR BIO ── */
.author-bio {
  margin: 40px 0;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.author-bio-img { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.author-bio-img img { width: 100%; height: 100%; object-fit: cover; }
.author-bio-text h3 { margin-top: 0; margin-bottom: 2px; font-size: 0.95rem; }
.author-bio-text .author-role { color: var(--gold-dark); font-size: 0.8rem; font-weight: 600; margin-bottom: 6px; }
.author-bio-text p { font-size: 0.85rem; margin-bottom: 0; color: var(--text-muted); }

/* ── RELATED ── */
.related-pages { margin: 30px 0; }

.related-pages h3 {
  font-family: var(--sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-light);
  margin-bottom: 10px;
  border-bottom: none;
  padding-bottom: 0;
}

.related-links { display: grid; gap: 8px; }

.related-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--dark);
  font-size: 0.88rem;
  font-weight: 500;
  transition: border-color 0.15s, box-shadow 0.15s;
  box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}

.related-links a::before { content: '→'; color: var(--gold); font-weight: 700; }
.related-links a:hover { border-color: var(--gold); box-shadow: 0 2px 6px rgba(212,168,67,0.12); }

/* ── FOOTER ── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  padding: 40px 24px 24px;
  font-size: 0.8rem;
}

.footer-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
}

.footer-col h4 { color: var(--gold); font-size: 0.72rem; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.07em; }
.footer-col p { margin-bottom: 8px; line-height: 1.55; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 6px; }
.footer-col a { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  max-width: 1060px;
  margin: 20px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.18);
}

.footer-disclaimer {
  max-width: 1060px;
  margin: 6px auto 0;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.1);
  text-align: center;
  line-height: 1.5;
}

/* ── CONTACT ── */
.contact-form { max-width: 520px; margin: 1.5rem 0 2rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.3rem; font-size: 0.86rem; }
.form-group .required { color: var(--gold-dark); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 10px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: 0.92rem; font-family: inherit; background: var(--white); transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold); outline: none; box-shadow: 0 0 0 3px rgba(212,168,67,0.12);
}
.form-group textarea { resize: vertical; }
.btn-submit {
  display: inline-block; padding: 11px 28px; background: var(--navy); color: var(--gold-light);
  border: none; border-radius: var(--radius-sm); font-size: 0.92rem; font-weight: 700; cursor: pointer;
}
.btn-submit:hover { background: var(--navy-mid); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  html { font-size: 15.5px; }
  .header-inner { flex-direction: column; align-items: flex-start; }
  .main-nav { width: 100%; overflow-x: auto; flex-wrap: nowrap; }
  .hero h1 { font-size: 1.55rem; }
  h2 { font-size: 1.18rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 20px; }
  .author-bio { flex-direction: column; }
  .steps-grid { grid-template-columns: 1fr; }
  .toc ol { columns: 1; }
  .content-wrap { padding: 20px 16px 48px; }
}

@media print {
  .site-header, .site-footer, .toc, .main-nav { display: none; }
  body { font-size: 11pt; line-height: 1.5; background: #fff; }
}
