﻿* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; background: #231f20; color: #fff; }

:root {
  --green: #69a342;
  --dark:  #231f20;
  --muted: #999;
}

/* ===================== NAV ===================== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  display: flex; align-items: stretch;
  height: 82px;
  overflow: visible; /* logo darf nach unten rausragen */
  box-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

.logo-box {
  background: #231f20;
  flex-shrink: 0;
  align-self: flex-start;      /* nicht auf Nav-Höhe strecken */
  min-height: 220px;           /* ragt ~138px unter die Nav */
  padding: 8px 18px 12px;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start;
  border-right: 3px solid #69a342;
  position: relative; z-index: 10;
  box-shadow: 2px 4px 14px rgba(0,0,0,0.45);
}
.logo-img {
  width: 166px; height: auto; display: block; margin-top: 4px;
  transition: width 0.35s ease;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center; gap: 4px;
  width: auto; height: 40px; cursor: pointer;
  background: rgba(105,163,66,0.12); border: 1.5px solid rgba(105,163,66,0.55);
  border-radius: 6px; padding: 5px 10px;
  margin-left: auto; margin-right: 14px; flex-shrink: 0; align-self: center;
  transition: background 0.2s, border-color 0.2s;
}
.hamburger:hover { background: rgba(105,163,66,0.22); border-color: #69a342; }
.hamburger span {
  display: block; height: 2px; width: 18px;
  background: #fff; border-radius: 2px; transition: all 0.28s;
}
.nav-menu-search { display: none; }
.nav-menu-search input {
  width: 100%; padding: 11px 16px; background: #f4f4f4; border: 1.5px solid #ddd;
  border-radius: 6px; font-size: 0.95rem; font-family: inherit; outline: none;
  color: #222; box-sizing: border-box;
}
.nav-menu-search input:focus { border-color: #69a342; background: #fff; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-menu {
  background: #fff;
  display: flex; align-items: center;
  padding: 0 16px; list-style: none;
  flex: 1; gap: 0;
}
.nav-menu a {
  display: block; padding: 8px 14px;
  color: #231f20; text-decoration: none;
  font-size: 0.82rem; font-weight: 500;
  transition: color 0.2s;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--green); }

/* ===================== PHOTO BG HELPER ===================== */
.bg-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: grayscale(100%);
}
.bg-photo::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
}

/* ===================== HOME ===================== */
#home {
  min-height: 100vh; padding-top: 82px;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}

#home .bg-photo {
  background-image: url('img/juergen-werth-bg-termine.jpg');
  background-position: center;
}

.home-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 420px;
  max-width: 1200px; margin: 0 auto;
  padding: 80px 48px; gap: 60px;
  align-items: start; width: 100%;
  min-height: calc(100vh - 82px);
}

.home-img-slot {
  aspect-ratio: 4/5; max-height: 75vh;
  overflow: hidden; margin-left: auto; margin-right: 20px;
}
.home-img-slot img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center top; filter: grayscale(100%); display: block;
}

.home-right {}

/* Intro-Block */
.home-eyebrow {
  color: var(--green); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase; margin-bottom: 16px;
}
.home-bio {
  color: #ccc; font-size: 0.9rem; line-height: 1.95;
  margin-bottom: 24px;
}
.home-divider {
  width: 36px; height: 2px; background: var(--green); margin-bottom: 28px;
}

/* Buch-Block */
.home-book-label {
  color: var(--muted); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 14px;
}
.home-book-row {
  display: flex; gap: 20px; align-items: flex-start;
}
.home-book-cover {
  width: 110px; height: 147px; flex-shrink: 0;
  overflow: hidden; background: #2a2528;
  display: flex; align-items: center; justify-content: center;
}
.home-book-meta {}
.home-book-meta h2 {
  font-size: 1.05rem; color: var(--green); font-weight: 600; margin-bottom: 8px;
}
.home-book-meta p {
  color: #bbb; font-size: 0.82rem; line-height: 1.85; margin-bottom: 16px;
}

