:root{
  --bg:#ffffff;
  --surface:#ffffff;
  --surface2:#f6f7f9;

  --text:#111111;
  --muted:#4b5563;

  --brand:#f5d90a;   /* gelb */
  --brand2:#111111;  /* schwarz */
  --gray:#e5e7eb;

  --line:rgba(17,17,17,.12);
  --shadow: 0 10px 30px rgba(0,0,0,.10);
  --radius:16px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}

body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

a{color:inherit}
img{max-width:100%;display:block}

.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:12px; top:12px; width:auto; height:auto; padding:10px 12px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:10px;
  z-index:9999
}

/* HEADER */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 12px 14px;
}

.brand-link{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}
.brand-logo{
  width:46px; height:46px;
  border-radius:50%;
  background:#fff;
  border:1px solid var(--line);
}
.brand-title{font-weight:800; letter-spacing:.2px; font-size:18px}
.brand-sub{color:var(--muted); font-size:13px; margin-top:-2px}

.nav-toggle{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:transparent;
  color:var(--text);
  border:1px solid var(--line);
  border-radius:12px;
  padding:10px 12px;
  cursor:pointer;
}
.nav-toggle-bars{
  width:18px; height:12px; display:inline-block; position:relative;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after{
  content:"";
  position:absolute; left:0; right:0; height:2px;
  background: var(--text);
  border-radius:2px;
}
.nav-toggle-bars::before{ top:0 }
.nav-toggle-bars::after{ bottom:0 }
.nav-toggle-label{font-weight:600; font-size:14px}

.nav{
  display:none;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.95);
}
.nav.is-open{ display:block; }

.nav-list{
  list-style:none;
  margin:0;
  padding: 10px 10px 14px;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.nav-link{
  width:100%;
  text-decoration:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  background: var(--surface);
  font-weight:700;
  color: var(--text);
}

.nav-link:hover{
  background: var(--surface2);
}

.nav-item.nav-cta .nav-link,
.btn{
  border-radius: 12px;
}

.nav-btn{
  background: var(--surface);
  border:1px solid var(--line);
  cursor:pointer;
  font: inherit;
}

.has-dropdown .dropdown{
  list-style:none;
  margin:8px 0 0;
  padding:8px;
  border-radius: 12px;
  border:1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow);
  display:none;
}
.has-dropdown.open .dropdown{ display:block; }

.dropdown a{
  display:block;
  text-decoration:none;
  padding: 10px 10px;
  border-radius:10px;
  color: var(--text);
}
.dropdown a:hover{ background: var(--surface2); }

.chev{opacity:.9}

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  cursor:pointer;
  text-decoration:none;
  font-weight:800;
}
.btn-primary{
  background: var(--brand);
  color:#111;
  border-color: rgba(0,0,0,.15);
}
.btn-ghost{
  background: var(--surface2);
}

.site-main{ min-height: 60vh; }

