:root {
  --bg:        #FFFFFF;
  --surface:   #F9F5FF;
  --violet:    #6B3FA0;
  --violet-d:  #800080;
  --violet-l:  #B07DD0;
  --violet-lt: #F0E6FF;
  --rose:      #F5E0F5;
  --text:      #1A1A2E;
  --muted:     #7A6E8A;
  --line:      #EAE0F5;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

.footer {
    display: flex;
    flex-direction: row;
    flex-grow: 1;   
    width: 100%;
    height: 150px;
    background: #800080;
}

.footer .footer-logo img {
    width: 100px;
    margin: 10px 50px 10px 50px;
    flex: 2;
}

.footer .footer-content {
    flex: 1;
}

/* ── DECORATIVE BLOSSOMS ── */
 

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 6vw;
}

.nav-owl-name {
  display: flex;
}

.nav-logo {
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--violet-d);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.logo-owl { flex-shrink: 0; }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--violet-d);
  border-radius: 2px;
  transition: width .2s;
}
.nav-links a:hover { color: var(--violet-d); }
.nav-links a:hover::after { width: 100%; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
}
.burger span { display: block; width: 20px; height: 1.5px; background: var(--text); border-radius: 2px; }

/* ── HERO ── */
#hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr clamp(220px, 28vw, 380px);
  align-items: center;
  padding: 7rem 6vw 4rem;
  gap: clamp(2rem, 4vw, 5rem);
  background: linear-gradient(150deg, #fff 50%, var(--violet-lt) 100%);
}

.hero-text { display: flex; flex-direction: column; }

.hero-label {
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--violet-d);
  margin-bottom: 1rem;
}

.hero-name {
  font-size: clamp(3rem, 5vw, 5.8rem);
  font-weight: 700;
  line-height: 1.0;
  color: var(--text);
  margin-bottom: 1.2rem;
}
.hero-name span { color: var(--violet-d); }

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 400px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-links a {
  font-size: .82rem;
  font-weight: 400;
  color: var(--bg);
  text-decoration: none;
  padding: .55rem 1.4rem;
  border: 1.5px solid var(--violet-d);
  border-radius: 50px;
  transition: background .2s, color .2s;
  background-color: var(--violet-d);
}
.hero-links a:hover {
  background: var(--bg);
  color: var(--violet-d);
}

.hero-image {
  position: relative;
  align-self: center;
}
.hero-image img {
  width: 100%;
  max-height: 70vh;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 12px;
  border: 2px solid var(--line);
}
.hero-flower {
  position: absolute;
  bottom: -20px;
  right: -20px;
}

