:root {
  --bg: #ffffff;
  --bg-alt: #f5f5f7;
  --primary: #f2a900;
  --primary-dark: #d28c00;
  --text: #111111;
  --muted: #555555;
  --border: #e0e0e5;
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.08);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background-color: var(--bg);
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4.5rem 0;
}

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

#partner {
  background-color: #e2ceda;
  --partner-logo-width: 264px;
  --partner-logo-height: 106px;
}

#behind-the-team {
  background-color: #e2ceda;
}

#galerie {
  background-color: #e2ceda;
}

#kontakt {
  background-color: #e2ceda;
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
}

#aktuelles,
#support-us {
  background-color: #f3f3f3;
}

#aktuelles h2 {
  color: #7d6677;
}

/* Glow wie Partner- / Über-uns-Boxen */
#aktuelles .table {
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.06),
    0 0 20px rgba(125, 102, 119, 0.18),
    0 0 36px rgba(125, 102, 119, 0.1);
}

#aktuelles .table thead tr {
  background-color: #715967;
}

#aktuelles .table thead th {
  color: #ffffff;
}

#aktuelles .news-layout .table th:nth-child(5),
#aktuelles .news-layout .table td:nth-child(5) {
  white-space: nowrap;
}

#aktuelles .news-layout .table th:last-child,
#aktuelles .news-layout .table td:last-child {
  min-width: 6.5rem;
}

/* Link-Hover wie .hero-btn--ghost („Partner werden“) */
#aktuelles .table tbody td:nth-child(4) a,
#aktuelles .table tbody td:nth-child(5) a {
  color: #153a42;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-color: rgba(21, 58, 66, 0.45);
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

#aktuelles .table tbody td:nth-child(4) a:hover,
#aktuelles .table tbody td:nth-child(5) a:hover {
  color: #d69e9e;
  text-decoration-color: #d69e9e;
}

#aktuelles .table tbody tr:nth-child(odd) {
  background-color: #ffffff;
}

#aktuelles .table tbody tr:nth-child(even) {
  background-color: #f8f7f9;
}

/* Anker-Scroll: Sticky Header berücksichtigen */
#ueber-uns,
#behind-the-team,
#partner,
#aktuelles,
#galerie,
#support-us,
#kontakt {
  scroll-margin-top: 5.5rem;
}

h1,
h2,
h3 {
  margin: 0 0 1.25rem;
  letter-spacing: 0.03em;
}