/* HERO / START */
.hero{
  padding: 18px 14px 8px;
}
.hero-inner{
  max-width: 1100px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.hero h1{
  font-size: 28px;
  line-height: 1.15;
  margin: 0 0 8px;
}
.lead{ color: var(--muted); margin: 0 0 14px; font-size: 16px; }

.quick-actions{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.card-link{
  text-decoration:none;
  padding: 14px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.card-link:hover{ background: var(--surface2); }
.card-link-title{ font-weight:900; margin-bottom:4px; }
.card-link-text{ color: var(--muted); font-size: 14px; }

.hero-side .info-box{
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: var(--surface);
  padding: 14px;
  box-shadow: var(--shadow);
}
.info-title{ font-weight:900; margin-bottom:8px; }
.info-row{ color: var(--muted); margin-bottom:6px; }

.section{
  padding: 18px 14px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-head{
  max-width: 1100px;
  margin: 0 auto 12px;
}
.section-head h2, .section-head h1{
  margin:0 0 6px;
  font-size: 22px;
}
.muted{ color: var(--muted); margin:0; }

.grid-2{
  max-width: 1100px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

/* NEWS */
.news{
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: var(--surface);
  padding: 14px;
  box-shadow: var(--shadow);
}
.news-item{
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.news-item:last-child{ border-bottom:0; }
.news-meta{ color: var(--muted); font-size: 13px; }
.news-title{ margin: 6px 0 6px; font-size: 18px; line-height:1.2; }
.news-actions{ margin-top: 12px; }

/* PANEL */
.panel{
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: var(--surface);
  padding: 14px;
  box-shadow: var(--shadow);
}

.ig-placeholder{
  border:1px dashed rgba(17,17,17,.25);
  border-radius: 14px;
  padding: 14px;
  margin: 10px 0 12px;
  background: #fff;
}
.ig-box p{ color: var(--muted); margin: 6px 0 12px; }


/* CARDS */
.cards{ max-width:1100px; margin:0 auto; display:grid; gap:12px; }

.card{
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: var(--surface);
  padding: 14px;
  box-shadow: var(--shadow);
}

/* TABLE */
.table{
  margin-top: 10px;
  border:1px solid var(--line);
  border-radius: 14px;
  overflow:hidden;
  background:#fff;
}
.tr{
  display:grid;
  grid-template-columns: 1fr 1.4fr .8fr;
  gap:10px;
  padding: 10px 12px;
  border-top:1px solid var(--line);
}
.tr.th{
  background: var(--surface2);
  font-weight:900;
  border-top:0;
}

/* FOOTER (wie Screenshot: schwarz) */
.site-footer{
  margin-top: 24px;
  background: radial-gradient(1200px 400px at 30% 0%, rgba(255,255,255,.10), transparent 60%),
              #000;
  border-top: 1px solid rgba(255,255,255,.14);
  color: #fff;
}
.footer-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 14px;
  display:grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items:start;
}
.footer-title{ font-weight:900; margin-bottom: 8px; }
.footer-text{ color: rgba(255,255,255,.80); margin:0; }

.footer-links{ display:flex; flex-direction:column; gap:6px; margin-top: 12px; }
.footer-links a{ color: #fff; opacity:.9; text-decoration:none; }
.footer-links a:hover{ opacity:1; text-decoration:underline; }

.footer-center{ text-align:left; }
.fan-slogan{
  font-weight: 900;
  letter-spacing: .8px;
  font-size: 26px;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.fan-slogan span{ display:inline-block; margin-top:6px; font-size: 22px; }

.social-block{ display:flex; flex-wrap:wrap; gap:10px; }
.social-btn{
  text-decoration:none;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  padding: 10px 12px;
  border-radius: 12px;
  font-weight:900;
  color:#fff;
}

.sponsor-card{
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  padding: 10px;
}
.sponsor-card img{
  width:100%;
  height:120px;
  object-fit:contain;
  border-radius:10px;
  background:#fff;
  padding:10px;
  display:block;
}


.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 12px 14px;
  color: rgba(255,255,255,.72);
}

/* COOKIEBAR */
.cookiebar{
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 100;
}
.cookiebar-inner{
  max-width: 1100px;
  margin: 0 auto;
  border:1px solid var(--line);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 12px;
  display:flex;
  flex-direction:column;
  gap:10px;
  box-shadow: var(--shadow);
}
.cookiebar-inner p{ margin:0; color: var(--muted); }
.cookiebar-inner a{ color: var(--text); }
.cookiebar-actions{ display:flex; gap:10px; justify-content:flex-end; flex-wrap:wrap; }

/* DESKTOP LAYOUT */
@media (min-width: 900px){
  body{ font-size: 17px; }
  .nav-toggle{ display:none; }

  .nav{ display:block; border-top:0; background: transparent; }
  .nav-list{
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 14px 14px;
    flex-direction:row;
    align-items:center;
    gap:10px;
  }

  .nav-link{
    width:auto;
    border-radius: 10px;
    padding: 10px 12px;
    border: 1px solid transparent;
    background: transparent;
  }
  .nav-link:hover{
    background: var(--surface2);
    border-color: var(--line);
  }

  .nav-item{ position:relative; }

  .has-dropdown .dropdown{
    position:absolute;
    top: calc(100% + 8px);
    left:0;
    min-width: 260px;
    display:none;
    box-shadow: var(--shadow);
  }
  .has-dropdown.open .dropdown{ display:block; }

  .nav-item.nav-cta{ margin-left:auto; }
  .nav-item.nav-cta .btn{ padding: 10px 14px; }

  .hero-inner{
    grid-template-columns: 1.4fr .6fr;
    gap: 18px;
    padding-top: 8px;
  }

  .quick-actions{
    grid-template-columns: 1fr 1fr;
  }

  .grid-2{
    grid-template-columns: 1.2fr .8fr;
  }

  .footer-inner{
    grid-template-columns: .9fr 1.1fr .9fr;
    gap: 24px;
    align-items:center;
  }
  .footer-center{ text-align:center; }
}
/* ===== Header/Navi: kompakter + keine Wortumbrüche ===== */

/* Logo/Text etwas kompakter */
.brand-title{ font-size:16px; line-height:1.1; }
.brand-sub{ font-size:12px; }
.brand-logo{ width:42px; height:42px; }

/* Links nicht umbrechen (wichtig für "Fair Play zum Schiri") */
.nav-link,
.nav-btn,
.dropdown a{
  white-space: nowrap;
}

/* Desktop: Navi kompakter und besser ausgerichtet */
@media (min-width: 900px){

  /* Weniger Höhe im Header */
  .topbar{ padding: 10px 14px; }

  /* Navigationszeile kompakter */
  .nav-list{
    padding: 6px 14px 10px;
    gap: 6px;
    flex-wrap: wrap;            /* falls Bildschirm kleiner ist: sauber umbrechen */
    align-items: center;
  }

  /* Menü-Buttons kleiner wie klassische Navbar */
  .nav-link{
    font-size: 14px;
    padding: 8px 10px;
  }

  /* Hover etwas “klarer” */
  .nav-link:hover{
    background: var(--surface2);
    border-color: var(--line);
  }

  /* Dropdown: kompakt + sauberer Look */
  .has-dropdown .dropdown{
    min-width: 240px;
    padding: 6px;
  }
  .dropdown a{
    padding: 9px 10px;
  }

  /* CTA Button minimal kompakter */
  .nav-item.nav-cta .btn{
    padding: 9px 12px;
    font-size: 14px;
  }
}
@media (min-width: 900px){
  .nav{
    background: var(--surface2);
    border-top: 1px solid var(--line);
  }

  .nav-link{
    background: transparent;
  }
}
/* ===== Header-Banner + graue Menüleiste (ähnlich alte Seite) ===== */

.header-banner{
  background:
    linear-gradient(135deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.02) 45%, rgba(0,0,0,.00) 70%),
    linear-gradient(225deg, rgba(0,0,0,.06) 0%, rgba(0,0,0,.00) 55%),
    #fff;
  border-bottom: 1px solid var(--line);
}

.banner-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 14px;
}

/* Mobile: Toggle-Leiste */
.topbar{
  max-width: 1100px;
  margin: 0 auto;
  padding: 8px 14px;
  display:flex;
  justify-content:flex-end;
}

/* Graue Navbar */
.nav.nav-bar{
  display:none;
  background: #e9eaec;
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.10);
}

.nav.nav-bar.is-open{ display:block; }

.nav.nav-bar .nav-list{
  max-width: 1100px;
  margin: 0 auto;
  padding: 8px 14px;
}

.nav.nav-bar .nav-link{
  border: 1px solid transparent;
  background: transparent;
  font-size: 14px;
  padding: 8px 10px;
}

.nav.nav-bar .nav-link:hover{
  background: rgba(255,255,255,.55);
  border-color: rgba(0,0,0,.10);
}

/* Dropdown im alten Stil: weiß, klar */
.nav.nav-bar .has-dropdown .dropdown{
  background:#fff;
  border:1px solid rgba(0,0,0,.12);
  box-shadow: var(--shadow);
}

/* Desktop: Toggle ausblenden, Menüleiste immer sichtbar */
@media (min-width: 900px){
  .topbar{ display:none; }
  .nav.nav-bar{ display:block; }
}
/* ===== Banner: großes Logo rechts (wie alte Seite) ===== */

.banner-grid{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
}

.big-title{
  font-size: 28px;
  font-weight: 900;
  letter-spacing: .2px;
}

/* Großes Logo rechts */
.banner-logo-wrap{
  display:flex;
  justify-content:flex-end;
  align-items:center;
}

.banner-logo{
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background:#fff;
  border: 4px solid rgba(245,217,10,.85);
  box-shadow: 0 10px 25px rgba(0,0,0,.20);
  padding: 6px;
}

/* Mobile: Logo kleiner, Text bleibt gut lesbar */
@media (max-width: 550px){
  .big-title{
    font-size: 18px;
    line-height: 1.15;
  }
  .banner-logo{
    width: 64px;
    height: 64px;
    border-width: 3px;
    padding: 4px;
  }
}
/* ===== Diagonale Banner-Optik wie alte Seite ===== */

.header-banner{
  position: relative;
  overflow: hidden;
}

/* zwei diagonale Flächen */
.header-banner::before,
.header-banner::after{
  content:"";
  position:absolute;
  top:-120px;
  width: 520px;
  height: 340px;
  transform: rotate(-18deg);
  pointer-events:none;
  z-index: 0;
  border-radius: 24px;
}

/* hellgraue Fläche (links/mitte) */
.header-banner::before{
  left: 45%;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.02));
}

/* dunklere Fläche (rechts) */
.header-banner::after{
  left: 62%;
  background: linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.08));
}

