/* ============================================================
   SCHULE HOLZKIRCHEN — styles.css
   Farben: Grün (#1b4332), Hellgrün (#52b788), Hellblau (#dde8f0),
           Weiß (#f8faf9), Dunkeltexte (#1a2a1e)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:      #1b4332;
  --green-mid:  #2d6a4f;
  --green-light:#52b788;
  --accent:     #f4a02a;
  --bg:         #f8faf9;
  --bg-alt:     #eef4f0;
  --bg-dark:    #1b4332;
  --white:      #ffffff;
  --text:       #1a2a1e;
  --text-muted: #4a6651;
  --radius:     8px;
  --shadow:     0 4px 20px rgba(27,67,50,0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  padding-bottom: 56px; /* disclaimer */
}

/* ── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 3px solid var(--green-light);
  box-shadow: 0 2px 12px rgba(27,67,50,0.10);
}
.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--green);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.logo-name {
  font-family: 'Nunito', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--green);
  display: block;
}
.logo-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}
.nav-link:hover,
.nav-link.active {
  background: var(--bg-alt);
  color: var(--green);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(27,67,50,0.92) 0%, rgba(45,106,79,0.75) 60%, rgba(27,67,50,0.88) 100%),
    url('Pic/hero-background.jpg') center/cover no-repeat;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding: 5rem 2rem;
  text-align: center;
}
.hero-eyebrow {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 1rem;
}
.hero-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.hero-title span { color: var(--accent); }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 2rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--text);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 1.8rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: filter 0.2s;
}
.btn-primary:hover { filter: brightness(1.1); }
.btn-outline {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 1.8rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

.hero-badge {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  background: var(--accent);
  border-radius: 50%;
  width: 84px;
  height: 84px;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
  z-index: 3;
}
.hero-badge i { font-size: 1.2rem; }

/* ── KPI STRIP ───────────────────────────────────────────── */
.kpi-strip {
  background: var(--white);
  border-bottom: 1px solid var(--bg-alt);
  display: flex;
  justify-content: center;
  gap: 0;
}
.kpi {
  flex: 1;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.4rem 1rem;
  border-right: 1px solid var(--bg-alt);
}
.kpi:last-child { border-right: none; }
.kpi-num {
  font-family: 'Nunito', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--green);
}
.kpi-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.15rem;
}

/* ── SECTIONS ────────────────────────────────────────────── */
.section { padding: 5rem 1.5rem; }
.section-light { background: var(--white); }
.section-alt   { background: var(--bg-alt); }

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-head {
  text-align: center;
  margin-bottom: 3rem;
}
.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--green);
  margin-bottom: 0.8rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── ABOUT GRID ──────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.about-card {
  background: var(--bg);
  border: 1px solid rgba(27,67,50,0.10);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.about-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.about-icon {
  width: 48px;
  height: 48px;
  background: var(--green);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.about-card h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 0.5rem;
}
.about-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ── ANGEBOTE LIST ───────────────────────────────────────── */
.angebote-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.angebot-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem;
  border-left: 4px solid var(--green-light);
  box-shadow: 0 2px 8px rgba(27,67,50,0.06);
}
.angebot-num {
  font-family: 'Nunito', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-light);
  line-height: 1;
  flex-shrink: 0;
  width: 3rem;
}
.angebot-body h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 0.4rem;
}
.angebot-body p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ── TEAM GRID ───────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.team-card:hover { transform: translateY(-4px); }
.team-photo {
  height: 220px;
  background: var(--green);
  overflow: hidden;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.team-info { padding: 1.5rem; }
.team-name {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--green);
}
.team-title {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}
.team-rule {
  width: 36px;
  height: 2px;
  background: var(--green-light);
  margin: 0.75rem 0;
}
.team-bio { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.team-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}
.team-badges span {
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--bg-alt);
  color: var(--green);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
}