.section-intro {
  max-width: 700px;
  margin-top: 10px;
  margin-bottom: 40px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid rgba(21, 58, 66, 0.08);
  box-shadow: 0 4px 24px -12px rgba(15, 23, 42, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  gap: 1.5rem;
}

a.logo {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  line-height: 0;
  text-decoration: none;
  color: inherit;
}

a.logo:focus-visible {
  outline: 2px solid rgba(21, 58, 66, 0.4);
  outline-offset: 4px;
  border-radius: 6px;
}

.logo-img {
  display: block;
  height: 4.392rem;
  width: auto;
  max-width: min(13.18rem, 61.49vw);
  object-fit: contain;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0.35rem 0.15rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.main-nav a {
  position: relative;
  padding: 0.55rem 0.75rem;
  color: #64748b;
  transition: color 0.22s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.35rem;
  height: 2px;
  border-radius: 1px;
  background: #d7a3a3;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.main-nav a:hover {
  color: #153a42;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.main-nav a:focus-visible {
  outline: 2px solid rgba(21, 58, 66, 0.4);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Aktiver Navigationspunkt (Scroll-Spy) */
.main-nav a.active {
  color: #715967;
  font-weight: 600;
}

.main-nav a.active::after {
  left: 50%;
  right: auto;
  bottom: 0.2rem;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #d7a3a3;
  transform: translateX(-50%) scaleX(1);
  opacity: 1;
}

.main-nav a.active:hover {
  color: #715967;
}

.main-nav a.active:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-toggle {
  display: none;
  flex-shrink: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  color: #153a42;
  transition: background-color 0.2s ease;
}

.nav-toggle:hover {
  background: rgba(21, 58, 66, 0.06);
}

.nav-toggle:focus-visible {
  outline: 2px solid rgba(21, 58, 66, 0.4);
  outline-offset: 3px;
}

.nav-toggle-bar {
  display: block;
  width: 1.35rem;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transition:
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.2s ease;
}

.site-header.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay-panel {
  min-width: 0;
}

@media (min-width: 961px) {
  .nav-overlay {
    position: static;
    display: block;
    flex: 0 1 auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
  }

  .nav-overlay-panel {
    width: auto;
    max-width: none;
    padding: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
  }
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  background-color: #f2f1ef;
  padding-top: calc(5.5rem + 200px);
  padding-bottom: calc(4.5rem + 200px);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-text {
  /* --dark: Kontrast auf transparenter Box (entspricht var(--text) auf hellen Flächen) */
  --dark: #ffffff;
  background-color: rgba(0, 0, 0, 0.45);
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-lg);
  max-width: 520px;
  position: relative;
  top: 200px;
  box-shadow:
    0 0 22px rgba(125, 102, 119, 0.2),
    0 0 44px rgba(125, 102, 119, 0.1);
}

/* Hero-Textbox: Inhalt & Typografie (Layout der Box unverändert) */
.hero-text-inner {
  text-align: center;
  animation: heroTextFadeIn 0.75s ease-out both;
}

@keyframes heroTextFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
}

.hero-headline {
  margin: 0 0 1rem;
  font-size: clamp(1.55rem, 2.9vw, 2.35rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.hero-headline-main {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  font-size: calc(1em + 5px);
  color: #d6a1a1;
  font-weight: 900;
}

.hero-headline-accent {
  display: inline-block;
  margin-top: 0.12em;
  color: var(--primary);
  font-weight: 900;
}

.hero-desc {
  margin: 0 auto 1.15rem;
  max-width: 520px;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 700;
  color: #ffffff;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: clamp(6px, 0.9vw, 14px);
  margin: 0 0 1.35rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
  max-width: 100%;
  font-size: 10px;
  font-weight: 800;
}

.hero-stats span {
  flex-shrink: 0;
}

.hero-stats-sep {
  color: #ffffff;
  font-weight: 700;
  opacity: 0.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.15rem;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.15s ease;
}

.hero-btn--primary {
  min-height: 2.75rem;
  padding: 0.6rem 1.35rem;
  border-radius: 999px;
  background: #7d6677;
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(242, 169, 0, 0.28);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.hero-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(125, 102, 119, 0.28);
  background-color: #7d6677;
}

.hero-btn--ghost {
  padding: 0.35rem 0.15rem;
  color: #ffffff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-color: rgba(255, 255, 255, 0.45);
}

.hero-btn--ghost:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}

.hero-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.55);
  outline-offset: 3px;
  border-radius: 6px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-text-inner {
    animation: none;
  }

  .nav-overlay,
  .nav-toggle-bar {
    transition: none;
  }
}

.hero-placeholder {
  display: flex;
  justify-content: flex-end;
}

/* Generic placeholders */

.photo-placeholder,
.logo-placeholder {
  border-radius: var(--radius-lg);
  background-image: linear-gradient(135deg, #f1f1f5, #e0e0eb);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #777789;
  font-size: 0.8rem;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
}

.photo-placeholder {
  aspect-ratio: 3 / 4;
}

.logo-placeholder {
  aspect-ratio: 3 / 1.2;
  border-radius: var(--radius-md);
}

/* Über uns – Spielerinnen */
.players-grid {
 display: grid;
 grid-template-columns: repeat(2, minmax(0, 1fr));
 gap: 1.75rem;
 margin-top: 2.5rem;
}

.player-profile {
 display: flex;
 flex-direction: column;
 gap: 1.25rem;
 min-width: 0;
}

.player-card {
 display: grid;
 grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
 gap: 1.5rem;
 align-items: stretch;
}

.player-photo {
 width: 100%;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-soft);
 object-fit: cover;
}

.player-content {
 background-color: #ffffff;
 border-radius: var(--radius-lg);
 padding: 1.5rem 1.6rem;
 box-shadow: var(--shadow-soft);
}

.player-content h3 {
 margin-bottom: 1rem;
}

dl {
 margin: 0;
}

.dl-row {
 display: grid;
 grid-template-columns: 0.9fr 1.4fr;
 padding: 0.25rem 0;
 font-size: 0.9rem;
}

dt {
 font-weight: 600;
 color: var(--muted);
}

dd {
 margin: 0;
}

/* Joana & Leona – modernere Karten-Darstellung */
.player-card--modern .player-content--modern {
 padding: 1.45rem 1.45rem 1.55rem;
 border: 1px solid rgba(17, 17, 17, 0.06);
 background: linear-gradient(165deg, #ffffff 0%, #f9fafb 100%);
 box-shadow: 0 14px 40px rgba(15, 23, 42, 0.1);
}

.player-card-head {
 margin-bottom: 1.25rem;
 padding-bottom: 1rem;
 border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.player-card--modern .player-content--modern h3 {
 margin: 0 0 0.35rem;
 font-size: 1.35rem;
 font-weight: 700;
 letter-spacing: 0.02em;
 color: #111827;
}

.player-card--modern .player-stats .dl-row {
 grid-template-columns: minmax(5.75rem, 26%) minmax(0, 1fr);
 column-gap: 0.85rem;
 padding: 0.65rem 0;
 font-size: 0.875rem;
 border-bottom: 1px solid rgba(17, 17, 17, 0.05);
 align-items: flex-start;
}

.player-card--modern .player-stats .dl-row:last-child {
 border-bottom: none;
 padding-bottom: 0;
}

.player-card--modern .player-stats dt {
 font-size: 0.68rem;
 font-weight: 600;
 letter-spacing: 0.08em;
 text-transform: uppercase;
 color: #6b7280;
}

.player-card--modern .player-stats dd {
 min-width: 0;
 font-weight: 500;
 color: #111827;
 line-height: 1.45;
}

.player-card--modern .dl-row--highlights {
 border-bottom: none;
}

.player-card--modern .dl-row--highlights dt {
 align-self: flex-start;
}

.player-highlights-list {
 margin: 0;
 padding: 0;
 list-style: none;
 color: #374151;
}

.player-highlights-list li {
 display: block;
 line-height: 1.5;
 margin-bottom: 0.35rem;
}

.player-highlights-list li:last-child {
 margin-bottom: 0;
}

.player-photo-frame {
 display: contents;
}

.player-card--modern .player-photo {
 box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
}

.player-photo--joana {
 object-position: center 12%;
}

.player-photo--leona {
 object-position: center 15%;
}

.about-social-card {
 margin-top: 0;
 padding: 0.85rem 1.5rem;
 border-radius: var(--radius-lg);
 background-color: #fafafc;
 border: 1px solid rgba(17, 17, 17, 0.06);
 box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.about-social-text {
 margin: 0;
 font-size: 0.98rem;
 line-height: 1.45;
 color: #374151;
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 gap: 0.55rem 0.85rem;
}

.about-social-icons {
 display: inline-flex;
 align-items: center;
 gap: 0.65rem;
}

.about-social-link {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 width: 2.35rem;
 height: 2.35rem;
 border-radius: 999px;
 background-color: #ffffff;
 color: #715967;
 border: 1px solid rgba(17, 17, 17, 0.06);
 box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
 transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease,
 border-color 0.2s ease, box-shadow 0.2s ease;
}

.about-social-link:hover {
 background-color: #715967;
 color: #ffffff;
 border-color: #715967;
 box-shadow: 0 4px 12px rgba(113, 89, 103, 0.25);
 transform: translateY(-1px);
}

.about-social-link:focus-visible {
 outline: 2px solid #715967;
 outline-offset: 3px;
}

.about-social-icon {
 width: 1.2rem;
 height: 1.2rem;
 display: block;
}

/* Über uns – Titel & Purple-Glow */
#ueber-uns h2 {
  color: #7d6677;
}

#ueber-uns .player-card h3,
#ueber-uns .player-card--modern .player-content--modern h3 {
  color: #7d6677;
}

#ueber-uns .player-content--modern {
  box-shadow:
    0 14px 40px rgba(15, 23, 42, 0.1),
    0 0 22px rgba(125, 102, 119, 0.2),
    0 0 44px rgba(125, 102, 119, 0.1);
}

#ueber-uns .player-card--modern .player-photo {
  box-shadow:
    0 16px 40px rgba(15, 23, 42, 0.14),
    0 0 20px rgba(125, 102, 119, 0.22),
    0 0 36px rgba(125, 102, 119, 0.12);
}