/* Inhalt über die Shapes legen */
.banner-inner{
  position: relative;
  z-index: 1;
}

/* Mobile: Shapes kleiner, damit nichts “erschlägt” */
@media (max-width: 650px){
  .header-banner::before,
  .header-banner::after{
    top:-140px;
    width: 360px;
    height: 260px;
  }
  .header-banner::before{ left: 35%; }
  .header-banner::after{ left: 55%; }
}
/* ===== Menüleiste wie alte Seite (grau, flach, klare Buttons) ===== */

.nav.nav-bar{
  background: #cfcfcf;                 /* klassisches Vereins-Grau */
  border-top: 1px solid rgba(0,0,0,.12);
  border-bottom: 1px solid rgba(0,0,0,.18);
}

/* Desktop: Navbar etwas kompakter */
@media (min-width: 900px){
  .nav.nav-bar .nav-list{
    padding: 0;
    gap: 0;                            /* keine großen Abstände */
    align-items: stretch;
  }

  .nav.nav-bar .nav-item{
    position: relative;
  }

  /* Links wie Tabs/Buttons */
  .nav.nav-bar .nav-link{
    border-radius: 0;                  /* flach wie alte Seite */
    padding: 12px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #222;
    border: none;
    background: transparent;
  }

  /* Trenner zwischen Menüeinträgen */
  .nav.nav-bar .nav-item:not(.nav-cta) .nav-link{
    border-right: 1px solid rgba(0,0,0,.15);
  }

  /* Hover wie alter Button */
  .nav.nav-bar .nav-link:hover{
    background: #bdbdbd;
  }

  /* Dropdown Button exakt gleich wie Link */
  .nav.nav-bar .nav-btn{
    border: none;
    background: transparent;
    border-right: 1px solid rgba(0,0,0,.15);
  }

  /* Dropdown Menü: klassisch */
  .nav.nav-bar .has-dropdown .dropdown{
    border-radius: 0;
    padding: 6px 0;
    border: 1px solid rgba(0,0,0,.18);
    box-shadow: 0 10px 20px rgba(0,0,0,.18);
    margin-top: 0;
  }

  .nav.nav-bar .dropdown a{
    border-radius: 0;
    padding: 10px 14px;
    font-size: 13px;
    color:#222;
  }

  .nav.nav-bar .dropdown a:hover{
    background: #f0f0f0;
  }

  /* CTA rechts als gelber Block */
  .nav.nav-bar .nav-item.nav-cta{
    margin-left: auto;
    display:flex;
    align-items: center;
    padding-left: 10px;
  }

  .nav.nav-bar .nav-item.nav-cta .btn{
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 6px 16px rgba(0,0,0,.12);
  }
}

