/* ===== FONTS ===== */
@font-face {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/bebas-neue-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/bebas-neue-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ===== VARIABLEN ===== */
:root {
  --black: #0A0A0A;
  --dark: #1C1C1C;
  --white: #FFFFFF;
  --gray-light: #F2F2F2;
  --gray-mid: #888888;
  --accent: #1DB954;
  --accent-dark: #17a349;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-w: 1280px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font-body); color: var(--dark); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--black); height: 68px;
  display: flex; align-items: center; padding: 0 32px;
  border-bottom: 2px solid #1a1a1a;
}
.header-inner {
  width: 100%; max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.logo-wrap { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-wrap img { height: 48px; width: auto; }
.logo-text { color: var(--white); font-family: var(--font-display); font-size: 18px; letter-spacing: 1px; line-height: 1.1; }
.logo-text span { display: block; font-family: var(--font-body); font-size: 10px; font-weight: 500; letter-spacing: 2px; color: var(--accent); text-transform: uppercase; }

/* ===== NAV ===== */
.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav > a, .nav-dropdown > a {
  color: #ccc; text-decoration: none; font-size: 12px; font-weight: 600;
  letter-spacing: 0.8px; padding: 8px 12px; border-radius: 3px;
  transition: color 0.2s, background 0.2s; text-transform: uppercase; display: block;
}
.main-nav > a:hover, .nav-dropdown > a:hover { color: var(--white); background: #1a1a1a; }
.main-nav .cta-nav { background: var(--accent); color: var(--black) !important; font-weight: 700; margin-left: 8px; padding: 8px 16px; border-radius: 3px; }
.main-nav .cta-nav:hover { background: var(--accent-dark); }

.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: 100%; left: 0; background: var(--black);
  border: 1px solid #222; border-top: 2px solid var(--accent);
  min-width: 200px; padding: 8px 0; display: none; z-index: 200;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; color: #aaa; text-decoration: none; font-size: 12px;
  font-weight: 500; padding: 9px 16px; letter-spacing: 0.5px; text-transform: uppercase;
  transition: color 0.2s, background 0.2s;
}
.dropdown-menu a:hover { color: var(--white); background: #111; }
.dropdown-group-title {
  display: block; font-size: 9px; font-weight: 700; letter-spacing: 2px;
  color: var(--accent); text-transform: uppercase; padding: 10px 16px 4px;
  pointer-events: none;
}
.dropdown-divider { border-top: 1px solid #222; margin: 4px 0; }
.mobile-subsection {
  font-size: 9px; font-family: var(--font-body); font-weight: 700;
  letter-spacing: 2px; color: #666; text-transform: uppercase;
  padding: 10px 0 4px; display: block; border-bottom: none;
}

/* ===== HAMBURGER ===== */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  position: fixed; top: 68px; right: 0; bottom: 0; width: 280px;
  background: var(--black); z-index: 99; padding: 32px 24px;
  transform: translateX(100%); transition: transform 0.3s ease;
  border-left: 1px solid #1a1a1a; overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  display: block; color: var(--white); text-decoration: none;
  font-size: 20px; font-family: var(--font-display); letter-spacing: 1px;
  padding: 12px 0; border-bottom: 1px solid #1a1a1a;
}
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav .mobile-section {
  font-size: 10px; font-family: var(--font-body); font-weight: 700;
  letter-spacing: 2px; color: var(--accent); text-transform: uppercase;
  padding: 20px 0 8px; border-bottom: none;
}

/* ===== MAIN HERO (homepage) ===== */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-color: #0A0A0A;
}
.hero-bg-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: grayscale(70%) brightness(0.4);
}
.hero-logo-watermark {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; overflow: hidden;
}
.hero-logo-watermark img {
  height: 100%; width: auto;
  opacity: 0.06;
  filter: brightness(3);
}
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.15); }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 24px; max-width: 900px; }
.hero-badge {
  display: inline-block; background: var(--accent); color: var(--black);
  font-size: 11px; font-weight: 700; letter-spacing: 3px; padding: 6px 16px;
  text-transform: uppercase; margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-display); font-size: clamp(64px, 10vw, 140px);
  color: var(--white); line-height: 0.9; letter-spacing: 2px; margin-bottom: 16px;
}
.hero-subtitle {
  font-size: clamp(14px, 2vw, 20px); color: rgba(255,255,255,0.65);
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 40px;
}
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,0.3); text-align: center;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
}
.hero-scroll::before { content: ''; display: block; width: 1px; height: 40px; background: rgba(255,255,255,0.15); margin: 0 auto 8px; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  margin-top: 68px; position: relative; height: 260px;
  display: flex; align-items: flex-end;
  background-color: var(--black);
  overflow: hidden;
}
.page-hero.has-photo { background-image: none; }
.page-hero.has-photo .page-hero-photo {
  position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%;
  filter: grayscale(70%) brightness(0.4);
}
.page-hero-content { position: relative; z-index: 2; max-width: var(--max-w); margin: 0 auto; width: 100%; padding: 0 32px 32px; }
.breadcrumb { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 10px; }
.breadcrumb a { color: rgba(255,255,255,0.35); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.page-title { font-family: var(--font-display); font-size: clamp(40px, 6vw, 80px); color: var(--white); line-height: 1; letter-spacing: 1px; }
.page-subtitle { font-size: 14px; color: rgba(255,255,255,0.5); letter-spacing: 2px; text-transform: uppercase; margin-top: 8px; overflow-wrap: break-word; }

/* ===== TICKER ===== */
.ticker { background: var(--accent); color: var(--black); padding: 0; overflow: hidden; height: 44px; display: flex; align-items: center; }
.ticker-label { background: var(--black); color: var(--accent); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 0 20px; height: 100%; display: flex; align-items: center; white-space: nowrap; flex-shrink: 0; }
.ticker-scroll { overflow: hidden; flex: 1; height: 100%; min-width: 0; }
.ticker-items { display: flex; align-items: center; height: 100%; gap: 48px; animation: ticker 30s linear infinite; width: max-content; padding: 0 32px; }
.ticker-items:hover { animation-play-state: paused; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.ticker-item { font-size: 13px; font-weight: 600; white-space: nowrap; }
.ticker-sep { color: rgba(0,0,0,0.3); }

/* ===== SECTION COMMON ===== */
section { padding: 80px 32px; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-header { margin-bottom: 48px; }
.section-header-row { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.section-label { display: inline-block; color: var(--accent); font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 10px; }
.section-title { font-family: var(--font-display); font-size: clamp(36px, 5vw, 64px); line-height: 1; letter-spacing: 1px; color: var(--dark); }
.section-title.light { color: var(--white); }
.section-more { color: var(--gray-mid); font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 2px; transition: color 0.2s; }
.section-more:hover { color: var(--dark); }
.section-more.light { color: rgba(255,255,255,0.3); }
.section-more.light:hover { color: var(--accent); }

/* ===== BUTTONS ===== */
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: var(--accent); color: var(--black); font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 14px 32px; text-decoration: none; display: inline-block; transition: background 0.2s; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-dark { background: var(--black); color: var(--white); font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 14px 32px; text-decoration: none; display: inline-block; transition: background 0.2s; }
.btn-dark:hover { background: var(--dark); }
.btn-outline { border: 2px solid rgba(255,255,255,0.4); color: var(--white); font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 12px 30px; text-decoration: none; display: inline-block; transition: border-color 0.2s; }
.btn-outline:hover { border-color: var(--white); }

/* ===== NEWS CARDS ===== */
.news-grid { display: grid; grid-template-columns: 1.5fr 1fr; grid-template-rows: auto auto; gap: 2px; }
.news-card { position: relative; overflow: hidden; cursor: pointer; background: var(--dark); text-decoration: none; display: block; }
.news-card:first-child { grid-row: 1 / 3; }
.news-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; min-height: 240px; }
.news-card:first-child img { min-height: 480px; }
.news-card:hover img { transform: scale(1.04); }
.news-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%); }
.news-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; }
.news-tag { display: inline-block; background: var(--accent); color: var(--black); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 3px 10px; margin-bottom: 10px; }
.news-card-title { color: var(--white); font-family: var(--font-display); font-size: 28px; line-height: 1.1; letter-spacing: 0.5px; }
.news-card:first-child .news-card-title { font-size: clamp(28px, 3vw, 44px); }
.news-card:not(:first-child) .news-card-title { font-size: 20px; }
.news-date { color: rgba(255,255,255,0.45); font-size: 11px; font-weight: 500; letter-spacing: 1px; margin-top: 8px; display: block; }