#ueber-uns .about-social-card {
  box-shadow:
    0 4px 14px rgba(15, 23, 42, 0.06),
    0 0 20px rgba(125, 102, 119, 0.18),
    0 0 36px rgba(125, 102, 119, 0.1);
}

/* Behind the Team */

#behind-the-team h2 {
  color: #7d6677;
}

#behind-the-team .staff-photo {
  border: 1px solid rgba(125, 102, 119, 0.38);
  box-shadow:
    0 18px 44px rgba(15, 23, 42, 0.16),
    0 0 36px rgba(125, 102, 119, 0.45),
    0 0 72px rgba(125, 102, 119, 0.28);
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

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

.staff-card .photo-placeholder {
  margin-bottom: 1rem;
  aspect-ratio: 1 / 1;
}

.staff-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-soft);
  margin-bottom: 1rem;
}

.staff-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.staff-name {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Bild zwischen Behind the Team & Partner (fixierter Hintergrund, Inhalt scrollt darüber) */

.split-overlay-strip {
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  min-height: min(52vh, 560px);
  background-color: #1a1a1a;
  background-image: url("assets/joana-action.jpg");
  background-size: cover;
  background-position: center 28%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.split-overlay-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.08) 0%,
    transparent 28%,
    transparent 72%,
    rgba(226, 206, 218, 0.22) 100%
  );
}