/* "Start" nur aktiv färben, wenn wirklich aktiv */
.nav.nav-bar .nav-item:first-child > .nav-link.is-active{
  background: #b0b0b0;
}
.nav.nav-bar .nav-item:first-child > .nav-link.is-active:hover{
  background: #a8a8a8;
}

/* ===== Active Menü Markierung ===== */
.nav-link.is-active,
.nav-btn.is-active{
  background: #b0b0b0 !important;
  font-weight: 800;
}
/* Active Markierung auch in Dropdowns */
.dropdown a.is-active{
  background: #b0b0b0;
  font-weight: 800;
}
.dropdown a.is-active:hover{
  background: #a8a8a8;
}

.nav-link.is-active:hover,
.nav-btn.is-active:hover{
  background: #a8a8a8 !important;
}
/* ===== Termine: Mobile Cards ===== */
.hide-mobile{ display:block; }
.show-mobile{ display:none; }

@media (max-width: 650px){
  .hide-mobile{ display:none; }
  .show-mobile{ display:block; }

  .term-cards{
    display:grid;
    gap:10px;
    margin-top: 10px;
  }
  .term-card{
    border:1px solid var(--line);
    border-radius: 14px;
    background: var(--surface);
    padding: 12px;
    box-shadow: var(--shadow);
  }
  .term-top{
    display:flex;
    justify-content:space-between;
    gap:10px;
    align-items:flex-start;
    margin-bottom:8px;
  }
  .term-date{
    font-weight:900;
    font-size: 14px;
  }
  .term-place{
    font-size: 13px;
    color: var(--muted);
    text-align:right;
  }
  .term-match{
    font-weight:800;
    line-height:1.25;
  }
}
/* ===== Termine Filter ===== */
.term-filter{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}
.term-filter-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--surface2);
  text-decoration:none;
  font-weight:900;
}
.term-filter-btn:hover{
  background:#e9eaec;
}
.term-filter-btn.is-on{
  background: var(--brand);
  border-color: rgba(0,0,0,.15);
}
/* ===== Sponsoren Grid ===== */
.sponsor-grid{
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
}