.btn-green {
  display: inline-block; background: var(--green); color: #fff;
  padding: 8px 26px; font-size: 0.82rem; font-weight: 600;
  text-decoration: none; transition: background 0.2s; cursor: pointer; border: none;
}
.btn-green:hover { background: #589036; }

.read-more-btn {
  background: none; border: none; padding: 0;
  color: var(--green); font-size: 0.8rem; font-weight: 600;
  cursor: pointer; margin-bottom: 16px; display: block;
  transition: color 0.2s;
}
.read-more-btn:hover { color: #8dc862; }

/* ===== NEWS ROTATOR ===== */
.nr-wrap { display: grid; }
@keyframes nrFadeIn { from { opacity: 0; transform: translateX(-24px); } to { opacity: 1; transform: translateX(0); } }
.nr-item { grid-area: 1/1; visibility: hidden; opacity: 0; }
.nr-item.active { visibility: visible; opacity: 1; animation: nrFadeIn 0.75s cubic-bezier(0.4,0,0.2,1); }
.nr-item-inner { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 20px; }
.nr-cover {
  width: 110px; height: 147px; flex-shrink: 0;
  overflow: hidden; background: #2a2528;
  display: flex; align-items: center; justify-content: center;
}
.nr-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nr-type { color: var(--muted); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 8px; }
.nr-body h2 { font-size: 1.05rem; color: var(--green); font-weight: 600; margin-bottom: 8px; }
.nr-body > p { color: #bbb; font-size: 0.82rem; line-height: 1.85; margin-bottom: 16px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.nr-body div p { color: #bbb; font-size: 0.82rem; line-height: 1.85; margin-bottom: 12px;
  display: block; overflow: visible; -webkit-line-clamp: unset; }
.nr-thumbs { border-top: 1px solid rgba(105,163,66,0.2); padding-top: 12px; display: flex; flex-direction: column; gap: 0; }
.nr-thumb {
  display: flex; gap: 12px; align-items: center;
  cursor: pointer; padding: 7px 0;
  opacity: 0.6; transition: opacity 0.2s;
  background: none; border: none; text-align: left; width: 100%;
  border-bottom: 1px solid rgba(105,163,66,0.1);
}
.nr-thumb:last-child { border-bottom: none; }
.nr-thumb:hover { opacity: 1; }
.nr-thumb-img { width: 38px; height: 38px; flex-shrink: 0; overflow: hidden; background: #2a2528; }
.nr-thumb-img img { width: 38px; height: 38px; object-fit: cover; display: block; }
.nr-thumb-type { display: block; color: var(--green); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1px; }
.nr-thumb-title { color: #bbb; font-size: 0.78rem; }

/* ===== GALLERY SLIDER ===== */
.gallery-slider {
  position: relative; width: 100%; height: 520px;
  overflow: hidden; background: #111; user-select: none;
}
.gs-slide {
  position: absolute; inset: 0;
  opacity: 0; pointer-events: none;
}
.gs-slide.active {
  pointer-events: auto;
  animation: gsZoomIn 0.75s cubic-bezier(0.4,0,0.2,1) both;
}
@keyframes gsZoomIn {
  from { opacity: 0; transform: scale(1.05); }
  to   { opacity: 1; transform: scale(1); }
}
.gs-slide img {
  width: 100%; height: 100%; object-fit: contain;
  object-position: center; display: block; cursor: zoom-in;
}
/* Peek-Thumbnails */
.gs-peek {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 330px; height: 228px;
  overflow: hidden; z-index: 8;
  border: 2px solid rgba(105,163,66,0.45);
  cursor: pointer; opacity: 0.7;
  transition: opacity 0.2s, border-color 0.2s, transform 0.25s;
  background: #111;
}
.gs-peek:hover { opacity: 1; border-color: #69a342; transform: translateY(-50%) scale(1.03); }
.gs-peek img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gs-peek.prev { left: 76px; }
.gs-peek.next { right: 76px; }
.gs-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; background: rgba(35,31,32,0.75);
  border: 1px solid rgba(105,163,66,0.55); color: #69a342;
  width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.5rem; line-height: 1;
  transition: background 0.2s, border-color 0.2s; padding: 0;
}
.gs-btn:hover { background: rgba(105,163,66,0.25); border-color: #69a342; }
.gs-btn.prev { left: 16px; }
.gs-btn.next { right: 16px; }
.gs-counter {
  position: absolute; bottom: 14px; right: 20px;
  color: rgba(255,255,255,0.45); font-size: 0.7rem;
  z-index: 10; pointer-events: none; font-family: 'Open Sans', sans-serif;
}

/* Lightbox */
.gs-lightbox {
  display: none; position: fixed; inset: 0; z-index: 99999;
  background: rgba(0,0,0,0.94);
  align-items: center; justify-content: center;
}
.gs-lightbox.open { display: flex; }
.gs-lightbox-img {
  max-width: 92vw; max-height: 88vh;
  object-fit: contain; display: block;
}
.gs-lb-close {
  position: absolute; top: 18px; right: 24px;
  color: #fff; font-size: 2.2rem; cursor: pointer;
  line-height: 1; background: none; border: none; opacity: 0.65;
  transition: opacity 0.2s;
}
.gs-lb-close:hover { opacity: 1; }
.gs-lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: #69a342; cursor: pointer;
  background: rgba(35,31,32,0.72); border: none;
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; transition: background 0.2s;
}
.gs-lb-nav.prev { left: 20px; }
.gs-lb-nav.next { right: 20px; }
.gs-lb-nav:hover { background: rgba(105,163,66,0.28); }

/* ===================== NEUIGKEITEN ===================== */
#news {
  background: #1b191c;
  border-top: 2px solid rgba(105,163,66,0.32);
}
.news-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 60px 48px;
}
.news-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.news-card {
  display: flex; gap: 20px; align-items: flex-start;
  text-decoration: none; color: inherit;
  background: rgba(35,31,33,0.95);
  padding: 20px;
  transition: background 0.2s;
}
.news-card:hover { background: rgba(46,40,43,0.98); }
.news-card-img {
  width: 90px; flex-shrink: 0; background: #2a2528;
}
.news-card-img img {
  width: 90px; height: auto; display: block;
}
.news-card-label {
  color: var(--green); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase; margin-bottom: 8px;
  display: block;
}
.news-card h3 {
  color: var(--green); font-size: 0.95rem; font-weight: 600;
  margin-bottom: 6px; line-height: 1.4;
}
.news-card p {
  color: #bbb; font-size: 0.8rem; line-height: 1.6; margin-bottom: 8px;
}
.news-card-arrow {
  color: var(--green); font-size: 0.75rem; font-weight: 600;
}

/* ===================== SECTION SEPARATORS ===================== */
#termine, #texte, #tone, #mediathek, #shop, #kontakt {
  border-top: 2px solid rgba(105,163,66,0.32);
}
#termine, #texte, #tone, #mediathek, #shop, #kontakt {
  scroll-margin-top: 72px;
}
@media (max-width: 768px) {
  #termine, #texte, #tone, #mediathek, #shop, #kontakt { scroll-margin-top: 80px; }
}
#mediathek { background: #1c1a1d; }
#shop      { background: #231f20; }