.split-overlay-strip--gallery-support {
  background-image: url("assets/leona-action.jpg");
  background-position: center 58%;
}

@media (max-width: 896px) {
  .split-overlay-strip {
    min-height: min(44vh, 420px);
    background-attachment: scroll;
  }
}

@media (max-width: 720px) {
  .split-overlay-strip {
    min-height: min(38vh, 340px);
  }
}

/* Partner */

#partner h2 {
  color: #7d6677;
}

.partner-block {
  margin-top: 2.5rem;
}

.partner-block h3 {
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

#partner .partner-block .logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  grid-template-columns: none;
}

#partner .partner-block .logo-row + .logo-row {
  margin-top: 1rem;
}

#partner .partner-block .logo-row img.partner-logo {
  display: block;
  box-sizing: border-box;
  flex: 0 0 var(--partner-logo-width);
  flex-shrink: 0;
  width: var(--partner-logo-width);
  min-width: var(--partner-logo-width);
  max-width: var(--partner-logo-width);
  height: var(--partner-logo-height);
  min-height: var(--partner-logo-height);
  max-height: var(--partner-logo-height);
  object-fit: contain;
  background-color: #e7e7eb;
  border-radius: var(--radius-md);
  padding: 0.75rem;
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.06),
    0 0 20px rgba(125, 102, 119, 0.18),
    0 0 36px rgba(125, 102, 119, 0.1);
}

/* Aktuelles */

.news-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.news-layout > div:only-child {
  grid-column: 1 / -1;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  background-color: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.table thead {
  background-color: #f7f7fa;
}

.table th,
.table td {
  padding: 0.7rem 0.9rem;
  text-align: left;
}

.table th {
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--muted);
}

.table tbody tr:nth-child(even) {
  background-color: #fafafa;
}

/* Galerie */

#galerie h2 {
  color: #7d6677;
}

/* Glow wie #ueber-uns .player-card--modern .player-photo */
#galerie .gallery-photo {
  box-shadow:
    0 16px 40px rgba(15, 23, 42, 0.14),
    0 0 20px rgba(125, 102, 119, 0.22),
    0 0 36px rgba(125, 102, 119, 0.12);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.gallery-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

/* Einzelnes Hochformatbild ohne Abschneiden darstellen */
.gallery-photo[src$="gallery-duo-2.png"] {
  object-fit: contain;
  background-color: #000000;
}



/* Support Us */