/* News page outer section */
.news-outer { padding: 64px 32px; }

/* News list (news.html) */
.news-list-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-list-card { background: var(--white); border: 1px solid #eee; text-decoration: none; display: block; transition: box-shadow 0.2s; }
.news-list-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.news-list-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.news-list-body { padding: 20px; }
.news-list-tag { display: inline-block; background: var(--accent); color: var(--black); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 2px 8px; margin-bottom: 10px; }
.news-list-title { font-family: var(--font-display); font-size: 22px; line-height: 1.1; color: var(--dark); letter-spacing: 0.5px; }
.news-list-date { font-size: 11px; color: var(--gray-mid); letter-spacing: 1px; margin-top: 8px; display: block; }
.news-list-excerpt { font-size: 13px; color: #666; line-height: 1.6; margin-top: 10px; }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--black); padding: 40px 32px; }
.stats-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-number { font-family: var(--font-display); font-size: clamp(48px, 6vw, 80px); color: var(--accent); line-height: 1; }
.stat-label { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 6px; }

/* ===== TEAM CARDS ===== */
.teams-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.team-card { position: relative; overflow: hidden; cursor: pointer; background: #111; text-decoration: none; display: block; aspect-ratio: 4/3; }
.team-card img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(60%); transition: filter 0.4s, transform 0.5s; }
.team-card:hover img { filter: grayscale(0%); transform: scale(1.05); }
.team-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%); }
.team-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; }
.team-card-name { color: var(--white); font-family: var(--font-display); font-size: 22px; letter-spacing: 1px; }
.team-card-sub { color: var(--accent); font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; }
.team-card-arrow { position: absolute; top: 16px; right: 16px; color: rgba(255,255,255,0); font-size: 18px; font-weight: 700; transition: color 0.3s; font-family: var(--font-display); }
.team-card:hover .team-card-arrow { color: var(--accent); }