/* ===================== TERMINE ===================== */
#termine {
  position: relative; overflow: hidden;
}

.termine-inner {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto;
  padding: 80px 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
}
.termine-inner .section-heading {
  grid-column: 1 / -1; margin-bottom: 20px;
}

.vorhang-block {
  position: relative;
}
.vorhang-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.10);
  border-radius: 6px;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 2.6s ease;
  pointer-events: none;
}
.vorhang-block.vorhang-an::before {
  clip-path: inset(0 0 0% 0);
}

.termine-block h2 {
  color: var(--green); font-size: 1.1rem; font-weight: 600;
  margin-bottom: 20px; line-height: 1.4;
}
.termine-block p {
  color: #bbb; font-size: 0.85rem; line-height: 1.9; margin-bottom: 10px;
}
.termine-block a {
  color: var(--green); text-decoration: none; font-size: 0.83rem;
}
.termine-block a:hover { text-decoration: underline; }

.termin-entry {
  margin-bottom: 22px;
  border-radius: 8px; padding: 8px 10px; margin-left: -10px; margin-right: -10px;
  transition: background 0.2s;
}
.termin-entry:hover { background: rgba(255,255,255,0.06); }
.termin-date {
  color: var(--green); font-size: 0.8rem; font-weight: 600;
  margin-bottom: 3px;
}
.termin-title { color: #fff; font-size: 0.85rem; margin-bottom: 2px; line-height: 1.4; }
.termin-org { color: var(--muted); font-size: 0.78rem; }
.termin-org a { color: var(--green); }

/* ===================== TEXTE ===================== */
#texte {
  position: relative; overflow: hidden;
}