#support-us h2 {
  margin-bottom: 0.35rem;
  color: #7d6677;
}

/* Glow wie #ueber-uns .player-content--modern */
#support-us .support-form-panel {
  box-shadow:
    0 14px 40px rgba(15, 23, 42, 0.1),
    0 0 22px rgba(125, 102, 119, 0.2),
    0 0 44px rgba(125, 102, 119, 0.1);
}

.support-lead {
  margin: 0 0 1.35rem;
  max-width: none;
  font-size: 1rem;
  line-height: 1.55;
  color: #6b7280;
}

.support-form-panel {
  margin-top: 2rem;
  width: 100%;
  max-width: none;
  background: #ffffff;
  border-radius: 24px;
  padding: 1.75rem;
}

.support-form {
  margin: 0;
  max-width: 100%;
}

.form-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-field {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.form-field-small {
  flex: 0.35;
}

.form-field-wide {
  flex: 1.5;
}

label {
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
  color: var(--muted);
}

input,
textarea {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  line-height: inherit;
  padding: 0.75rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #ffffff;
  color: var(--text);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

textarea {
  min-height: 140px;
  resize: vertical;
  border-radius: 18px;
}

input::placeholder,
textarea::placeholder {
  color: #8a8a95;
}

input:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(242, 169, 0, 0.16);
}

.support-form-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

/* Wie .hero-btn--primary („Mehr über uns“) */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.6rem 1.35rem;
  border-radius: 999px;
  border: none;
  background: #7d6677;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(242, 169, 0, 0.28);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(125, 102, 119, 0.28);
  background-color: #7d6677;
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 8px 20px rgba(242, 169, 0, 0.28);
}

.btn-primary:focus-visible {
  outline: 2px solid #7d6677;
  outline-offset: 3px;
}

.btn-primary:disabled {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 8px 20px rgba(125, 102, 119, 0.18);
}

.btn-primary.is-loading::after {
  content: "";
  width: 14px;
  height: 14px;
  margin-left: 0.6rem;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: supportSpin 0.8s linear infinite;
}

@keyframes supportSpin {
  to {
    transform: rotate(360deg);
  }
}

.form-status {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
}

.form-status.success {
  color: #1d7a3c;
}

.form-status.error {
  color: #a32626;
}

/* Support Overlay */

.support-overlay[hidden] {
  display: none !important;
}

.support-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.support-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: supportOverlayFade 0.22s ease;
}

.support-overlay-dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 460px);
  margin: min(12vh, 6rem) auto 0;
  background: #ffffff;
  border-radius: 24px;
  padding: 2rem 1.5rem 1.5rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  text-align: center;
  animation: supportOverlayPop 0.24s ease;
}

.support-overlay-x {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 999px;
  background: #f3f3f5;
  color: #555555;
  font-size: 1.5rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.15s ease, transform 0.15s ease;
}

.support-overlay-x:hover {
  background: #ebebef;
  transform: scale(1.03);
}

.support-overlay-title {
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
}

.support-overlay-text {
  margin: 0 0 1.25rem;
  color: var(--muted);
}

.support-overlay-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.7rem 1.4rem;
  border: none;
  border-radius: 999px;
  background: #715967;
  color: #ffffff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(113, 89, 103, 0.32);
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}

.support-overlay-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: 0 14px 28px rgba(113, 89, 103, 0.38);
}

body.overlay-open {
  overflow: hidden;
}

@keyframes supportOverlayFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes supportOverlayPop {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Responsive */

@media (max-width: 720px) {
  .support-form-panel {
    padding: 1.2rem;
    border-radius: 20px;
  }

  .form-row {
    flex-direction: column;
    flex-wrap: wrap;
  }

  .form-field-small,
  .form-field-wide {
    flex: 1 1 auto;
  }

  .support-form-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .form-status {
    text-align: center;
  }

  .support-overlay-dialog {
    width: min(92vw, 420px);
    padding: 1.7rem 1.15rem 1.2rem;
    margin-top: 8vh;
  }
}

/* Kontakt */

#kontakt h2 {
  margin-bottom: 0.35rem;
  color: #7d6677;
}

