/* ==========================================================================
   GreenTeam Waltrop — Stylesheet
   Nachbau des bisherigen WordPress-Designs als statisches CSS.
   Farben und Radien 1:1 aus den Live-Computed-Styles der WordPress-Seite
   übernommen (Grün #5BA75D, Oliv #7B8057, Radius 10px, Systemschrift).
   ========================================================================== */

:root {
  --green: #5ba75d;
  --green-dark: #4c9350;
  --green-darker: #3f7d42;
  --olive: #7b8057;
  --olive-dark: #6a6e4a;
  --ink: #333333;
  --ink-light: #555555;
  --paper: #ffffff;
  --soft-bg: #f7f7f5;
  --border: #e2e2de;
  --radius: 10px;
  --radius-lg: 16px;
  --maxw: 1100px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

a { color: var(--green-darker); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Skip-Link ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: #fff;
  color: #000;
  padding: 10px 16px;
  z-index: 1000;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* ---------- Header / Navigation ---------- */
.site-header {
  border-bottom: 1px solid var(--border);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
  flex-wrap: wrap;
}
.site-logo img { height: 56px; width: auto; }
.site-logo { display: block; }

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.main-nav a {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.98rem;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--green-darker);
  text-decoration: none;
}
.main-nav .has-sub { position: relative; }
.main-nav .sub-toggle {
  background: none;
  border: none;
  font: inherit;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
}
.main-nav .submenu {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 200px;
  display: none;
  flex-direction: column;
  gap: 0;
}
.main-nav .has-sub:hover .submenu,
.main-nav .has-sub:focus-within .submenu {
  display: flex;
}
.main-nav .submenu a {
  display: block;
  padding: 8px 18px;
  font-weight: 500;
}
.nav-toggle {
  display: none;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 8px 14px;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 820px) {
  .nav-toggle { display: inline-block; }
  .main-nav { width: 100%; display: none; }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 4px; }
  .main-nav .submenu { position: static; display: none; border: none; box-shadow: none; padding-left: 12px; }
  .main-nav .has-sub.open .submenu { display: flex; }
}

/* ---------- Hero (Video-Kopfschleife) ---------- */
.hero-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  max-height: 560px;
  overflow: hidden;
  background: #12160f;
}
.hero-video video,
.hero-video img.hero-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-video .hero-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 24px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.55), transparent);
  color: #fff;
  font-weight: 700;
}

/* ---------- Section-Karten (Über uns / Personal Service / Verleih / Kontakt) ---------- */
.section-band {
  padding: 40px 0;
}
.card {
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 28px;
  color: #fff;
}
.card h2, .card h3 {
  margin-top: 0;
  color: #fff;
}
.card.olive { background: var(--olive); }
.card.green { background: var(--green); }
.card.green-dark { background: var(--green-dark); }

.card-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
}
.card-split .card-text { padding: 32px; }
.card-split .card-media { min-height: 260px; }
.card-split .card-media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 760px) {
  .card-split { grid-template-columns: 1fr; }
}

.btn {
  display: inline-block;
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
  border-radius: var(--radius);
  padding: 10px 22px;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.98rem;
}
.btn:hover { background: rgba(255, 255, 255, 0.15); text-decoration: none; }
.btn.btn-solid {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.btn.btn-solid:hover { background: var(--green-dark); }

/* ---------- Verleih-Übersichtskarten ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 760px) { .grid-3 { grid-template-columns: 1fr; } }

.item-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}
.item-card h3 { margin-top: 0; color: var(--green-darker); }
.item-card a.mehr { font-weight: 700; }

/* ---------- Produktdetails (Spiele/Verköstigung/Zubehör) ---------- */
.product {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 28px;
}
.product h2 { color: var(--green-darker); margin-top: 0; }
.product h4 { margin-bottom: 6px; }
.product .price-box {
  background: var(--soft-bg);
  border-radius: var(--radius);
  padding: 18px;
  margin-top: 14px;
}
.product ul { margin: 6px 0 14px; padding-left: 20px; }

/* ---------- Kontakt ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info p { margin: 4px 0; }
.contact-info .map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 18px;
  border: 0;
}
.contact-form label { display: block; font-weight: 700; margin: 12px 0 4px; color: #fff; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.6);
  font: inherit;
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form .consent { display: flex; align-items: flex-start; gap: 8px; margin: 14px 0; color: #fff; font-size: 0.92rem; }
.contact-form .consent input { width: auto; }
.contact-form .consent a { color: #fff; text-decoration: underline; }
.contact-form .hp { position: absolute; left: -9999px; top: -9999px; }
.form-note { color: #fff; margin-top: 10px; font-size: 0.92rem; }
.form-note.success { font-weight: 700; }

/* ---------- Testimonials ---------- */
.testimonials { text-align: center; padding: 48px 0; }
.testimonials h2 { color: var(--olive); }
.testi-list { display: grid; gap: 34px; max-width: 720px; margin: 24px auto 0; }
.testi { }
.testi p.quote { font-style: italic; color: var(--ink-light); margin-bottom: 14px; }
.testi .who { display: flex; align-items: center; justify-content: center; gap: 10px; }
.testi .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: #d9d9d9; display: inline-block;
}
.testi .who strong { display: block; }
.testi .who span { color: var(--ink-light); font-size: 0.9rem; }

.google-reviews {
  text-align: center;
  padding: 24px;
  background: var(--soft-bg);
  border-radius: var(--radius-lg);
  max-width: 420px;
  margin: 32px auto 0;
}
.google-reviews .stars { color: #f5b301; font-size: 1.4rem; letter-spacing: 2px; }
.google-reviews .score { font-weight: 800; font-size: 1.3rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 12px;
}
.faq summary {
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq p { margin: 10px 0 0; color: var(--ink-light); }

/* ---------- Blog / Spiele-Empfehlungen ---------- */
.post-teaser { border-bottom: 1px solid var(--border); padding: 24px 0; }
.post-teaser h2 { margin-bottom: 6px; }
.post-teaser .meta { color: var(--ink-light); font-size: 0.9rem; margin-bottom: 8px; }
.post-full h1 { color: var(--green-darker); }

/* ---------- Rechtstexte ---------- */
.legal h1 { color: var(--green-darker); }
.legal h2 { margin-top: 34px; border-top: 1px solid var(--border); padding-top: 20px; }
.legal p { color: var(--ink-light); }

.legal-note {
  background: #fff8e6;
  border: 1px solid #f0dca0;
  border-radius: var(--radius);
  padding: 14px 18px;
  margin: 18px 0;
  font-size: 0.92rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #2b2f22;
  color: #eee;
  text-align: center;
  padding: 26px 0;
  margin-top: 48px;
}
.site-footer a { color: #cfe6cf; }
.site-footer .foot-links { margin-top: 8px; }
.site-footer .foot-links a { margin: 0 8px; }

/* ---------- Utility ---------- */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--green-darker);
  font-size: 0.82rem;
}
h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }
.center { text-align: center; }
.small { font-size: 0.9rem; color: var(--ink-light); }
