/* ==== GLOBAL ==== */
html, body {
  height: 100%;
}
body {
  margin: 0;
  color: #eee8dc;
  background:
    radial-gradient(1200px 800px at 15% -10%, rgba(66,51,33,.35) 0%, transparent 60%) no-repeat,
    radial-gradient(900px 600px at 110% 10%, rgba(30,25,20,.4) 0%, transparent 65%) no-repeat,
    linear-gradient(180deg, #161310 0%, #0f0d0b 100%);
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ==== HEADER ==== */
header {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 20px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #f4ead6;
}
.crest {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #3e2e1c 0%, #2a1f14 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12), 0 12px 28px rgba(0,0,0,.45);
}
.crest svg {
  width: 26px;
  height: 26px;
  display: block;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,.4));
}
.nav a {
  color: #d5c29c;
  text-decoration: none;
  margin-left: 16px;
  font-size: .9rem;
}
.nav a:hover { color: #fff; }

/* ==== INDEX-SEITE ==== */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 20px 10px;
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(280px, .9fr);
  gap: 32px;
  align-items: center;
}
.hero-text h1 {
  margin: 0 0 10px 0;
  font-size: clamp(30px, 5.2vw, 54px);
  line-height: 1.05;
  color: #f7efe0;
  letter-spacing: .5px;
  text-shadow: 0 2px 0 rgba(0,0,0,.3);
}
.hero-text p.lead {
  margin: 0 0 14px 0;
  color: #e3d8c3;
  opacity: .9;
  font-size: clamp(15px, 2.3vw, 19px);
}
.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 20px;
}
.tag {
  background: rgba(215,181,112,.08);
  border: 1px solid rgba(215,181,112,.3);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: .78rem;
  letter-spacing: .1px;
  color: #f3e4c4;
}
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  color: #1b1712;
  background: linear-gradient(180deg, #d6b676 0%, #b89249 100%);
  font-weight: 700;
  letter-spacing: .3px;
  box-shadow: 0 14px 30px rgba(185,146,73,.35),
              inset 0 0 0 1px rgba(0,0,0,.15);
  transition: transform .06s ease, box-shadow .2s ease;
}
.cta:hover { transform: translateY(-1px); box-shadow: 0 18px 36px rgba(185,146,73,.45); }

.hero-graphic {
  background: linear-gradient(185deg, rgba(255,255,255,.04), rgba(0,0,0,0));
  border: 1px solid rgba(255,255,255,.04);
  border-radius: 16px;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  box-shadow: 0 22px 45px rgba(0,0,0,.35);
}
.hero-graphic img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==== CONTENT-BEREICH ==== */
.content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 20px 44px;
  display: grid;
  grid-template-columns: minmax(0, .62fr) minmax(0, .38fr);
  gap: 28px;
}
.card {
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
  border: 1px solid rgba(255,255,255,.04);
  border-radius: 14px;
  padding: 20px 22px 22px;
  box-shadow: 0 18px 42px rgba(0,0,0,.35);
}
.card h2 {
  margin-top: 0;
  font-size: 1.15rem;
  color: #f6eddc;
}

/* ==== IMPRESSUM / DATENSCHUTZ ==== */
main.page {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 40px 20px 60px;
}
.page .card {
  width: 100%;
  max-width: 900px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 34px;
  box-shadow: 0 30px 60px rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
}

/* ==== FOOTER ==== */
footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 20px 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.03);
  color: #cdbf9f;
  font-size: .85rem;
}
.footer-links a {
  color: #cdbf9f;
  text-decoration: none;
  margin-left: 14px;
}
.footer-links a:hover { color: #fff; }

/* ==== RESPONSIVE ==== */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  .content { grid-template-columns: 1fr; }
  .hero-graphic { order: -1; }
}
@media (max-width: 540px) {
  header {
    flex-direction: column;
    gap: 10px;
  }
  .nav { display: flex; gap: 12px; }
  .card { padding: 26px; }
}

/* ==== LINKS – GOLD-EDITION ==== */
a {
  position: relative;
  color: #d6b676;
  text-decoration: none;
  transition: color .25s ease;
}

a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1px;
  background: linear-gradient(90deg, rgba(214,182,118,0), rgba(214,182,118,0.9), rgba(214,182,118,0));
  transition: width .35s ease;
}

a:hover,
a:focus {
  color: #f5dba2;
}

a:hover::after,
a:focus::after {
  width: 100%;
}

/* ==== CARD LINKS ==== */
.card a {
  color: #d6b676 !important;
}
.card a:hover {
  color: #f5dba2 !important;
}

/* ==== FOOTER LINKS ==== */
.footer-links a {
  position: relative;
  color: #cdbf9f;
  text-decoration: none;
  transition: color .25s ease;
}
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1px;
  background: linear-gradient(90deg, rgba(205,191,159,0), rgba(255,255,255,0.8), rgba(205,191,159,0));
  transition: width .35s ease;
}
.footer-links a:hover {
  color: #fff;
}
.footer-links a:hover::after {
  width: 100%;
}

/* ==== H2 – EDLER GOLD-STREIF ==== */
h2 {
  position: relative;
  color: #f6eddc;
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 1.15rem;
  letter-spacing: .2px;
  padding-bottom: 6px;
}

h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, rgba(214,182,118,0), rgba(214,182,118,0.8), rgba(214,182,118,0));
  box-shadow: 0 0 6px rgba(214,182,118,.35);
  border-radius: 1px;
}

/* ==== H1 – GOLDENE LINIE & GLANZ ==== */
h1 {
  position: relative;
  margin: 0 0 14px 0;
  font-size: clamp(30px, 6vw, 48px);
  line-height: 1.1;
  color: #f7efe0;
  letter-spacing: .6px;
  text-shadow: 0 2px 2px rgba(0,0,0,.4);
  text-align: left;
  padding-bottom: 10px;
}

h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 140px;
  height: 2px;
  background: linear-gradient(90deg,
    rgba(214,182,118,0),
    rgba(214,182,118,0.9),
    rgba(214,182,118,0));
  box-shadow: 0 0 8px rgba(214,182,118,.45);
  border-radius: 2px;
}

/* ==== DROPCAP – NUR IM ERSTEN LESEABSATZ ==== */

/* DROP CAP — nur wenn p.dropcap gesetzt ist */
p.dropcap:first-letter {
  float: left;
  font-size: 2.8rem;
  line-height: 1;
  margin-right: 8px;
  margin-top: 4px;
  font-weight: bold;
  color: #d6b676;
  text-shadow: 0 0 6px rgba(214,182,118,.3);
}

/* ==== VORWORT ==== */
#vorwort {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}
#vorwort .card {
  width: 100%;
  max-width: 900px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 34px;
  box-shadow: 0 30px 60px rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
}
#vorwort h2 {
  margin-top: 0;
  font-size: 1.3rem;
  color: #f6eddc;
  letter-spacing: 0.3px;
}
#vorwort .small {
  color: #cdbf9f;
  margin-top: -6px;
  margin-bottom: 14px;
}
#vorwort em {
  color: #d6b676;
}


