/* ── Fonts (lokal) ── */

@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: url('fonts/fraunces.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/inter-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/inter-700.woff2') format('woff2');
}

:root {
  --navy:        #1E2530;
  --navy-dark:   #171C24;
  --lime:        #C9CA45;
  --lime-dark:   #9CA02E;
  --bg:          #FAFAF6;
  --card-border: #E7E6DD;
  --text:        #1E2530;
  --text-muted:  #80847A;
  --tag-bg:      #F0F1E6;
  --tag-text:    #6E7050;

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ── */

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.site-header .logo img {
  height: 40px;
  width: auto;
  border-radius: 3px;
}

/* ── Desktop-Navigation ── */

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.site-nav a {
  font-size: 14px;
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.15s ease;
}

.site-nav a:hover {
  color: var(--navy);
}

/* ── Hamburger-Button (nur Mobile) ── */

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--navy);
}

.nav-toggle svg {
  display: block;
  width: 24px;
  height: 24px;
}

/* ── Mobile-Overlay-Menü ── */

@media (max-width: 700px) {
  .site-nav {
    position: fixed;
    inset: 0;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: all;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .site-nav a {
    font-size: 22px;
    color: #FFFFFF;
    font-weight: 600;
  }

  .site-nav a:hover {
    color: var(--lime);
  }

  .nav-toggle {
    display: block;
    z-index: 200;
    position: relative;
  }

  /* Schließen-X wenn offen */
  .nav-toggle.is-open {
    position: fixed;
    top: 20px;
    right: 24px;
    color: #FFFFFF;
  }
}

/* ── Hero ── */

.hero {
  position: relative;
  background: #2E3D52;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  right: -10%;
  top: -25%;
  width: 60%;
  max-width: 520px;
  height: 140%;
  background: var(--lime);
  clip-path: polygon(35% 100%, 100% 100%, 100% 0%);
}

.hero-shape.shape-dark {
  background: var(--lime-dark);
  clip-path: polygon(35% 100%, 60% 0%, 0% 0%);
}

.hero-inner {
  position: relative;
  padding: 72px 24px;
  max-width: 640px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #D7D9C9;
  margin: 0 0 16px!important;
  font-weight: 600;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  color: #FFFFFF;
  margin: 0 0 18px;
  line-height: 1.35;
}

.hero p {
  font-size: 15px;
  color: #C9CCC0;
  line-height: 1.8;
  margin: 0;
  text-shadow: 0 0 10px black;
}

/* ── Sections ── */

.section {
  padding: 56px 0 0;
}

.section:last-of-type {
  padding-bottom: 56px;
}

.section-eyebrow {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--lime-dark);
  font-weight: 700;
  margin: 0 0 12px;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
}

.section-icon {
  width: 40px;
  height: 40px;
  background: var(--lime);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.section-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--navy);
}

.section-heading h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}

p.lead {
  color: var(--navy);
  line-height: 1.85;
  margin: 0 0 14px;
  max-width: 740px;
}

p.lead:last-of-type {
  margin-bottom: 0;
}

/* ── Typische Anlässe (kein Box-Rahmen) ── */

.anlasse-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--lime-dark);
  margin: 22px 0 12px;
}

.anlasse-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.anlasse-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--navy);
  line-height: 1.5;
}

.anlasse-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
  margin-top: 5px; /* vertikale Ausrichtung oben */
}

/* ── Über mich Box ── */

.about-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--card-border);
}

.about-photo {
  background: url(munderloh-portrait.jpg);
  background-size: contain;
  border-radius: var(--radius-lg);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime-dark);
  font-size: 13px;
  text-align: center;
  padding: 16px;
}

.about-grid h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 12px;
}

.about-grid p {
  font-size: 15px;
  color: var(--navy);
  line-height: 1.85;
  margin: 0;
}

.about-box {
  background: #FFFFFF;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  margin-top: 4px;
}

.about-box p.lead {
  max-width: none;
}

.werte-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--lime-dark);
  margin: 18px 0 10px;
}

.werte-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.werte-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--navy);
  line-height: 1.5;
}

.werte-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
  margin-top: 5px;
}

.cert-note {
  font-size: 13px;
  font-style: italic;
  color: var(--navy);
  margin: 14px 0 0;
}

/* ── Kontakt ── */

.contact {
  background: #2E3D52;
  margin-top: 64px;
  padding: 64px 24px;
  text-align: center;
}

.contact .section-eyebrow {
  color: var(--lime);
}

.contact h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0 0 16px;
}

.contact p.lead {
  color: #C9CCC0;
  max-width: 520px;
  margin: 0 auto 26px;
  text-align: center;
}

.contact-details p {
  font-size: 16px;
  color: #FFFFFF;
  margin: 0 0 6px;
}

.contact-details {
  margin-bottom: 26px;
}

.btn {
  display: inline-block;
  background: var(--lime);
  color: #3B3C12;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s ease;
}

.btn:hover { background: #d6d75d; }

.btn-hero {
  display: inline-block;
  margin-top: 24px;
}

/* ── Footer ── */

.site-footer {
  background: var(--navy-dark, #171C24);
  color: #888C7C;
  padding: 28px 24px;
  font-size: 12.5px;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-inner .col p {
  margin: 0 0 4px;
  line-height: 1.7;
}

.footer-inner .col:last-child { text-align: left; }

.footer-inner strong { color: #C9CCC0; }

.footer-bottom {
  max-width: 1080px;
  margin: 20px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #6E7060;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom a {
  color: #888C7C;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #C9CCC0;
}

/* ── Rechtliche Seiten (Impressum, Datenschutz) ── */

.legal-page {
  padding: 56px 0 72px;
  max-width: 720px;
}

.legal-page h1 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 40px;
}

.legal-page h2 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin: 36px 0 12px;
}

.legal-page p,
.legal-page li {
  font-size: inherit;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0 0 12px;
}

.legal-page ul {
  padding-left: 20px;
  margin: 0 0 12px;
}

.legal-page li {
  margin-bottom: 6px;
}

.legal-page a {
  color: var(--lime-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-page a:hover {
  color: var(--navy);
}

.legal-date {
  margin-top: 40px;
  font-size: 13px;
  color: #B0B4A8;
}

/* ── Responsive ── */

@media (max-width: 760px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  /* .about-photo { aspect-ratio: 16 / 9; } */

  .footer-inner { flex-direction: column; }
  .footer-inner .col:last-child { text-align: left; }
}