.texte-inner {
  position: relative; z-index: 1;
  max-width: 900px; margin: 0 auto;
  padding: 80px 48px;
}

.section-heading {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--green);
  margin-bottom: 32px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(105,163,66,0.28);
  display: block;
}

.text-card {
  display: flex; gap: 20px; align-items: flex-start;
  text-decoration: none; color: inherit;
  background: rgba(35,31,33,0.93);
  padding: 16px 22px; margin-bottom: 3px;
  cursor: pointer; transition: background 0.2s;
  border-bottom: 1px solid #342f32;
}
.text-card:hover { background: rgba(46,40,43,0.95); }
.text-card-thumb {
  width: 90px; height: 72px; flex-shrink: 0;
  overflow: hidden;
}
.text-card-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%); display: block;
  transition: transform 0.3s;
}
.text-card:hover .text-card-thumb img { transform: scale(1.05); }
.text-card-body { flex: 1; min-width: 0; }
.text-card h3 {
  color: var(--green); font-size: 0.88rem; font-weight: 600;
  margin-bottom: 6px; line-height: 1.4;
}
.text-card-teaser {
  color: #777; font-size: 0.78rem; line-height: 1.65;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; margin-bottom: 8px;
}
.text-card-arrow {
  color: var(--green); font-size: 0.75rem; font-weight: 600;
}
.text-card-share { display: flex; gap: 8px; padding: 6px 22px 8px; background: rgba(35,31,33,0.7); border-bottom: 1px solid #342f32; }
.tc-share-btn { display: inline-flex; align-items: center; gap: 5px; padding: 4px 11px; border-radius: 5px; font-size: 0.7rem; font-weight: 600; text-decoration: none !important; cursor: pointer; border: 1px solid #3a3a3a; background: #2a2a2a; color: #999 !important; font-family: inherit; transition: opacity 0.2s; line-height: 1; }
.tc-share-btn:hover { opacity: 0.8; }
.tc-share-btn.wa { background: #25D366; color: #fff !important; border-color: #25D366; }
.tc-share-btn.copied { color: var(--green) !important; border-color: var(--green); }
.index-share-bar { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; padding: 20px 22px 24px; border-top: 1px solid rgba(105,163,66,0.18); margin-top: 6px; }
.index-share-label { font-size: 0.68rem; color: #666; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-right: 4px; }

/* ===================== TÖNE ===================== */
#tone {
  background: #191619;
  position: relative; overflow: hidden;
}
.tone-wrap {
  max-width: 900px; margin: 0 auto;
  padding: 80px 48px;
  position: relative; z-index: 1;
}
.tone-wrap h2 {
  color: var(--green); font-size: 1rem; font-weight: 600;
  line-height: 1.6; margin-bottom: 36px;
}
.spotify-embed {
  width: 100%; margin-bottom: 16px;
}
.spotify-embed iframe {
  width: 100%; display: block; border: none;
}
.spotify-2col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-bottom: 16px;
}
.spotify-2col iframe { border: none; width: 100%; display: block; }
.spotify-10grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-bottom: 40px;
}
.spotify-10grid .spotify-col { display: flex; flex-direction: column; gap: 8px; }
.spotify-10grid .spotify-col iframe { border: none; width: 100%; display: block; }
.tone-sep {
  border: none; border-top: 1px solid rgba(105,163,66,0.22);
  margin: 40px 0;
}
.tone-label {
  display: block; font-size: 0.78rem; font-style: italic;
  color: #BADA55; margin-bottom: 12px;
}
.tone-book {
  display: flex; align-items: flex-start; gap: 24px;
}
.tone-book-img {
  width: 120px; height: auto; display: block; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.08);
}
.tone-yt {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}

/* YouTube Thumbnail-Fassade – gilt für Töne + Mediathek */
.yt-facade {
  position: relative; padding-bottom: 56.25%; height: 0;
  overflow: hidden; background: #111; cursor: pointer;
}
.yt-facade img {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: opacity 0.2s;
}
.yt-facade:hover img { opacity: 0.85; }
.yt-play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 44px;
  background: rgba(220,0,0,0.9);
  border-radius: 10px;
  pointer-events: none;
}
.yt-play-btn::after {
  content: '';
  position: absolute; top: 50%; left: 56%;
  transform: translate(-50%, -50%);
  border: 10px solid transparent;
  border-left: 16px solid #fff;
}
.yt-facade:hover .yt-play-btn { background: #cc0000; }
.yt-facade iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none;
}