/* Glow wie #ueber-uns .player-content--modern */
#kontakt .contact-panel {
  box-shadow:
    0 14px 40px rgba(15, 23, 42, 0.1),
    0 0 22px rgba(125, 102, 119, 0.2),
    0 0 44px rgba(125, 102, 119, 0.1);
}

.contact-lead {
  margin: 0 0 1.35rem;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.55;
  color: #6b7280;
}

.contact-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
  margin-top: 0;
  padding: 2rem 2.25rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, #ffffff 0%, #f7fafb 100%);
  border: 1px solid rgba(17, 17, 17, 0.06);
}

.contact-panel-col {
  margin: 0;
}

.contact-panel-col:first-child {
  padding-right: 2rem;
}

.contact-panel-col:last-child {
  padding-left: 2rem;
  border-left: 1px solid rgba(21, 58, 66, 0.12);
}

.contact-panel h3 {
  margin: 0 0 0.85rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b7280;
}

.contact-text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #374151;
}

/* Link-Hover wie #aktuelles („Zum Ticker“ / „Zum Stream“) */
.contact-mail {
  font-weight: 600;
  color: #153a42;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-color: rgba(21, 58, 66, 0.45);
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.contact-mail:hover {
  color: #d69e9e;
  text-decoration-color: #d69e9e;
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  padding: 1.3rem 0 1.6rem;
  font-size: 0.8rem;
  background-color: #715967;
  color: #d4d2d3;
}

.site-footer p,
.site-footer a {
  color: #d4d2d3;
}

/* Link-Hover wie .contact-mail (Kontakt E-Mail), ohne Unterstreichung */
.site-footer p a {
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #d4d2d3;
}

.site-footer .back-to-top {
  font-weight: 600;
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer .back-to-top:hover {
  color: var(--primary);
}

/* Responsive */

@media (max-width: 960px) {
  body {
    overflow-x: clip;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-placeholder {
    display: none;
  }

  .players-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .player-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .player-profile .player-card--modern {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    gap: 1.25rem;
  }

  .player-profile .player-photo-frame {
    display: block;
    width: 100%;
    max-width: 100%;
    align-self: stretch;
    box-sizing: border-box;
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 3 / 4;
    max-height: none;
    height: auto;
    box-shadow:
      0 16px 40px rgba(15, 23, 42, 0.14),
      0 0 20px rgba(125, 102, 119, 0.22),
      0 0 36px rgba(125, 102, 119, 0.12);
  }

  .player-profile .player-content--modern {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .player-card--modern .player-photo {
    display: block;
    width: 100%;
    height: 100%;
    max-height: none;
    aspect-ratio: auto;
    border-radius: 0;
    box-shadow: none;
    object-fit: cover;
  }

  .player-photo--joana {
    object-position: center 10%;
  }

  .player-photo--leona {
    object-position: center 12%;
  }

  #ueber-uns .player-card--modern .player-photo {
    box-shadow: none;
  }

  .staff-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #ueber-uns,
  #behind-the-team,
  #partner,
  #aktuelles,
  #galerie,
  #support-us,
  #kontakt {
    scroll-margin-top: 5rem;
  }

  body.nav-open {
    overflow: hidden;
  }

  .site-header.nav-open {
    z-index: 1100;
  }

  .header-inner {
    flex-wrap: nowrap;
    padding: 0.7rem 1.1rem;
    gap: 0.75rem;
  }

  a.logo {
    min-width: 0;
    flex: 0 1 auto;
  }

  .logo-img {
    height: 3.663rem;
    max-width: min(10.98rem, 55.64vw);
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 1102;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 1101;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 4.75rem 1.1rem 2rem;
    box-sizing: border-box;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.25s ease,
      visibility 0.25s ease;
  }

  .nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-overlay-panel {
    width: 100%;
    max-width: 22rem;
    padding: 1.15rem 1rem 1.25rem;
    border-radius: 20px;
    background: #ffffff;
    box-shadow:
      0 24px 60px rgba(15, 23, 42, 0.2),
      0 0 22px rgba(125, 102, 119, 0.12);
  }

  .main-nav {
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0.15rem;
    font-size: 1rem;
  }

  .main-nav a {
    padding: 0.85rem 0.9rem;
    border-radius: 10px;
    transition:
      color 0.22s ease,
      background-color 0.2s ease;
  }

  .main-nav a:hover {
    background: rgba(21, 58, 66, 0.04);
  }

  .main-nav a::after {
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.5rem;
  }

  .main-nav a.active::after {
    bottom: 0.4rem;
  }

  .hero {
    padding-top: 5.5rem;
    padding-bottom: 2.5rem;
    min-height: auto;
  }

  .hero-bg {
    height: 100%;
    object-position: center 28%;
  }

  .hero-text {
    top: 0;
    max-width: none;
    width: 100%;
    padding: 1.25rem 1.2rem;
  }

  .hero-headline-main {
    white-space: normal;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btn--primary {
    width: 100%;
  }

  .news-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  #aktuelles .news-layout > div {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  #aktuelles .table {
    min-width: 40rem;
  }

  .contact-panel {
    grid-template-columns: minmax(0, 1fr);
    padding: 1.65rem 1.5rem;
  }

  .contact-panel-col:first-child {
    padding-right: 0;
    padding-bottom: 1.5rem;
  }

  .contact-panel-col:last-child {
    padding-left: 0;
    padding-top: 1.5rem;
    border-left: none;
    border-top: 1px solid rgba(21, 58, 66, 0.12);
  }
}

@media (max-width: 720px) {
  .section {
    padding: 3.25rem 0;
  }

  h2 {
    font-size: clamp(1.35rem, 5vw, 1.75rem);
  }

  .section-intro {
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
  }

  .hero-headline {
    font-size: clamp(1.35rem, 6.5vw, 1.85rem);
  }

  .hero-desc {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .hero-stats {
    flex-wrap: wrap;
    white-space: normal;
    row-gap: 0.4rem;
    font-size: 0.62rem;
    letter-spacing: 0.04em;
  }

  .players-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .player-profile {
    gap: 1rem;
  }

  .player-profile .player-card--modern {
    gap: 1rem;
  }

  .player-profile .about-social-card {
    margin-top: 0;
  }

  .player-profile .player-photo-frame {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    max-height: 22rem;
  }

  .player-profile .about-social-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .player-card--modern .player-content--modern {
    padding: 1.2rem 1.1rem 1.25rem;
  }

  .player-card--modern .player-content--modern h3 {
    font-size: 1.2rem;
  }

  .container {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .about-social-text {
    font-size: 0.95rem;
  }

  .player-content {
    padding: 1.15rem 1rem 1.2rem;
  }

  .player-card-head {
    margin-bottom: 0.85rem;
    padding-bottom: 0.75rem;
  }

  .player-stats dt {
    font-size: 0.64rem;
  }

  .photo-placeholder,
  .logo-placeholder {
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  }

  .staff-grid,
  .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .gallery-grid {
    gap: 1rem;
  }

  #aktuelles .table {
    min-width: 36rem;
    font-size: 0.8rem;
  }

  #aktuelles .table th,
  #aktuelles .table td {
    padding: 0.55rem 0.65rem;
  }

  .support-lead,
  .contact-lead {
    font-size: 0.95rem;
  }

  .contact-panel {
    padding: 1.35rem 1.2rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .nav-overlay {
    padding-top: 4.5rem;
  }

  .hero {
    padding-top: 5.25rem;
    padding-bottom: 2rem;
  }

  .hero-text {
    padding: 1.1rem 1rem;
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .hero-stats-sep {
    display: none;
  }

  .player-card--modern .player-stats .dl-row {
    grid-template-columns: minmax(5rem, 38%) minmax(0, 1fr);
    column-gap: 0.55rem;
  }

  .dl-row {
    grid-template-columns: auto 1fr;
    row-gap: 0.24rem;
  }

  .dl-row--highlights {
    grid-template-columns: auto 1fr;
  }

  .dl-row dt {
    grid-column: 2;
  }

  .dl-row dd {
    grid-column: 2;
  }

  .about-social-card {
    border-radius: 24px;
  }

  #aktuelles .table {
    min-width: 32rem;
    font-size: 0.76rem;
  }

  .support-form-panel {
    padding: 1rem;
  }
}

