/* =====================================================
   Bodo Schäfer Bücher – Shared Stylesheet
   ===================================================== */
:root {
  --gold: #c9a84c;
  --gold-light: #f0d080;
  --dark: #0d0d0d;
  --dark2: #171717;
  --dark3: #222;
  --dark4: #2a2a2a;
  --text: #e8e8e8;
  --text-muted: #888;
  --white: #fff;
  --radius: 6px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
}

/* ── HEADER ── */
header {
  background: rgba(10,10,10,0.97);
  border-bottom: 1px solid rgba(201,168,76,0.25);
  padding: 0.9rem 2rem;
  position: sticky; top: 0; z-index: 200;
  backdrop-filter: blur(12px);
}
.header-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; color: var(--gold); text-decoration: none; white-space: nowrap;
}
nav { display: flex; gap: 1.2rem; flex-wrap: wrap; }
nav a { color: var(--text-muted); text-decoration: none; font-size: 0.82rem; transition: color .2s; }
nav a:hover, nav a.active { color: var(--gold); }

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--dark2); border-bottom: 1px solid rgba(201,168,76,0.08);
  padding: 0.6rem 2rem;
}
.breadcrumb-inner { max-width: 1100px; margin: 0 auto; font-size: 0.78rem; color: var(--text-muted); }
.breadcrumb-inner a { color: var(--text-muted); text-decoration: none; }
.breadcrumb-inner a:hover { color: var(--gold); }
.breadcrumb-inner span { color: var(--gold); }

/* ── HERO ── */
.hero {
  background: linear-gradient(145deg, #080808 0%, #1a1200 45%, #080808 100%);
  padding: 5rem 2rem 3.5rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 45% at 50% 0%, rgba(201,168,76,0.13) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 420px; gap: 4rem; align-items: center;
}
@media(max-width:900px){ .hero-inner { grid-template-columns: 1fr; text-align: center; } }
.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.12); border: 1px solid var(--gold);
  color: var(--gold); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 0.3rem 0.9rem; border-radius: 2px; margin-bottom: 1.2rem;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.2; color: var(--white); margin-bottom: 1rem;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-lead { font-size: 1.05rem; color: #bbb; font-weight: 300; margin-bottom: 1.8rem; max-width: 540px; }
@media(max-width:900px){ .hero-lead { margin: 0 auto 1.8rem; } }
.hero-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
@media(max-width:900px){ .hero-meta { justify-content: center; } }
.hero-meta-item { font-size: 0.8rem; color: var(--text-muted); }
.hero-meta-item strong { color: var(--gold); display: block; font-size: 1.1rem; }
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #080808; font-weight: 800; font-size: 0.95rem;
  letter-spacing: 0.8px; text-transform: uppercase;
  padding: 1rem 2.2rem; border-radius: 3px; text-decoration: none;
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
  transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.55); }
.btn-secondary {
  display: inline-block;
  background: transparent; border: 1.5px solid var(--gold);
  color: var(--gold); font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.8px; text-transform: uppercase;
  padding: 0.9rem 2rem; border-radius: 3px; text-decoration: none;
  transition: background .2s, color .2s;
}
.btn-secondary:hover { background: var(--gold); color: #080808; }
.hero-book-img {
  width: 100%; max-width: 380px;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.8));
  animation: float 4s ease-in-out infinite;
}
@media(max-width:900px){ .hero-book-img { margin: 0 auto; display: block; } }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ── SECTIONS ── */
.section { padding: 5rem 2rem; }
.section-dark { background: var(--dark2); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  display: block; text-align: center;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--white); text-align: center; margin-bottom: 0.6rem; line-height: 1.25;
}
.section-title em { color: var(--gold); font-style: normal; }
.gold-line { width: 50px; height: 2px; background: var(--gold); margin: 0.7rem auto 2.2rem; }
.section-sub {
  text-align: center; color: var(--text-muted);
  font-size: 0.98rem; font-weight: 300;
  max-width: 620px; margin: 0 auto 3rem;
}

