@charset "UTF-8";
/* BioLaGu – schlanker Jekyll-Nachbau, Farben/Schrift 1:1 aus der Original-Wordpress-Seite übernommen */
:root {
  --green: #5eb55a;
  --green-dark: #4a9a47;
  --text: #4a4e57;
  --heading: #212934;
  --dark: #282c35;
  --gray: #616a7a;
  --bg-light: #f9f9fb;
  --bg-lighter: #f2f3f5;
  --border: #e2e2e2;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  color: var(--heading);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 0.6em;
}

h1 {
  font-size: 2.4rem;
}

h2 {
  font-size: 1.9rem;
}

h3 {
  font-size: 1.4rem;
}

h4 {
  font-size: 1.15rem;
}

p {
  margin: 0 0 1em;
}

a {
  color: var(--green-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.quote {
  font-family: "PT Serif", Georgia, serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--heading);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 12px;
  padding-bottom: 12px;
}

.site-header .logo {
  display: none;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s, opacity 0.15s;
}

.main-nav a:hover,
.main-nav a.active {
  opacity: 0.85;
  border-bottom-color: var(--white);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--heading);
}

/* Hero */
.hero {
  background: var(--white);
  padding: 48px 0 40px;
  text-align: center;
}

.hero .brandmark {
  margin-bottom: 0.6em;
}

.hero .brandmark img {
  height: 90px;
  margin: 0 auto;
}

.hero .sublabel {
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 1.4em;
}

.hero .tagline {
  color: var(--green-dark);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1em;
}

.hero .lead {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--text);
}

/* Leistungsbereich-Kacheln (Land/See) */
.service-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 48px 24px;
}

.service-tile {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.service-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(40, 44, 53, 0.45);
}

.service-tile .tile-inner {
  position: relative;
  z-index: 1;
}

.service-tile .icon {
  font-size: 2.2rem;
  margin-bottom: 0.3em;
  display: block;
}

.service-tile h3 {
  color: var(--white);
  font-family: "PT Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.6rem;
  margin-bottom: 0.2em;
}

.service-tile .eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

/* Zitat-Sektion mit Foto-Hintergrund */
.quote-section {
  position: relative;
  padding: 72px 24px;
  color: var(--heading);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.quote-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
}

.quote-section .quote {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}

.quote-section .quote-credit {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 4px auto 0;
  text-align: left;
  font-size: 12px;
  font-style: italic;
}

/* Team/Referenzen/Auftraggeber Karten */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 24px;
}

.info-card {
  text-align: center;
}

.info-card .card-image {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 3/2;
  margin-bottom: 20px;
}

.info-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-card .credit {
  position: absolute;
  bottom: 8px;
  left: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.info-card h3 {
  font-family: "PT Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--green-dark);
  font-size: 1.5rem;
  margin-bottom: 0.4em;
}

.info-card p {
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 1.4em;
}

.btn-outline {
  display: inline-block;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 10px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--heading);
  text-decoration: none;
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green-dark);
  text-decoration: none;
}

/* Untere Bild-Leiste mit Logo + VBIO-Badge */
.brand-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 32px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 25, 32, 0.25);
}

.brand-banner .banner-logo,
.brand-banner .banner-badge {
  position: relative;
  z-index: 1;
}

.brand-banner .banner-logo img {
  height: 48px;
}

.brand-banner .banner-badge {
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 6px;
  padding: 8px 14px;
}

.brand-banner .banner-badge p {
  margin: 0 0 4px;
  font-size: 0.7rem;
  color: var(--heading);
}

.brand-banner .banner-badge img {
  height: 30px;
}

/* Content-Sections (generische Seiten) */
.interior-banner {
  background-size: cover;
  background-position: center center;
  padding-top: 9vw;
  padding-bottom: 9vw;
  border-radius: 6px;
}

.page-header {
  background: var(--bg-light);
  padding: 40px 0 36px;
  text-align: center;
}

.page-header .brandmark img {
  height: 60px;
  margin: 0 auto 0.4em;
}

.page-header .sublabel {
  color: var(--gray);
  font-size: 0.85rem;
  margin-bottom: 0.8em;
}

.page-header h1 {
  font-family: "PT Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--green-dark);
  font-size: 1.8rem;
  margin-bottom: 0.2em;
}

.page-header p.lead {
  color: var(--gray);
  margin-top: 0.4em;
}

.section {
  padding: 48px 0;
}

