/* Behr Consult – Sabine Behr */
@import url('../assets/fonts/fonts.css');

:root {
  --coral: #FF6B7A;
  --magenta: #E84393;
  --magenta-deep: #C2185B;
  --green: #2D6A4F;
  --green-light: #52B788;
  --cream: #FFF8F5;
  --cream-dark: #F5EBE6;
  --ink: #2A2326;
  --ink-muted: #5C5256;
  --white: #FFFFFF;
  --shadow: 0 18px 50px rgba(194, 24, 91, 0.10);
  --shadow-soft: 0 8px 30px rgba(42, 35, 38, 0.06);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1120px;
  --font-body: 'Outfit', system-ui, sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 5rem; }

/* Seminar-Akkordeon (eine Seite) */
.seminar-list { display: flex; flex-direction: column; gap: 1rem; max-width: 900px; margin: 0 auto; }
.seminar-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(232, 67, 147, 0.08);
  overflow: hidden;
}
.seminar-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.5rem 1.75rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.seminar-summary-inner {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  flex: 1;
  min-width: 0;
}
.seminar-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,107,122,0.15), rgba(232,67,147,0.12));
  border: 1px solid rgba(232, 67, 147, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--magenta-deep);
}
.seminar-icon svg { width: 26px; height: 26px; }
.seminar-text { flex: 1; }
.seminar-item summary::-webkit-details-marker { display: none; }
.seminar-item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--magenta);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.seminar-item[open] summary::after { content: '−'; }
.seminar-item[open] summary {
  border-bottom: 1px solid rgba(232, 67, 147, 0.12);
  color: var(--magenta-deep);
}
.seminar-body {
  padding: 1.5rem 1.75rem 1.75rem;
}
.seminar-body .prose h2:first-child { margin-top: 0; }
.seminar-teaser {
  color: var(--ink-muted);
  margin: 0.35rem 0 0;
  font-size: 0.98rem;
  font-family: var(--font-body);
  font-weight: 400;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--cream);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--magenta-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--magenta); }

.container { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 67, 147, 0.12);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 0;
}
.logo-link { display: flex; align-items: center; text-decoration: none; }
.logo-link img, .logo-link svg { height: 46px; width: auto; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: 0.3s;
}

.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--magenta);
  border-bottom-color: var(--coral);
}

/* Hero */
.hero {
  position: relative;
  padding: 4.5rem 0 5rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 107, 122, 0.18), transparent 45%),
    radial-gradient(circle at 10% 80%, rgba(45, 106, 79, 0.10), transparent 40%),
    linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--coral), var(--magenta));
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.12;
  margin: 0 0 1.25rem;
  font-weight: 700;
}
.hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--magenta-deep), var(--coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-lead { font-size: 1.12rem; color: var(--ink-muted); margin-bottom: 1.75rem; }
.hero-quote {
  border-left: 4px solid var(--coral);
  padding-left: 1.25rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--green);
  margin: 0;
}
.hero-image {
  position: relative;
}
.hero-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: auto -12px -12px 12px;
  border: 2px solid rgba(232, 67, 147, 0.35);
  border-radius: var(--radius);
  z-index: -1;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--coral), var(--magenta-deep));
  color: var(--white);
  box-shadow: 0 10px 28px rgba(194, 24, 91, 0.25);
}
.btn-primary:hover { transform: translateY(-2px); color: var(--white); box-shadow: 0 14px 36px rgba(194, 24, 91, 0.32); }
.btn-outline {
  background: transparent;
  color: var(--magenta-deep);
  border: 2px solid rgba(232, 67, 147, 0.45);
}
.btn-outline:hover { background: rgba(232, 67, 147, 0.08); color: var(--magenta-deep); }
.btn-group { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.75rem; }

/* Sections */
section { padding: 4.5rem 0; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 0.75rem;
  font-weight: 700;
}
.section-header p { color: var(--ink-muted); margin: 0; }
.section-alt { background: var(--white); }

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(232, 67, 147, 0.08);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--coral), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
}
.card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0 0 0.65rem;
  line-height: 1.25;
}
.card p { color: var(--ink-muted); margin: 0 0 1.25rem; flex-grow: 1; font-size: 0.98rem; }
.card-link {
  font-weight: 600;
  text-decoration: none;
  color: var(--magenta-deep);
}
.card-link:hover { color: var(--coral); }