/* ===================== MEDIATHEK ===================== */
#mediathek {
  position: relative; overflow: hidden;
  background: #1b191c;
}

.mediathek-inner {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto;
  padding: 80px 48px;
}


.video-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-bottom: 12px;
}
.video-wrap {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
  background: #1a181a;
}
.video-wrap iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  border: none;
}
.video-caption {
  color: #888; font-size: 0.72rem; margin-top: 5px; line-height: 1.4;
}
.video-caption::after { content: " (YouTube)"; }

.erf-box {
  margin-top: 32px; padding: 20px 24px;
  background: rgba(37,33,35,0.95);
  border-left: 3px solid var(--green);
}
.erf-box h3 { color: var(--green); font-size: 0.88rem; font-weight: 600; margin-bottom: 6px; }
.erf-box p { color: #999; font-size: 0.8rem; line-height: 1.75; }

/* ===================== SHOP ===================== */
#shop {
  background: #1b191c;
  position: relative;
}

.shop-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 80px 48px;
  position: relative; z-index: 1;
}

.shop-cat-title {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--green);
  margin-bottom: 28px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(105,163,66,0.28);
}
.shop-cat-title:not(:first-child) { margin-top: 56px; }

.shop-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}
.shop-item {
  display: grid; grid-template-columns: 85px 1fr; gap: 18px; align-items: start;
  border-radius: 8px; padding: 10px; margin: -10px;
  transition: background 0.2s;
}
.shop-item:hover { background: rgba(255,255,255,0.06); }
.shop-cover {
  width: 85px; height: 112px; flex-shrink: 0;
  background: #2a2528; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.shop-cover img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }
.shop-cover a { display: block; }
.shop-cover a:hover img { opacity: 0.85; transition: opacity 0.2s; }
.shop-info h3 a { color: inherit; text-decoration: none; }
.shop-info h3 a:hover { text-decoration: underline; }
.shop-info h3 {
  color: var(--green); font-size: 0.88rem; font-weight: 600;
  margin-bottom: 5px; line-height: 1.35;
}
.shop-info .price {
  color: #fff; font-size: 0.85rem; font-weight: 600; margin-bottom: 5px;
}
.shop-info p {
  color: #777; font-size: 0.78rem; line-height: 1.65;
}
.shop-info .shop-sub {
  color: #aaa; font-size: 0.75rem; margin-bottom: 5px; font-style: italic;
}
.shop-info .shop-note {
  color: #555; font-size: 0.73rem; margin-top: 4px; font-style: italic;
}
.shop-info .shop-link {
  display: inline-block; margin-top: 8px;
  color: var(--green); font-size: 0.75rem; font-weight: 600;
  text-decoration: none;
}
.shop-info .shop-link:hover { text-decoration: underline; }

/* ===================== KONTAKT ===================== */
#kontakt {
  position: relative; overflow: hidden;
}

.kontakt-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 280px 1fr;
  max-width: 1100px; margin: 0 auto;
  padding: 80px 48px; gap: 80px;
  align-items: start;
}

.kontakt-info .section-heading {
  margin-bottom: 24px;
}
.kontakt-adresse {
  color: #bbb; font-size: 0.85rem; line-height: 2; margin-bottom: 16px;
}
.kontakt-mail {
  color: var(--green); font-size: 0.85rem; text-decoration: none; display: block;
}
.kontakt-mail:hover { text-decoration: underline; }