.section + .section {
  border-top: 1px solid var(--border);
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 800px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}
.team-member {
  text-align: left;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.team-member img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.team-member .member-info {
  padding: 14px 16px 18px;
}

.team-member h4 {
  margin-bottom: 0.1em;
  font-size: 1rem;
  color: var(--heading);
}

.team-member .role {
  color: var(--gray);
  font-weight: 400;
  font-size: 0.9rem;
}

.team-member .subrole {
  color: var(--gray);
  font-size: 0.8rem;
  margin-top: 0.6em;
}

/* Referenzen: Kategorie-Sektionen */
.ref-cat-section {
  padding: 44px 0;
}

.ref-cat-section.alt-bg {
  background: var(--bg-light);
}

.ref-cat-section h2 {
  color: var(--green-dark);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.4em;
  margin-bottom: 1.4em;
}

.ref-cat-body {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 36px;
  align-items: start;
}

.ref-cat-body.img-right {
  grid-template-columns: 1fr 340px;
}

.ref-cat-body.img-right .ref-cat-image {
  order: 2;
}

.ref-cat-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.ref-cat-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.ref-cat-image .credit {
  position: absolute;
  bottom: 8px;
  left: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.ref-cat-accordion details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  margin-bottom: 10px;
}

.ref-cat-accordion summary {
  padding: 14px 20px;
  font-weight: 600;
  cursor: pointer;
  color: var(--heading);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ref-cat-accordion summary::before {
  content: "+";
  color: var(--green-dark);
  font-weight: 700;
}

.ref-cat-accordion details[open] summary::before {
  content: "–";
}

.ref-cat-accordion ul {
  list-style: none;
  margin: 0;
  padding: 0 20px 16px;
}

.ref-cat-accordion li {
  padding: 8px 0;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text);
}

@media (max-width: 800px) {
  .ref-cat-body,
  .ref-cat-body.img-right {
    grid-template-columns: 1fr;
  }
  .ref-cat-body.img-right .ref-cat-image {
    order: 0;
  }
}
/* Auftraggeber */
.intro-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.intro-columns .intro-lead {
  font-family: "PT Serif", Georgia, serif;
  font-style: italic;
  color: var(--green-dark);
  font-size: 1.3rem;
  line-height: 1.35;
}

.serif-heading {
  font-family: "PT Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--green-dark);
  font-size: 1.6rem;
}

.section.alt-bg {
  background: var(--bg-lighter);
}

.auftraggeber-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.client-list {
  columns: 2;
  column-gap: 24px;
  list-style: disc;
  padding-left: 1.1em;
  margin: 0;
}

.client-list li {
  padding: 4px 0;
  font-size: 0.9rem;
  break-inside: avoid;
}

@media (max-width: 900px) {
  .intro-columns,
  .auftraggeber-grid {
    grid-template-columns: 1fr;
  }
  .client-list {
    columns: 1;
  }
}
/* Leistungsbereiche (Land/See) */
.service-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

.service-photo {
  text-align: center;
}

.service-photo img {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 12px;
}

.service-photo .photo-caption {
  width: 100%;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  padding: 9px 0 9px 28px;
  position: relative;
  font-size: 0.95rem;
  color: var(--text);
}

.service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--green);
  font-weight: 700;
}

.photo-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.photo-strip img {
  flex: 0 0 260px;
  height: 190px;
  border-radius: 4px;
  object-fit: cover;
}

@media (max-width: 800px) {
  .service-layout {
    grid-template-columns: 1fr;
  }
}
/* Kontakt */
.kontakt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 56px 0;
  align-items: start;
}

.kontakt-intro h1 {
  font-family: "PT Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--green-dark);
  font-size: 1.9rem;
  margin-bottom: 0.5em;
}

.kontakt-intro img {
  max-width: 240px;
}

.contact-card h3 {
  color: var(--heading);
  font-size: 1.1rem;
}

.contact-card p {
  margin: 0.2em 0 1em;
}

@media (max-width: 800px) {
  .kontakt-grid {
    grid-template-columns: 1fr;
  }
}
/* Footer */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 48px 0 24px;
  font-size: 0.9rem;
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
}

.site-footer .footer-logo img {
  height: 40px;
  margin-bottom: 12px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.85);
}

.site-footer a:hover {
  color: var(--green);
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 800px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
  }
  .main-nav.open {
    display: block;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 16px;
  }
  .main-nav li {
    border-bottom: 1px solid var(--border);
  }
  .nav-toggle {
    display: block;
  }
  .tile-grid {
    grid-template-columns: 1fr;
  }
  .service-list {
    columns: 1;
  }
}

/*# sourceMappingURL=style.css.map */