/* ===== AGE CHIPS ===== */
.age-groups { display: flex; flex-wrap: wrap; gap: 10px; }
.age-chip { display: inline-block; background: var(--white); color: var(--dark); font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 10px 20px; border: 2px solid #E0E0E0; text-decoration: none; transition: background 0.2s, border-color 0.2s, color 0.2s; }
.age-chip:hover, .age-chip.active { background: var(--black); color: var(--white); border-color: var(--black); }

/* ===== CONTENT LAYOUT ===== */
.content-grid { display: grid; grid-template-columns: 1fr 340px; gap: 64px; }
.content-main { min-width: 0; }
.content-sidebar { min-width: 0; }

.prose { font-size: 16px; line-height: 1.8; color: #444; overflow-wrap: break-word; }
.prose p { margin-bottom: 20px; }
.prose h2 { font-family: var(--font-display); font-size: 36px; color: var(--dark); margin: 40px 0 16px; letter-spacing: 0.5px; }
.prose h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin: 28px 0 12px; }
.prose ul { padding-left: 20px; margin-bottom: 20px; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--dark); }
.prose a { color: var(--accent); text-decoration: underline; }

/* ===== ARTICLE HERO ===== */
.article-hero { width: 100%; aspect-ratio: 16/6; object-fit: cover; margin-bottom: 40px; }
.article-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }

/* ===== SIDEBAR WIDGETS ===== */
.sidebar-widget { margin-bottom: 32px; }
.widget-title { font-family: var(--font-display); font-size: 22px; letter-spacing: 1px; color: var(--dark); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--accent); }
.match-item { padding: 12px 0; border-bottom: 1px solid #eee; }
.match-date { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gray-mid); }
.match-teams { font-size: 14px; font-weight: 600; color: var(--dark); margin-top: 4px; }
.match-result { display: inline-block; background: var(--black); color: var(--white); font-size: 12px; font-weight: 700; padding: 2px 8px; margin-top: 4px; }
.match-result.win { background: var(--accent); color: var(--black); }
.match-result.loss { background: #c0392b; }

/* ===== TEAM PAGE ===== */
.squad-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 16px; }
.squad-card { text-align: center; }
.squad-photo { width: 100%; aspect-ratio: 3/4; object-fit: cover; background: var(--gray-light); }
.squad-number { font-family: var(--font-display); font-size: 32px; color: var(--accent); margin-top: 8px; }
.squad-name { font-size: 13px; font-weight: 700; color: var(--dark); }
.squad-pos { font-size: 11px; color: var(--gray-mid); letter-spacing: 1px; text-transform: uppercase; }

/* ===== INFO BOX ===== */
.info-box { background: var(--black); color: var(--white); padding: 32px; margin-bottom: 24px; }
.info-box-title { font-family: var(--font-display); font-size: 20px; letter-spacing: 1px; color: var(--accent); margin-bottom: 16px; }
.info-row { display: flex; gap: 12px; font-size: 14px; margin-bottom: 10px; }
.info-label { color: rgba(255,255,255,0.4); font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; min-width: 100px; }
.info-value { color: var(--white); font-weight: 500; }