/* ── ABOUT GRID ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
@media(max-width:768px){ .about-grid { grid-template-columns: 1fr; } }
.about-img img { width: 100%; border-radius: var(--radius); border: 1px solid rgba(201,168,76,0.15); }
.about-text h2 {
  font-family: 'Playfair Display', serif; font-size: 1.9rem;
  color: var(--white); margin-bottom: 1rem;
}
.about-text h2 em { color: var(--gold); font-style: normal; }
.about-text p { color: #bbb; margin-bottom: 1rem; font-weight: 300; }
.blockquote {
  border-left: 3px solid var(--gold); padding-left: 1rem;
  color: var(--text); font-style: italic; margin: 1.5rem 0;
  font-size: 1rem;
}

/* ── FEATURE GRID ── */
.feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 1.5rem;
}
.feature-card {
  background: var(--dark3); border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius); padding: 1.8rem; text-align: center;
  transition: border-color .3s, transform .3s;
}
.feature-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.feature-icon { font-size: 2.2rem; margin-bottom: 0.8rem; display: block; }
.feature-card h3 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--white); margin-bottom: 0.5rem; }
.feature-card p { color: #888; font-size: 0.88rem; font-weight: 300; }

/* ── CONTENT LIST ── */
.content-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.content-list li {
  display: flex; gap: 0.8rem; align-items: flex-start;
  background: var(--dark3); border: 1px solid rgba(201,168,76,0.08);
  border-radius: var(--radius); padding: 1rem 1.2rem;
  font-size: 0.95rem; color: #ccc;
}
.content-list li::before {
  content: '✦'; color: var(--gold); font-size: 0.65rem;
  margin-top: 0.35rem; flex-shrink: 0;
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px,1fr)); gap: 1.5rem;
}
.testimonial {
  background: var(--dark3); border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius); padding: 1.8rem;
}
.stars { color: var(--gold); letter-spacing: 2px; font-size: 0.85rem; margin-bottom: 0.7rem; }
.testimonial-text {
  color: #ccc; font-style: italic; font-size: 0.93rem; font-weight: 300; margin-bottom: 1rem;
  position: relative; padding-left: 1.2rem;
}
.testimonial-text::before { content: '"'; color: var(--gold); font-size: 2.5rem; position: absolute; left: -0.2rem; top: -0.5rem; line-height: 1; font-style: normal; }
.testimonial-author { font-weight: 700; color: var(--gold); font-size: 0.85rem; }
.testimonial-role { color: var(--text-muted); font-size: 0.78rem; }

/* ── CTA BOX ── */
.cta-box {
  background: linear-gradient(135deg, #160f00 0%, #261800 50%, #160f00 100%);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius); padding: 3.5rem 2.5rem; text-align: center;
  margin: 0 auto; max-width: 800px;
}
.cta-box h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--white); margin-bottom: 0.8rem; }
.cta-box h2 em { color: var(--gold); font-style: normal; }
.cta-box p { color: #bbb; font-weight: 300; margin-bottom: 2rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-box .btn-primary { font-size: 1rem; padding: 1.1rem 2.8rem; }

/* ── FAQ ── */
.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(201,168,76,0.1); padding: 1.4rem 0; }
.faq-q { font-weight: 700; color: var(--white); margin-bottom: 0.5rem; font-size: 0.98rem; }
.faq-a { color: #999; font-size: 0.9rem; font-weight: 300; }

/* ── LEGAL / STATIC PAGES ── */
.page-hero {
  background: var(--dark2); padding: 4rem 2rem;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: 2.1rem; color: var(--white); max-width: 1000px; margin: 0 auto; }
.page-hero p { color: var(--text-muted); max-width: 1000px; margin: 0.4rem auto 0; }
.legal-content { max-width: 900px; margin: 0 auto; padding: 4rem 2rem; }
.legal-content h2 { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--white); margin: 2rem 0 0.7rem; }
.legal-content p, .legal-content li { color: #bbb; margin-bottom: 0.9rem; font-weight: 300; }
.legal-content ul { padding-left: 1.5rem; }
.legal-content a { color: var(--gold); }

/* ── CONTACT FORM ── */
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-group label { display: block; color: #ccc; font-size: 0.88rem; font-weight: 700; margin-bottom: 0.3rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: var(--dark3);
  border: 1px solid rgba(201,168,76,0.2); color: var(--text);
  font-family: 'Lato', sans-serif; font-size: 0.93rem;
  padding: 0.8rem 1rem; border-radius: 3px; outline: none; transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-submit {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #080808; font-weight: 800; font-size: 0.95rem; letter-spacing: 1px;
  text-transform: uppercase; padding: 1rem 2.2rem; border: none;
  border-radius: 3px; cursor: pointer; transition: opacity .2s; width: fit-content;
}
.form-submit:hover { opacity: 0.88; }

/* ── FOOTER ── */
footer {
  background: #060606; border-top: 1px solid rgba(201,168,76,0.1);
  padding: 3.5rem 2rem 2rem;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem; margin-bottom: 2.5rem;
}
@media(max-width:768px){ .footer-top { grid-template-columns: 1fr 1fr; } }
@media(max-width:480px){ .footer-top { grid-template-columns: 1fr; } }
.footer-brand .logo { display: block; margin-bottom: 0.6rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.83rem; font-weight: 300; }
.footer-col h4 {
  color: var(--gold); font-size: 0.7rem; letter-spacing: 2.5px;
  text-transform: uppercase; margin-bottom: 0.9rem;
}
.footer-col a {
  display: block; color: var(--text-muted); text-decoration: none;
  font-size: 0.83rem; margin-bottom: 0.4rem; transition: color .2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.08);
  padding-top: 1.5rem; text-align: center;
}
.footer-disclaimer { color: #444; font-size: 0.76rem; max-width: 820px; margin: 0 auto 0.8rem; line-height: 1.6; }
.footer-copy { color: #444; font-size: 0.78rem; }

/* ── RESPONSIVE ── */
@media(max-width:600px){
  nav { display: none; }
  .section { padding: 3.5rem 1.2rem; }
  .hero { padding: 3.5rem 1.2rem 2.5rem; }
}