/* ── NEWS GRID ───────────────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.news-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-top: 4px solid var(--bg-alt);
  box-shadow: 0 2px 8px rgba(27,67,50,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}
.news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.news-card--featured { border-top-color: var(--green-light); }
.news-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 0.5rem;
}
.news-card h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 0.4rem;
}
.news-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}
.news-card p:last-child { font-size: 0.87rem; color: var(--text-muted); line-height: 1.6; }

/* ── KONTAKT ─────────────────────────────────────────────── */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}
.kontakt-block {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.kontakt-icon {
  width: 40px;
  height: 40px;
  background: var(--green);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.kontakt-block h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 0.2rem;
}
.kontakt-block p,
.kontakt-block a {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
}
.kontakt-block a:hover { color: var(--green); text-decoration: underline; }

.hours-table { font-size: 0.85rem; border-collapse: collapse; }
.hours-table td { padding: 0.15rem 1rem 0.15rem 0; color: var(--text-muted); }
.hours-table td:first-child { font-weight: 600; color: var(--text); }

.kontakt-form-wrap h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 1.2rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.3rem; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.65rem 0.9rem;
  border: 1.5px solid rgba(27,67,50,0.2);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-light);
}
.contact-form .btn-primary {
  align-self: flex-start;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--green);
  color: rgba(255,255,255,0.85);
  padding: 3rem 1.5rem 2rem;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.footer-logo i { font-size: 1.2rem; color: var(--green-light); }
.footer-col p { font-size: 0.84rem; line-height: 1.7; }
.footer-col a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
}
.footer-col a:hover { color: var(--white); }
.footer-col h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--green-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.4rem; }
.footer-col ul li a { font-size: 0.85rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.footer-links span { color: rgba(255,255,255,0.3); }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.footer-copy a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-copy a:hover { color: var(--white); }

/* ── DISCLAIMER ──────────────────────────────────────────── */
.escape-disclaimer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(27,67,50,0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(82,183,136,0.4);
}
.escape-disclaimer__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.6rem 1.5rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.escape-disclaimer__inner a { color: var(--green-light); text-decoration: none; }
.escape-disclaimer__inner a:hover { text-decoration: underline; }

/* ── FADE-IN ANIMATION ───────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .site-nav { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--bg-alt); padding: 1rem 1.5rem; gap: 0.25rem; }
  .site-nav.open { display: flex; }
  .burger { display: flex; }
  .site-header { position: relative; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-badge { display: none; }
  .kpi-strip { flex-wrap: wrap; }
}
@media (max-width: 580px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════════════
   SCHULE — HERO SPLIT-LAYOUT (overrides)
   ═══════════════════════════════════════════════════════════ */

/* Original-Elemente ausblenden */
.hero      { display: none !important; }
.kpi-strip { display: none !important; }

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  overflow: hidden;
}

.hs-copy {
  background: #1b3f6e;
  padding: 5rem 3rem 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}
.hs-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.1rem;
  display: block;
}
.hs-copy h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.2rem;
}
.hs-copy h1 em {
  font-style: normal;
  color: #fdd835;
}
.hs-copy p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 380px;
}
.hs-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.btn-ghost {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}
.btn-ghost:hover { color: #fff; }

.hs-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
}
.hm-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  text-align: center;
  padding: 1.8rem 0.5rem;
  border: 1px solid rgba(0,0,0,0.08);
  transition: filter 0.2s;
}
.hm-tile:hover { filter: brightness(1.1); }
.hm-tile strong { font-size: 1.9rem; line-height: 1; display: block; }
.hm-tile span   { font-size: 0.7rem; font-weight: 600; display: block; margin-top: 0.25rem; }
.hm-tile i      { font-size: 2.4rem; }