@media(min-width:700px){
  .sponsor-grid{
    grid-template-columns: 1fr 1fr;
  }
}
@media(min-width:1000px){
  .sponsor-grid{
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.sponsor-item{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 14px;
  box-shadow: var(--shadow);
}

.sponsor-link{
  text-decoration:none;
  display:block;
}

.sponsor-logo{
  width:100%;
  height:120px;
  object-fit:contain;
  background:#fff;
  border-radius:14px;
  border:1px solid var(--line);
  padding:10px;
}

.sponsor-placeholder{
  width:100%;
  height:120px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: var(--surface2);
  border:1px dashed var(--line);
  border-radius:14px;
  font-weight:900;
  text-align:center;
  padding:10px;
}

.sponsor-name{
  margin-top:10px;
  font-weight:900;
  text-align:center;
}
/* ===== Downloads ===== */
.download-list{
  display:grid;
  gap:12px;
}
.download-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 12px;
  border:1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}
.download-title{
  font-weight:900;
}
@media(max-width:650px){
  .download-item{
    flex-direction:column;
    align-items:flex-start;
  }
  .download-item .btn{
    width:100%;
  }
}
.social-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.social-btn svg{
  display: block;
}
/* Footer Social: sauber ausrichten */
.site-footer .social-block{
  display: flex;
  flex-wrap: wrap;            /* mobil darf umbrechen */
  gap: 10px;
  justify-content: center;
  align-items: center;
}

/* ab Desktop: alles in einer Reihe */
@media (min-width: 900px){
  .site-footer .social-block{
    flex-wrap: nowrap;
  }
}

/* Icons + Text sauber nebeneinander */
.site-footer .social-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

/* Hover Farben (Original-Farben) */
.site-footer .social-btn[aria-label="Instagram"]:hover{
  color: #E1306C;
}
.site-footer .social-btn[aria-label="Facebook"]:hover{
  color: #1877F2;
}
.site-footer .social-btn[aria-label="YouTube"]:hover{
  color: #FF0000;
}
/* NUR Startseite: Social Links clean (FC07 Style: gelb/schwarz/grau) */
.link-block{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.link-block a{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  text-decoration: none;

  border: 1px solid var(--line);
  background: var(--surface2);
  color: var(--text);

  font-weight: 800;
  font-size: 13px;

  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
}

.link-block a:hover{
  transform: translateY(-1px);
  background: #fff;
}

/* Einheitlicher Hover in Vereinsfarben */
.link-block a[href*="instagram.com"]:hover,
.link-block a[href*="facebook.com"]:hover,
.link-block a[href*="youtube.com"]:hover{
  background: var(--brand);
  border-color: rgba(0,0,0,.18);
  color: #111;
}
/* Startseite Social Chips (mit Logos + Brand Hover) */
.link-block.link-block-icons{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.link-block.link-block-icons .social-chip{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  text-decoration: none;

  border: 1px solid var(--line);
  background: var(--surface2);
  color: var(--text);

  font-weight: 800;
  font-size: 13px;

  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
}

.link-block.link-block-icons .social-chip:hover{
  transform: translateY(-1px);
  background: #fff;
}

.link-block.link-block-icons .chip-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(0,0,0,.06);
}

.link-block.link-block-icons svg{
  display: block;
}

/* Hover: Original Farben */
.link-block.link-block-icons .social-chip[aria-label="Instagram"]:hover{
  border-color: rgba(225,48,108,.55);
  color: #E1306C;
}

.link-block.link-block-icons .social-chip[aria-label="Facebook"]:hover{
  border-color: rgba(24,119,242,.55);
  color: #1877F2;
}

.link-block.link-block-icons .social-chip[aria-label="YouTube"]:hover{
  border-color: rgba(255,0,0,.55);
  color: #FF0000;
}
/* Language Switch (Flaggen-Leiste) */
.lang-switch{
  position: fixed;
  right: 14px;
  top: 180px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(0,0,0,.08);
  backdrop-filter: blur(6px);
}

.lang-switch button{
  width: 36px;
  height: 30px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}

.lang-switch button.is-active{
  outline: 2px solid rgba(245,217,10,.9);
  border-color: rgba(0,0,0,.18);
}
