:root {
  --accent: #8b1a1a;
  --accent-light: #c0392b;
  --dark: #1a1a1a;
  --text: #2c2c2c;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', serif;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ── Navbar ── */
.navbar {
  background-color: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(6px);
}

.navbar-brand {
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: #e8d5b7 !important;
}

.navbar-nav .nav-link {
  color: #ccc !important;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  transition: color 0.2s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #e8d5b7 !important;
}

.navbar-toggler {
  border-color: rgba(200,200,200,0.4);
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* ── Hero ── */
#hero {
  min-height: 100vh;
  background-image: url('img/hero.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.7) 100%);
}

#hero .hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
}

#hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

#hero .subtitle {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: #e8d5b7;
  font-weight: 300;
  letter-spacing: 0.08em;
}

#hero blockquote {
  border-left: 4px solid #e8d5b7;
  padding-left: 1.5rem;
  font-style: italic;
  color: #fff;
  font-size: clamp(1.2rem, 2.8vw, 1.7rem);
  max-width: 680px;
  line-height: 1.5;
}

#hero blockquote p {
  margin-bottom: 0.6rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

#hero blockquote footer {
  font-size: 0.82rem;
  color: rgba(232, 213, 183, 0.75);
  letter-spacing: 0.04em;
  background: none;
  padding: 0;
}

/* ── Sections ── */
section {
  padding: 80px 0;
}

section:nth-child(even) {
  background-color: #f8f5f0;
}

.section-title {
  font-size: 2rem;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 0.3rem;
  letter-spacing: 0.02em;
}

.section-divider {
  width: 50px;
  height: 2px;
  background-color: var(--accent);
  margin-bottom: 2rem;
}

/* ── Konzept-Cards ── */
.konzept-card {
  border: none;
  border-top: 3px solid var(--accent);
  border-radius: 0;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 2rem;
  height: 100%;
  transition: box-shadow 0.2s;
}

.konzept-card:hover {
  box-shadow: 0 6px 24px rgba(139,26,26,0.12);
}

.konzept-card h3 {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.konzept-card .leitfrage {
  font-style: italic;
  color: #666;
  font-size: 0.95rem;
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid #eee;
}

/* ── Formate / Anlässe ── */
.format-list {
  list-style: none;
  padding: 0;
}

.format-list li {
  padding: 0.35rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.format-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

/* ── Vita ── */
#vita .portrait-wrap {
  position: sticky;
  top: 90px;
}

#vita img {
  width: 100%;
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

#vita .col-md-8 p {
  margin-bottom: 0.5em;
}

/* ── Publikationen ── */
.pub-item {
  padding: 1rem 0;
  border-bottom: 1px solid #e0d9d0;
}

.pub-item:last-child {
  border-bottom: none;
}

/* ── Kontakt ── */
#kontakt {
  background-color: var(--dark);
  color: #ccc;
}

#kontakt .section-title {
  color: #e8d5b7;
}

#kontakt .section-divider {
  background-color: #e8d5b7;
}

#kontakt a {
  color: #e8d5b7;
  text-decoration: none;
}

#kontakt a:hover {
  text-decoration: underline;
}

#kontakt address {
  font-style: normal;
  line-height: 2;
}

/* ── Footer ── */
footer.site-footer {
  background-color: #111;
  color: #555;
  font-size: 0.8rem;
  padding: 1.2rem 0;
  text-align: center;
}

/* ── Scrollspy active ── */
.nav-link.active {
  color: #e8d5b7 !important;
}

/* ── Inline-Styles ausgelagert ── */
.skulptur-img {
  max-width: 340px;
  width: 100%;
  height: auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.format-heading {
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #555;
}

#kontakt address strong {
  color: #e8d5b7;
}