.hm-blue   { background: #1565c0; color: #fff; }
.hm-yellow { background: #fdd835; color: #1a1a1a; }
.hm-green  { background: #2e7d32; color: #fff; }
.hm-red    { background: #b71c1c; color: #fff; }
.hm-teal   { background: #00695c; color: #fff; }
.hm-orange { background: #e65100; color: #fff; }

@media (max-width: 860px) {
  .hero-split { grid-template-columns: 1fr; }
  .hs-copy { padding: 3rem 2rem; }
  .hs-mosaic {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 1fr;
  }
  .hm-tile        { padding: 1.1rem 0.3rem; }
  .hm-tile strong { font-size: 1.2rem; }
  .hm-tile i      { font-size: 1.5rem; }
}
@media (max-width: 500px) {
  .hs-mosaic {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}

/* ═══════════════════════════════════════════════════════════
   SCHULE — VERSPIELT-OVERRIDES
   ═══════════════════════════════════════════════════════════ */

/* Fredoka für alle Headlines */
h1, h2, h3,
.logo-name,
.section-title,
.hs-copy h1,
.news-card h3,
.team-name,
.about-card h3,
.angebot-body h3 {
  font-family: 'Fredoka', 'Nunito', sans-serif !important;
  letter-spacing: 0.01em;
}

/* Regenbogen-Streifen statt einfacher Linie im Header */
.site-header {
  border-bottom: 4px solid transparent !important;
  border-image: linear-gradient(90deg, #f4a02a, #f4d35e, #52b788, #1b4332, #52b788, #f4d35e, #f4a02a) 1 !important;
}

/* Section-Eyebrows als farbige Sticker-Badges */
.section-eyebrow {
  display: inline-block !important;
  background: #f4a02a !important;
  color: #fff !important;
  border-radius: 50px !important;
  padding: 0.25rem 0.9rem !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.07em !important;
  text-transform: uppercase !important;
  transform: rotate(-1.2deg) !important;
  box-shadow: 2px 2px 0 rgba(0,0,0,0.12) !important;
}
.section-alt .section-eyebrow { background: #1b4332 !important; }
.section-light .section-eyebrow { background: #1565c0 !important; }

/* Wellenlinie unter Section-Titeln */
.section-title {
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  display: block;
  height: 5px;
  border-radius: 3px;
  background: linear-gradient(90deg, #f4a02a 0%, #f4d35e 40%, #52b788 100%);
  margin-top: 0.4rem;
  transform: rotate(-0.6deg);
  opacity: 0.9;
}

/* About-Cards: jedes Icon eine andere Farbe + leichte Kippung */
.about-card:nth-child(1) { transform: rotate(-0.5deg); }
.about-card:nth-child(2) { transform: rotate( 0.6deg); }
.about-card:nth-child(3) { transform: rotate(-0.4deg); }
.about-card:nth-child(4) { transform: rotate( 0.5deg); }
.about-card:hover { transform: rotate(0deg) translateY(-4px) !important; }
.about-card:nth-child(1) .about-icon { background: #1565c0; }
.about-card:nth-child(2) .about-icon { background: #e65100; }
.about-card:nth-child(3) .about-icon { background: #6a1b9a; }
.about-card:nth-child(4) .about-icon { background: #2e7d32; }

/* Angebot-Nummern: ausgelöste Schulbuch-Kreise */
.angebot-num {
  font-family: 'Fredoka', 'Nunito', sans-serif !important;
  background: transparent !important;
  border: 3px solid var(--green-light) !important;
  color: var(--green) !important;
  font-size: 1.35rem !important;
  font-weight: 600 !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}
.angebot-item:nth-child(even) .angebot-num { border-color: #f4a02a !important; color: #b85a00 !important; }

/* section-alt: gepunkteter Hintergrund */
.section-alt {
  background-image: radial-gradient(circle, rgba(82,183,136,0.22) 1.5px, transparent 1.5px) !important;
  background-size: 22px 22px !important;
}

/* News-Cards: Pinnwand-Notizzettel mit leichter Kippung */
.news-card {
  box-shadow: 3px 5px 14px rgba(0,0,0,0.13) !important;
}
.news-card:nth-child(1) { transform: rotate(-0.8deg); }
.news-card:nth-child(2) { transform: rotate( 0.5deg); }
.news-card:nth-child(3) { transform: rotate(-0.4deg); }
.news-card:nth-child(4) { transform: rotate( 0.9deg); }
.news-card:hover { transform: rotate(0deg) translateY(-4px) scale(1.01) !important; box-shadow: 4px 8px 24px rgba(0,0,0,0.18) !important; }

/* Mosaik-Kacheln mit Hover-Kippeffekt */
.hm-tile {
  transition: transform 0.2s, filter 0.2s !important;
}
.hm-tile:nth-child(odd):hover  { transform: rotate(-1.5deg) scale(1.05); filter: brightness(1.08); }
.hm-tile:nth-child(even):hover { transform: rotate( 1.5deg) scale(1.05); filter: brightness(1.08); }

/* Team-Badges bunter */
.team-badges span:nth-child(1) { background: rgba(82,183,136,0.15); color: #1b4332; }
.team-badges span:nth-child(2) { background: rgba(244,160,42,0.15); color: #8a5a00; }

/* ═══════════════════════════════════════════════════════════
   MEHR SPIELEREIEN
   ═══════════════════════════════════════════════════════════ */

/* Reißnagel auf jeder News-Karte */
.news-card { position: relative; overflow: visible !important; margin-top: 10px; }
.news-card::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px; height: 14px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.30), inset 0 -2px 4px rgba(0,0,0,0.20);
  z-index: 5;
}
.news-card:nth-child(1)::before { background: #e63946; }
.news-card:nth-child(2)::before { background: #2196f3; }
.news-card:nth-child(3)::before { background: #43a047; }
.news-card:nth-child(4)::before { background: #9c27b0; }
.news-card--featured::before    { width: 18px; height: 18px; top: -10px; background: #e63946; }

/* News-Tag-Farben je Karte */
.news-card:nth-child(1) .news-tag { color: #c62828; }
.news-card:nth-child(2) .news-tag { color: #1565c0; }
.news-card:nth-child(3) .news-tag { color: #2e7d32; }
.news-card:nth-child(4) .news-tag { color: #6a1b9a; }

/* Klebefilm-Streifen über About-Cards */
.about-card { position: relative; overflow: visible !important; margin-top: 14px; }
.about-card::before {
  content: '';
  position: absolute;
  top: -10px;
  left: calc(50% - 28px);
  width: 56px; height: 18px;
  border-radius: 2px;
  opacity: 0.75;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
  transform: rotate(-1.5deg);
}
.about-card:nth-child(1)::before { background: rgba(253,216,53,0.85); transform: rotate(-2deg);  }
.about-card:nth-child(2)::before { background: rgba(144,224,239,0.85); transform: rotate( 1deg); }
.about-card:nth-child(3)::before { background: rgba(253,216,53,0.85); transform: rotate( 2deg); }
.about-card:nth-child(4)::before { background: rgba(144,224,239,0.85); transform: rotate(-1deg); }

/* Team-Cards: Polaroid-Stil */
.team-card {
  background: #fff !important;
  padding: 10px 10px 28px 10px !important;
  border-radius: 2px !important;
  box-shadow: 3px 5px 18px rgba(0,0,0,0.16) !important;
}
.team-card:nth-child(1) { transform: rotate(-1deg); }
.team-card:nth-child(2) { transform: rotate( 0.8deg); }
.team-card:nth-child(3) { transform: rotate(-0.7deg); }
.team-card:hover        { transform: rotate(0deg) translateY(-6px) scale(1.02) !important; box-shadow: 6px 10px 28px rgba(0,0,0,0.22) !important; }
.team-photo { border-radius: 1px !important; }
.team-info  { padding: 1rem 0.5rem 0.2rem !important; }
.team-name  { font-family: 'Fredoka', sans-serif !important; font-size: 1.05rem !important; }

/* Nav-Link-Hover: Textmarker-Look */
.site-nav .nav-link {
  position: relative;
  z-index: 0;
}
.site-nav .nav-link::after {
  content: '';
  position: absolute;
  left: -2px; right: -2px;
  bottom: 0px;
  height: 9px;
  background: #fdd835;
  border-radius: 2px;
  opacity: 0;
  transform: skewX(-8deg);
  transition: opacity 0.15s;
  z-index: -1;
}
.site-nav .nav-link:hover::after,
.site-nav .nav-link.active::after { opacity: 0.55; }

/* Logo-Icon: Wackeln bei Logo-Hover */
@keyframes schoolbell {
  0%,100% { transform: rotate(0deg); }
  15%      { transform: rotate(-12deg); }
  35%      { transform: rotate(10deg); }
  55%      { transform: rotate(-7deg); }
  75%      { transform: rotate(5deg); }
}
.logo:hover .logo-icon { animation: schoolbell 0.55s ease; }

/* Button aktiv: 3D-Drück-Effekt */
.btn-primary:active {
  transform: translateY(3px) !important;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2) !important;
}

/* Angebots-Nummern: leicht gedreht, abwechselnde Farben */
.angebot-item:nth-child(1) .angebot-num { transform: rotate(-4deg); }
.angebot-item:nth-child(2) .angebot-num { transform: rotate( 3deg); }
.angebot-item:nth-child(3) .angebot-num { transform: rotate(-3deg); }
.angebot-item:nth-child(4) .angebot-num { transform: rotate( 4deg); }
.angebot-item:nth-child(5) .angebot-num { transform: rotate(-3deg); }
.angebot-item:nth-child(6) .angebot-num { transform: rotate( 2deg); }

/* Kontakt-Formular: Submit-Button wackelt bei Hover */
@keyframes jiggle {
  0%,100% { transform: rotate(0deg); }
  25%      { transform: rotate(-2deg); }
  75%      { transform: rotate( 2deg); }
}
.contact-form .btn-primary:hover { animation: jiggle 0.3s ease infinite; }
.contact-form .btn-primary:active { animation: none; }