/* ===== TRAINING BOX ===== */
.training-box { border: 2px solid var(--accent); padding: 24px; }
.training-title { font-family: var(--font-display); font-size: 24px; letter-spacing: 1px; color: var(--dark); margin-bottom: 16px; }
.training-row { display: flex; justify-content: space-between; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid #eee; font-size: 14px; }
.training-day { font-weight: 700; color: var(--dark); flex-shrink: 0; }
.training-time { color: var(--accent); font-weight: 700; flex: 1; min-width: 0; text-align: right; overflow-wrap: break-word; }

/* ===== CONTACT FORM ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--dark); margin-bottom: 8px; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 12px 16px; font-size: 14px; font-family: var(--font-body);
  border: 2px solid #e0e0e0; background: var(--white); color: var(--dark);
  transition: border-color 0.2s; outline: none;
}
.form-input:focus, .form-textarea:focus { border-color: var(--accent); }
.form-textarea { min-height: 150px; resize: vertical; }
.contact-info-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid #eee; align-items: flex-start; }
.contact-info-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.contact-info-label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gray-mid); }
.contact-info-value { font-size: 15px; color: var(--dark); font-weight: 500; margin-top: 4px; }

/* ===== SPONSORS ===== */
.sponsor-grid-full { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 24px; }
.sponsor-card { border: 1px solid #eee; padding: 32px 24px; display: flex; flex-direction: column; align-items: center; text-align: center; transition: border-color 0.2s, box-shadow 0.2s; text-decoration: none; }
.sponsor-card:hover { border-color: var(--accent); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.sponsor-card img { height: 60px; width: auto; max-width: 160px; object-fit: contain; filter: grayscale(80%); transition: filter 0.3s; }
.sponsor-card:hover img { filter: grayscale(0%); }
.sponsor-card-name { font-size: 12px; font-weight: 700; color: var(--gray-mid); margin-top: 12px; text-transform: uppercase; letter-spacing: 1px; }

/* ===== FOOTER ===== */
footer { background: var(--black); color: rgba(255,255,255,0.7); padding: 64px 32px 32px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid #1a1a1a; }
.footer-logo { height: 60px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.35); margin-top: 12px; }
.footer-col h4 { color: var(--white); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.footer-col a { display: block; color: rgba(255,255,255,0.4); text-decoration: none; font-size: 13px; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.social-links { display: flex; gap: 16px; }
.social-links a { color: rgba(255,255,255,0.35); text-decoration: none; font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; transition: color 0.2s; }
.social-links a:hover { color: var(--accent); }

/* ===== JUGEND OVERVIEW ===== */
.jugend-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 56px; }
.jugend-text p { font-size: 16px; line-height: 1.75; color: #555; margin-top: 16px; }
.jugend-image img { width: 100%; height: 320px; object-fit: cover; display: block; }

/* ===== SPONSOR STRIP (homepage) ===== */
.sponsors-section { background: var(--white); padding: 56px 32px; }
.sponsors-inner { max-width: var(--max-w); margin: 0 auto; }
.sponsors-title { font-family: var(--font-display); font-size: 22px; letter-spacing: 2px; color: #ccc; text-transform: uppercase; text-align: center; margin-bottom: 40px; }
.sponsors-strip { display: flex; flex-wrap: wrap; gap: 32px; align-items: center; justify-content: center; }
.sponsor-item { filter: grayscale(100%) opacity(0.4); transition: filter 0.3s; }
.sponsor-item:hover { filter: grayscale(0%) opacity(1); }
.sponsor-item img { height: 48px; width: auto; max-width: 140px; object-fit: contain; }

/* ===== DIVIDER ===== */
.divider { border: none; border-top: 1px solid #eee; margin: 40px 0; }
.dark-section { background: var(--dark); }
.light-section { background: var(--gray-light); }

/* Team/Jugend overview card grid (teams.html, jugend.html) */
.team-overview-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(300px,1fr)); gap:2px; }

/* Two-column form name row (kontakt.html) */
.form-name-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }

/* Compact section padding — 64px instead of default 80px */
.section-compact { padding:64px 32px; }

/* Sponsor CTA block (sponsoren.html, dark 2-col) */
.sponsor-cta { background:var(--black); padding:64px 48px; margin-top:64px; display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .content-grid { grid-template-columns: 1fr; }
  .content-sidebar { order: -1; }
  .teams-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .news-list-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .team-overview-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card:first-child { grid-row: auto; }
  .jugend-intro { grid-template-columns: 1fr; }
  .stats-bar { padding: 40px 0; }
  .stats-inner { display: flex; flex-wrap: wrap; max-width: none; margin: 0; gap: 0; }
  .stat-item { flex: 0 0 50%; text-align: center; padding: 12px 16px; }
  .sponsor-grid-full { grid-template-columns: repeat(2, 1fr); }
  .news-list-grid { grid-template-columns: 1fr; }
  .sponsor-cta { grid-template-columns: 1fr; gap:32px; padding:48px 32px; text-align:center; }
  .content-grid { gap: 32px; }
  .page-hero-content { padding: 0 20px 24px; }
}
@media (max-width: 600px) {
  section { padding: 56px 20px; }
  .section-compact { padding: 48px 20px; }
  .news-outer { padding: 56px 20px; }
  .site-header { padding: 0 20px; }
  .logo-text { display: none; }
  .teams-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .news-list-grid { grid-template-columns: 1fr; }
  .squad-grid { grid-template-columns: repeat(3, 1fr); }
  .page-hero { height: 200px; }
  .team-overview-grid { grid-template-columns: 1fr; }
  .form-name-row { grid-template-columns: 1fr; }
  .sponsor-cta { padding: 40px 20px; gap:24px; }
  .jugend-promo-font { font-size: 32px !important; }
  .info-box { padding: 20px; }
  footer { padding: 40px 20px 24px; }
}
@media (max-width: 768px) {
  .jugend-promo-card { aspect-ratio: 4/3 !important; overflow: hidden; }
}
