/* ==========================================================================
   bannerfritz.de — Branchenbuch
   Styling im Fineart-Pro-Look (dunkel, Serife, Gold-Akzent)
   ========================================================================== */

:root {
  --bg: #0B0B0C;
  --bg-card: #17171A;
  --ink: #E8E4DD;
  --ink-dim: #9B9690;
  --ink-mute: #6B665F;
  --accent: #D4B483;
  --accent-2: #E84A3F;
  --line: rgba(232, 228, 221, 0.12);
  --serif: 'DM Serif Display', 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 3px;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; }

.page {
  max-width: 820px;
  margin: 0 auto;
  padding: 72px 28px 56px;
}

/* ----- Logo-Balken ----- */
.bars {
  display: flex;
  gap: 3px;
  justify-content: center;
  margin-bottom: 30px;
}
.bars i { display: block; width: 7px; height: 34px; background: var(--accent); }
.bars i:nth-child(2) { width: 3px; background: var(--ink); }
.bars i:nth-child(3) { width: 5px; background: var(--accent-2); }

/* ----- Hinweis ----- */
.hinweis {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 44px;
}

/* ----- Hero ----- */
.hero { text-align: center; margin-bottom: 30px; }
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(46px, 9vw, 82px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero .sub {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 20px;
}
.intro {
  font-size: 16px;
  color: var(--ink-dim);
  line-height: 1.75;
  text-align: center;
  max-width: 610px;
  margin: 28px auto 64px;
}

/* ----- Sektion ----- */
.section { margin-bottom: 56px; }
.section-label {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 36px);
  text-align: center;
  letter-spacing: -0.015em;
  margin: 0 0 34px;
}

/* ----- Eintrag (Karte) ----- */
.entry {
  display: block;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(135deg, rgba(212, 180, 131, 0.08), rgba(17, 17, 20, 1));
  border: 1px solid rgba(212, 180, 131, 0.2);
  border-radius: var(--radius);
  padding: 28px 30px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 0.35s ease, background 0.35s ease;
}
.entry::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.entry:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 180, 131, 0.45);
  background: #1C1C1F;
}
.entry:hover::before { transform: scaleX(1); }

.entry-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.entry-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 25px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.entry-arrow {
  font-size: 15px;
  color: var(--ink-mute);
  transition: color 0.25s, transform 0.25s;
}
.entry:hover .entry-arrow { color: var(--accent); transform: translate(3px, -3px); }

.entry-tag {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 9px 0 14px;
}
.entry-text {
  font-size: 14.5px;
  color: var(--ink-dim);
  line-height: 1.72;
  margin: 0;
}

/* ----- Kontakt ----- */
.kontakt {
  text-align: center;
  border-top: 1px solid var(--line);
  padding-top: 52px;
}
.kontakt h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
}
.kontakt .addr { color: var(--ink); font-size: 15px; line-height: 1.7; margin: 0 0 18px; }
.kontakt .lines { display: inline-flex; flex-direction: column; gap: 6px; text-align: left; }
.kontakt .lines span { font-size: 14px; color: var(--ink-dim); }
.kontakt .lines b {
  color: var(--ink-mute);
  font-weight: 400;
  display: inline-block;
  width: 22px;
}
.kontakt a { color: var(--accent); text-decoration: none; }
.kontakt a:hover { text-decoration: underline; }

/* ----- Footer ----- */
.foot {
  text-align: center;
  margin-top: 52px;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
}

@media (max-width: 520px) {
  .page { padding: 52px 20px 44px; }
  .entry { padding: 24px 22px; }
  .entry-name { font-size: 22px; }
}