/* Book highlight */
.book-section {
  background: linear-gradient(135deg, rgba(255,107,122,0.08) 0%, rgba(232,67,147,0.06) 50%, rgba(45,106,79,0.06) 100%);
}
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3rem;
  align-items: start;
}
.book-visual {
  position: sticky;
  top: 5.5rem;
}
.book-headline {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, var(--magenta-deep), var(--coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.book-photo-wrap {
  position: relative;
  margin-bottom: 1.25rem;
}
.book-photo-wrap img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}
.book-photo-wrap::after {
  content: '';
  position: absolute;
  inset: auto -14px -14px 14px;
  border: 2px solid rgba(232, 67, 147, 0.3);
  border-radius: var(--radius);
  z-index: -1;
}
.book-cover-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.35rem;
  line-height: 1.25;
}
.book-cover-sub {
  font-size: 0.98rem;
  color: var(--ink-muted);
  margin: 0 0 1rem;
  font-style: italic;
}
.book-isbn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--ink-muted);
  box-shadow: var(--shadow-soft);
}
.book-isbn-left { margin-top: 0.25rem; }
.book-retailers { margin-top: 1.5rem; }
.book-retailers-label {
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--magenta-deep);
  margin: 0 0 0.85rem;
}
.book-retailer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.book-retailer {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid rgba(232, 67, 147, 0.12);
  border-radius: var(--radius-sm);
  padding: 0.65rem 1rem;
  min-height: 52px;
  min-width: 130px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  text-decoration: none;
}
.book-retailer:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(232, 67, 147, 0.35);
}
.book-retailer img {
  height: 28px;
  width: auto;
  max-width: 120px;
}
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.35rem;
}
.footer-social img { width: 22px; height: 22px; }
.book-lead {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-top: 0;
  line-height: 1.35;
}

/* Page hero (inner pages) */
.page-hero {
  padding: 3.5rem 0 2.5rem;
  background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin: 0 0 0.75rem;
}
.page-hero .subtitle {
  font-size: 1.15rem;
  color: var(--ink-muted);
  max-width: 640px;
  margin: 0;
}

/* Content prose */
.prose { max-width: 760px; }
.prose-wide { max-width: 900px; }
.prose h2 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  margin: 2.5rem 0 1rem;
  color: var(--ink);
}
.prose h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
  color: var(--magenta-deep);
}
.prose p { margin: 0 0 1.15rem; }
.prose ul, .prose ol {
  margin: 0 0 1.25rem;
  padding-left: 1.35rem;
}
.prose li { margin-bottom: 0.45rem; }
.prose li::marker { color: var(--coral); }
.prose strong { color: var(--ink); font-weight: 600; }

.content-with-image {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: stretch;
}
.content-with-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.about-sidebar {
  position: sticky;
  top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.about-sidebar > img {
  width: 100%;
  flex: 1 1 auto;
  min-height: 280px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
  object-position: center top;
}
.about-contact-btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.25rem;
}
.linkedin-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(10, 102, 194, 0.15);
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.linkedin-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(10, 102, 194, 0.35);
  color: var(--ink);
}
.linkedin-card img { width: 36px; height: 36px; flex-shrink: 0; }
.linkedin-card strong { display: block; font-size: 1rem; }
.linkedin-card small { display: block; font-size: 0.85rem; color: var(--ink-muted); margin-top: 0.15rem; }

/* About lists */
.info-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--coral);
}
.info-block h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0 0 0.85rem;
  color: var(--magenta-deep);
}
.info-block ul { margin: 0; padding-left: 1.2rem; }
.info-block li { margin-bottom: 0.4rem; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}
.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0 0 1rem;
}
.contact-item { margin-bottom: 0.85rem; }
.contact-item strong { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--magenta); margin-bottom: 0.15rem; }

/* Referenzen */
.ref-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: start;
}
.ref-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.ref-sidebar {
  position: sticky;
  top: 6rem;
}
.ref-sidebar img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.ref-sidebar-caption {
  margin: 1rem 0 0;
  font-size: 0.92rem;
  color: var(--ink-muted);
  text-align: center;
  line-height: 1.5;
}
.ref-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.75rem 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(232, 67, 147, 0.08);
  position: relative;
}
.ref-card::before {
  content: '„';
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--coral);
  opacity: 0.25;
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
}
.ref-card blockquote {
  margin: 0 0 1rem;
  padding: 0;
  border: none;
  font-size: 0.98rem;
  color: var(--ink-muted);
  position: relative;
  z-index: 1;
}
.ref-card cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.92rem;
}
.ref-card cite span {
  display: block;
  font-weight: 400;
  color: var(--magenta-deep);
  font-size: 0.85rem;
  margin-top: 0.2rem;
}
.ref-card-accent {
  border-left: 4px solid var(--coral);
}

/* Rechtliches */
.legal-section { padding: 3.5rem 0; }
.legal-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.25rem);
  margin: 0 0 1.5rem;
}
.legal-prose {
  max-width: 820px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-muted);
}
.legal-prose h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
  margin: 2rem 0 0.65rem;
}
.legal-prose p, .legal-prose ul { margin: 0 0 1rem; }
.legal-prose ul { padding-left: 1.25rem; }
.legal-prose a { word-break: break-word; }
.legal-prose .legal-box {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--coral);
  color: var(--ink);
  margin-bottom: 1.5rem;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.82);
  padding: 3rem 0 2rem;
  margin-top: 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.site-footer h4 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.85rem;
}
.site-footer a { color: rgba(255,255,255,0.75); text-decoration: none; }
.site-footer a:hover { color: var(--coral); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.45rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.5rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid, .book-grid, .content-with-image, .ref-layout, .contact-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .book-visual { position: static; }
  .about-sidebar, .ref-sidebar { position: static; }
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(232,67,147,0.12);
    padding: 1rem 1.25rem 1.25rem;
    display: none;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0.25rem; }
  .main-nav a { display: block; padding: 0.65rem 0; }
  .site-header .container { position: relative; }
}

@media (max-width: 600px) {
  section { padding: 3rem 0; }
  .hero { padding: 3rem 0; }
}
