/* =========================
   BASIS & FARBSYSTEM
   ========================= */

:root {
  --bg: #0f1115;
  --bg-alt: #181b22;
  --accent: #c49a3a;
  --accent-soft: #e0c982;
  --text: #f5f5f5;
  --muted: #b0b3c0;
  --font-serif: "Playfair Display", serif;
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
}

/* =========================
   NAVIGATION & HEADER
   ========================= */

header {
  background: rgba(15, 17, 21, 0.95);
  border-bottom: 1px solid rgba(196, 154, 58, 0.3);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
}
	  .card img {
  width: 100%;
  max-width: 180px;   /* Größe hier anpassen */
  height: auto;
  display: block;
  margin: 0 auto 1rem auto;
  border-radius: 4px;
}


.nav {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--accent-soft);
  letter-spacing: 0.04em;
}

.logo-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.18em;
}

.nav-links a {
  color: var(--muted);
  margin-left: 1.2rem;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
}

.nav-links a:hover {
  color: var(--accent-soft);
}
	  .author-section {
  margin: 3rem auto;
  max-width: 800px;
}

.author-box {
  background: #fff;
  padding: 2rem;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.author-box p {
  margin-bottom: 1rem;
  line-height: 1.6;
}


/* =========================
   LAYOUT
   ========================= */

main {
  max-width: 1300px;
  margin: 0 auto;
  padding: 2rem 1.2rem 4rem;
}

h1, h2, h3 {
  font-family: var(--font-serif);
}

h2 {
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 1rem;
}
	  .book-cover {
  width: 100%;
  max-width: 300px;
  border-radius: 4px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}


/* =========================
   BUTTONS
   ========================= */

.btn-primary {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #1a1205;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  filter: brightness(1.1);
}

.btn-ghost {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent-soft);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
}

.btn-ghost:hover {
  background: rgba(196, 154, 58, 0.1);
}

/* =========================
   HERO – ZWEI AUTOR*INNEN
   ========================= */

.hero-ensemble {
  background: linear-gradient(
      rgba(0,0,0,0.55),
      rgba(0,0,0,0.85)
    ),
    url('header-texture.jpg') center/cover no-repeat;
  padding: 12rem 1.2rem 10rem;
  text-align: center;
  margin: 0 -1.2rem 0;
}

.hero-inner {
  max-width: 700px;
  margin: 0 auto;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.4rem;
  color: var(--accent-soft);
  margin-bottom: 1rem;
}

.hero-tagline {
  font-size: 1.25rem;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* =========================
   AUTOR*INNEN-TEASER
   ========================= */

.authors {
  max-width: 1300px;
  margin: 5rem auto 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.author-box {
  background: var(--bg-alt);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}

.author-box h3 {
  color: var(--accent-soft);
  margin-bottom: 0.5rem;
}

.author-box p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

	  .article-image {
  text-align: center;
  margin: 2rem 0;
}

.article-image img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.article-image figcaption {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.5rem;
}

/* =========================
   NAMEN UNTEN ALS LINKS
   ========================= */

.author-links {
  text-align: center;
  margin: 3rem 0 1rem;
  font-size: 1rem;
  letter-spacing: 0.05em;
  font-family: var(--font-serif);
}

.author-links a {
  color: var(--accent-soft);
  text-decoration: none;
}

.author-links a:hover {
  color: var(--accent);
}

.author-links .divider {
  color: var(--muted);
  margin: 0 0.6rem;
}

/* =========================
   THEMEN / MARKENKERNE
   ========================= */

.themes {
  max-width: 1300px;
  margin: 4rem auto 6rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.theme-box {
  background: var(--bg-alt);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}

.theme-box h3 {
  color: var(--accent-soft);
  margin-bottom: 0.5rem;
}

.theme-box p {
  color: var(--muted);
  line-height: 1.6;
}

/* =========================
   GENERISCHE GRIDS & KARTEN
   ========================= */

.grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  background: var(--bg-alt);
  padding: 1.8rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
}

.card h3 {
  margin-top: 0;
  color: var(--accent-soft);
}

.card p {
  color: var(--muted);
}

/* =========================
   FORMULARE
   ========================= */

form label {
  display: block;
  margin-top: 1rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.12em;
}

input, textarea {
  width: 100%;
  padding: 0.7rem;
  margin-top: 0.3rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: #0c0e12;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.95rem;
}

textarea {
  min-height: 120px;
}

/* =========================
   ABOUT-SEITE
   ========================= */

.page-header {
  text-align: center;
  margin: 4rem 0 3rem;
}

.page-header h1 {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--accent-soft);
  margin-bottom: 0.5rem;
}

.page-sub {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.author-section {
  margin: 5rem 0;
}

.author-section h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.author-section p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 850px;
}

.author-details {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

.detail-box {
  background: var(--bg-alt);
  padding: 1.8rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
}

.detail-box h3 {
  color: var(--accent-soft);
  margin-bottom: 0.5rem;
}

.detail-box p {
  color: var(--muted);
  line-height: 1.6;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .nav-links a {
    margin-left: 0;
    margin-right: 1rem;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-ensemble {
    padding: 8rem 1.2rem 6rem;
  }

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

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

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