/* ── SECTIONS ── */
.section { position: relative; z-index: 1; padding: 6rem 6vw; overflow: visible; }
.section-inner { position: relative; z-index: 1; }
.section-light  { background: #fff; }
.section-tinted { background: var(--surface); }
.section-violet { background: var(--violet-d); color: #fff; }

.section-inner { max-width: 920px; margin: 0 auto; }
.section-head  { margin-bottom: 3rem; }

.sec-label {
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--violet-l);
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.section-violet .sec-label { color: rgba(255,255,255,.6); }

.sec-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
}
.sec-title span { color: var(--violet-d); font-weight: 300; }
.section-violet .sec-title { color: #fff; }
.section-violet .sec-title span { color: rgba(255,255,255,.6); }

.lead {
  font-size: .97rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* ── ARTIKEL ── */
.articles-list { display: flex; flex-direction: column; }

.article-row {
  display: grid;
  grid-template-columns: 3rem 1fr 1.5rem;
  gap: 1.8rem;
  align-items: start;
  padding: 1.5rem 1rem;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  border-radius: 8px;
  transition: background .2s;
}
.article-row:first-child { border-top: 1px solid var(--line); }
.article-row:hover { background: var(--rose); }
.article-row:hover .art-title { color: var(--violet-d); }
.article-row:hover .art-arrow { color: var(--violet-d); }

.art-num { font-size: .72rem; font-weight: 400; color: var(--violet-l); padding-top: .2rem; letter-spacing: .1em; }
.art-cat { font-size: .7rem; font-weight: 400; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-bottom: .3rem; }
.art-title { font-size: 1.05rem; font-weight: 400; color: var(--text); margin-bottom: .3rem; transition: color .2s; }
.art-excerpt { font-size: .83rem; font-weight: 300; color: var(--muted); line-height: 1.65; }
.art-arrow { font-size: .95rem; color: var(--line); padding-top: .2rem; transition: color .2s; }

/* ── BÜCHER ── */
.books-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.book-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, border-color .25s;
}
.book-card:hover {
  border-color: var(--violet-l);
  box-shadow: 0 4px 16px rgba(128,0,128,.1);
}
.book-cover {
  background: var(--c, #6B3FA0);
  padding: 1.6rem 1.4rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .4rem;
  min-height: 100px;
}
.book-cover-icon { font-size: 1.8rem; }
.book-cover-label {
  font-size: .62rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}
.book-body { padding: 1.3rem 1.3rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.book-type { font-size: .65rem; font-weight: 400; letter-spacing: .18em; text-transform: uppercase; color: var(--violet-d); margin-bottom: .5rem; }
.book-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: .45rem; }
.book-desc { font-size: .82rem; font-weight: 300; color: var(--muted); line-height: 1.65; flex: 1; }

.callout {
  margin-top: 2rem;
  padding: 2rem 2.2rem;
  background: var(--violet-d);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.callout-owl { flex-shrink: 0; }
.callout h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: .25rem; }
.callout p { font-size: .85rem; color: rgba(255,255,255,.7); }
.callout > div:not(.callout-owl) { flex: 1; }

.btn-violet {
  flex-shrink: 0;
  padding: .65rem 1.6rem;
  background: #fff;
  color: var(--violet-d);
  text-decoration: none;
  font-size: .8rem;
  font-weight: 700;
  border-radius: 50px;
  white-space: nowrap;
  transition: opacity .2s;
}
.btn-violet:hover { opacity: .85; }

/* ── STRICKEN ── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.project-card {
  border: 1.5px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow .25s, border-color .25s;
}
.project-card:hover {
  border-color: var(--violet-l);
  box-shadow: 0 4px 16px rgba(128,0,128,.08);
}
.proj-img {
  width: 100%;
  aspect-ratio: 1;
  background: var(--violet-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  border-bottom: 1px solid var(--line);
}
.proj-info { padding: 1.1rem 1.2rem 1.4rem; }
.proj-name { font-size: .95rem; font-weight: 700; margin-bottom: .3rem; }
.proj-detail { font-size: .78rem; font-weight: 300; color: var(--muted); }

/* ── SEE MORE ── */
.hidden { display: none !important; }

.see-more-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.4rem;
  margin-bottom: 2rem;
  padding: .6rem 1.5rem;
  background: none;
  border: 1.5px solid var(--violet-d);
  color: var(--violet-d);
  font-family: 'Roboto', sans-serif;
  font-size: .82rem;
  font-weight: 400;
  border-radius: 50px;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.see-more-btn:hover { background: var(--violet-d); color: #fff; }

/* ── ÜBER MICH ── */
.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}
.about-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,.3);
}
.about-text p {
  font-size: .95rem;
  font-weight: 300;
  color: rgba(255,255,255,.8);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.about-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.8rem; }
.tag {
  font-size: .72rem;
  font-weight: 400;
  padding: .35rem 1rem;
  border: 1px solid rgba(255,255,255,.35);
  color: rgba(255,255,255,.85);
  border-radius: 50px;
  transition: background .2s;
}
.tag:hover { background: rgba(255,255,255,.15); }

/* ── KONTAKT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.contact-left .lead { color: var(--muted); margin-bottom: 2rem; }
.contact-links { display: flex; flex-direction: column; gap: .7rem; }
.contact-link {
  font-size: .85rem;
  font-weight: 400;
  color: var(--violet-d);
  text-decoration: none;
  transition: opacity .2s;
}
.contact-link:hover { opacity: .65; }

.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-field { display: flex; flex-direction: column; gap: .35rem; }
.form-field label {
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-field input,
.form-field textarea {
  background: #fff;
  border: 1.5px solid var(--line);
  padding: .75rem 1rem;
  color: var(--text);
  font-family: 'Roboto', sans-serif;
  font-size: .88rem;
  font-weight: 300;
  outline: none;
  transition: border-color .2s;
  resize: none;
  border-radius: 8px;
}
.form-field input:focus,
.form-field textarea:focus { border-color: var(--violet-d); }
.form-field input::placeholder,
.form-field textarea::placeholder { color: #C8B8E0; }

.btn-send {
  align-self: flex-start;
  padding: .75rem 2rem;
  background: var(--violet-d);
  color: #fff;
  border: none;
  font-family: 'Roboto', sans-serif;
  font-size: .82rem;
  font-weight: 400;
  border-radius: 50px;
  cursor: pointer;
  transition: opacity .2s;
}
.btn-send:hover { opacity: .85; }

/* ── FOOTER ── */
footer {
  background: var(--violet-d);
  padding: 1.8rem 6vw;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  color: rgba(255,255,255,.55);
  font-size: .78rem;
  font-weight: 300;
  letter-spacing: .1em;
}


/* ── INLINE FLOWERS ── */
.flower-left,
.flower-right {
  position: absolute;
  top: 3.5rem;
  z-index: 0;
  pointer-events: none;
  line-height: 0;
}
/* Desktop: links & rechts abwechselnd */
.flower-left  { left:  100px; }
.flower-right { right: 100px; }

/* Tablet & Handy: nur rechts */
@media (max-width: 1024px) {
  .flower-left { display: none; }
}

.hero-flower {
  position: absolute;
  bottom: -40px;
  right: -40px;
  z-index: 2;
}

/* ── OWL DECOS ── */
.owl-deco {
  display: block;
  filter: drop-shadow(0 4px 8px rgba(128,0,128,.2));
}
.callout-owl .owl-deco {
  width: 64px;
  height: auto;
}

.owl-corner-left,
.owl-corner-right {
  display: flex;
  margin-bottom: 1rem;
}
.owl-corner-left  { justify-content: flex-start; }
.owl-corner-right { justify-content: flex-end; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .burger { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: 0;
    height: 100vh; width: 210px;
    background: #fff;
    flex-direction: column; justify-content: center;
    padding: 2rem; gap: 2rem;
    transform: translateX(100%); transition: transform .35s;
    border-left: 1px solid var(--line); z-index: 300;
  }
  .nav-links.open { transform: translateX(0); }

  #hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 6rem;
    gap: 2rem;
  }
  .hero-image { max-width: 240px; }
  .hero-image img { max-height: 320px; }
  .hero-flower { display: none; }
  .deco { display: none; }

  .books-grid,
  .projects-grid,
  .about-grid,
  .contact-grid,
  .form-row { grid-template-columns: 1fr; }

  .callout { flex-direction: column; align-items: flex-start; }
  .section { padding: 4rem 1.5rem; }
}