.form-row { margin-bottom: 10px; }
.form-row input,
.form-row textarea {
  width: 100%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(105,163,66,0.3); color: #fff;
  padding: 10px 14px; font-size: 0.83rem; font-family: inherit;
  outline: none; transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-row input:focus,
.form-row textarea:focus { border-color: var(--green); }
.form-row input::placeholder,
.form-row textarea::placeholder { color: #999; }
.form-row textarea { min-height: 120px; resize: vertical; }
.form-submit {
  background: var(--green); color: #fff; border: none;
  padding: 9px 28px; font-size: 0.83rem; font-weight: 600;
  cursor: pointer; transition: background 0.2s; margin-top: 4px;
}
.form-submit:hover { background: #589036; }

/* ===================== FOOTER ===================== */
footer { display: flex; flex-direction: column; font-size: 0.8rem; color: #231f20; }
.footer-service {
  background: #fff; padding: 11px 48px;
  display: flex; align-items: center; justify-content: center;
  gap: 8px; flex-wrap: wrap;
}
.footer-social {
  background: #ece8eb; border-bottom: 1px solid #ddd8dc;
  padding: 14px 48px;
  display: flex; align-items: flex-end; justify-content: center;
  gap: 18px; flex-wrap: wrap;
}
.footer-icon-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  text-decoration: none !important;
}
.footer-icon-wrap span { font-size: 0.62rem; color: #888; font-weight: 500; white-space: nowrap; }
.footer-icon-wrap:hover span { color: var(--green); }
.footer-icon {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #d8d4d7; color: #555;
  text-decoration: none !important; transition: background 0.2s, color 0.2s;
  font-size: 0.72rem; font-weight: 700; font-family: 'Open Sans', sans-serif;
  border: none; cursor: pointer;
}
.footer-icon:hover { background: var(--green); color: #fff; text-decoration: none !important; }
footer a { color: #231f20; text-decoration: none; }
footer a:hover { color: var(--green); text-decoration: underline; }
footer .sep { color: #9b9395; }

/* ===================== RESPONSIVE ===================== */

/* Peek-Thumbnails: bei mittleren Breiten etwas kleiner, dürfen leicht überlagern */
@media (max-width: 1300px) {
  .gs-peek { width: 220px; height: 152px; }
  .gs-peek.prev { left: -30px; }
  .gs-peek.next { right: -30px; }
  .gs-btn.prev { left: 200px; }
  .gs-btn.next { right: 200px; }
}
@media (max-width: 960px) {
  .gs-peek { width: 130px; height: 90px; opacity: 0.6; }
  .gs-peek.prev { left: -20px; }
  .gs-peek.next { right: -20px; }
  .gs-btn.prev { left: 118px; }
  .gs-btn.next { right: 118px; }
}
@media (max-width: 600px) {
  .gs-peek { display: none; }
  .gs-btn.prev { left: 10px; }
  .gs-btn.next { right: 10px; }
}

/* Großes Tablet 960px */
@media (max-width: 960px) {
  .gallery-slider { height: 380px; }
  .gs-btn { width: 42px; height: 42px; font-size: 1.3rem; }
  .home-inner { grid-template-columns: 1fr; gap: 36px; padding: 60px 32px; }
  .home-img-slot { max-height: 55vw; aspect-ratio: unset; }
  .termine-inner { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
  .kontakt-inner { grid-template-columns: 1fr; gap: 40px; }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .termine-inner, .texte-inner, .tone-wrap,
  .mediathek-inner, .shop-inner, .kontakt-inner, .news-inner { padding-left: 28px; padding-right: 28px; }
}

/* Kleines Tablet: Hamburger aktiv */
@media (max-width: 768px) {
  .gs-peek { display: none; }
  nav { height: auto; min-height: 64px; flex-wrap: wrap; align-items: center; overflow: visible; }
  .logo-box { padding: 4px 14px 8px; min-height: 0; height: auto; overflow: visible; }
  .logo-img { width: 100px; height: auto; }
  .nav-scrolled .logo-img { width: 50px; }
  .hamburger { display: flex; margin-right: 34px; }
  .nav-search-btn { display: none; }
  .nav-menu {
    display: none; width: 100%; flex-direction: column; flex: none;
    background: #fff; padding: 6px 0; gap: 0; border-top: 1px solid #e8e8e8;
  }
  .nav-menu.open { display: flex; }
  .nav-menu li { width: 100%; }
  .nav-menu a { padding: 13px 24px; font-size: 0.9rem; display: block; border-bottom: 1px solid #f2f2f2; }
  .nav-menu-search { display: block; padding: 10px 16px; border-bottom: 1px solid #e8e8e8; }
  .nav-home { display: none; }
  .gallery-slider { height: 300px; }
  .gs-btn { width: 36px; height: 36px; font-size: 1.1rem; }
  .gs-peek { width: 180px; height: 124px; }
  .gs-peek.prev { left: 56px; }
  .gs-peek.next { right: 56px; }
  #home { padding-top: 140px; }
  .home-inner { min-height: calc(100vh - 64px); padding: 48px 20px 40px; grid-template-columns: 1fr; gap: 32px; }
  .home-img-slot { max-height: 60vw; aspect-ratio: unset; }
  .termine-inner, .texte-inner, .tone-wrap,
  .mediathek-inner, .shop-inner, .kontakt-inner, .news-inner { padding-left: 20px; padding-right: 20px; }
}

/* Textkarten: Thumbnail auf sehr kleinen Screens ausblenden */
@media (max-width: 420px) {
  .text-card-thumb { display: none; }
}

/* Smartphone */
@media (max-width: 480px) {
  .hamburger { transform: scale(0.7); transform-origin: center right; margin-right: 34px; }
  .gallery-slider { height: 220px; }
  .gs-btn { width: 32px; height: 32px; font-size: 1rem; }
  .logo-box { min-height: 0; height: auto; padding: 4px 10px; overflow: visible; }
  .logo-img { width: 80px; height: auto; }
  .nav-scrolled .logo-img { width: 40px; }
  #home { padding-top: 115px; }
  .spotify-2col, .spotify-10grid, .tone-yt { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .shop-item { grid-template-columns: 70px 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
  .home-book-row { flex-direction: column; }
  .home-book-cover { width: 110px; }
  .home-inner { padding: 32px 16px; }
  .kontakt-inner { grid-template-columns: 1fr; gap: 32px; }
  .termine-inner, .texte-inner, .tone-wrap,
  .mediathek-inner, .shop-inner, .kontakt-inner, .news-inner { padding-left: 16px; padding-right: 16px; }
  .termine-inner { padding-top: 40px; padding-bottom: 40px; }
}

/* ===== SUCHE ===== */
.nav-search-btn {
  background: none; border: none; cursor: pointer;
  padding: 6px 10px; margin-left: auto; margin-right: 4px;
  display: flex; align-items: center; flex-shrink: 0;
  color: #fff; opacity: 0.85;
}
.nav-search-btn:hover { opacity: 1; }
.nav-search-btn svg { display: block; }
.search-overlay {
  display: none; position: fixed; inset: 0; z-index: 9000;
  background: rgba(20,20,20,0.82); padding: 16px 16px 24px;
  padding-top: max(160px, calc(env(safe-area-inset-top) + 160px));
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .search-overlay { padding-top: max(70px, calc(env(safe-area-inset-top) + 70px)); }
}
@media (max-width: 480px) {
  .search-overlay { padding-top: max(50px, calc(env(safe-area-inset-top) + 50px)); }
}
.search-overlay.open { display: flex; flex-direction: column; align-items: center; }
.search-top {
  width: 100%; max-width: 620px;
  display: flex; gap: 8px; align-items: center;
}
#search-input {
  flex: 1; font-size: 1.15rem; padding: 12px 16px;
  border: 2px solid #69a342; border-radius: 8px;
  outline: none; background: #fff; color: #222;
}
.search-close-btn {
  background: none; border: 2px solid #fff; color: #fff;
  border-radius: 8px; font-size: 1.2rem; padding: 10px 14px;
  cursor: pointer; flex-shrink: 0;
}
.search-close-btn:hover { background: rgba(255,255,255,0.15); }
#search-results {
  width: 100%; max-width: 620px; margin-top: 16px;
  overflow-y: auto; max-height: calc(100vh - 180px);
}
.sr-item {
  background: #fff; border-radius: 8px; padding: 12px 16px;
  margin-bottom: 8px; text-decoration: none; color: #231f20;
  display: block; transition: box-shadow 0.15s;
}
.sr-item:hover { box-shadow: 0 2px 12px rgba(105,163,66,0.35); }
.sr-section { font-size: 0.68rem; color: #69a342; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 2px; }
.sr-title { font-size: 0.95rem; font-weight: 600; margin-bottom: 3px; }
.sr-desc { font-size: 0.78rem; color: #666; line-height: 1.4; }
.sr-empty { color: #ccc; text-align: center; padding: 32px 0 16px; font-size: 0.95rem; }
.sr-google {
  display: block; margin: 12px auto 0; padding: 10px 22px;
  background: #69a342; color: #fff; border: none; border-radius: 8px;
  font-size: 0.88rem; cursor: pointer; text-decoration: none; text-align: center;
}
.sr-google:hover { background: #558232; }