/* =============================================
   ATLETICO BASEL — Main Stylesheet
   CI Colors: Primary #788fbc | Secondary #000000
   Fonts: Barlow Condensed (headings) | Arimo (body)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Barlow+Condensed:wght@500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --blue:       #788fbc;
  --blue-80:    rgba(120, 143, 188, 0.8);
  --blue-40:    rgba(120, 143, 188, 0.4);
  --blue-15:    rgba(120, 143, 188, 0.15);
  --black:      #000000;
  --dark:       #0a0a0a;
  --dark-2:     #111111;
  --dark-3:     #1a1a1a;
  --mid:        #2a2a2a;
  --light-gray: #f4f5f7;
  --white:      #ffffff;
  --text-muted: #888888;
  --font-head:  'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:  'Arimo', Arial, sans-serif;
  --radius:     4px;
  --radius-lg:  12px;
  --transition: 0.3s ease;
  --shadow:     0 8px 32px rgba(0,0,0,0.4);
  --shadow-blue:0 8px 32px rgba(120, 143, 188, 0.25);
}

/* Honeypot — invisible to humans, visible to bots */
.hp-field { position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden; }

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--white); }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
}
h1 { font-size: clamp(3rem, 8vw, 7rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: 1.2rem; }
p  { font-size: 1rem; line-height: 1.75; color: rgba(255,255,255,0.8); }

/* ---- Utilities ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section--light { background: var(--light-gray); color: var(--black); }
.section--light p { color: rgba(0,0,0,0.7); }
.section--dark2 { background: var(--dark-2); }
.section--mid { background: var(--mid); }
.text-blue  { color: var(--blue); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.uppercase { text-transform: uppercase; }
.mb-4  { margin-bottom: 4px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* Section Label */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--blue);
  vertical-align: middle;
  margin-right: 10px;
}

/* Section Title */
.section-title {
  margin-bottom: 16px;
}
.section-intro {
  max-width: 640px;
  font-size: 1.1rem;
  margin-bottom: 56px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  letter-spacing: 0.1em;
  font-size: 1rem;
  padding: 14px 36px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: transparent;
  color: var(--blue);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}
.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline-blue:hover {
  background: var(--blue);
  color: var(--white);
}
.btn-sm { padding: 10px 24px; font-size: 0.85rem; }
.btn-lg { padding: 18px 48px; font-size: 1.1rem; }

/* ---- Geometric Decorator ---- */
.geo-triangles {
  position: absolute;
  pointer-events: none;
  opacity: 0.12;
}
.geo-triangles--tr {
  top: 0; right: 0;
  width: 180px; height: 180px;
  background:
    linear-gradient(135deg, var(--blue) 50%, transparent 50%) no-repeat 0 0 / 85px 85px,
    linear-gradient(135deg, var(--blue) 50%, transparent 50%) no-repeat 90px 90px / 85px 85px;
}
.geo-triangles--bl {
  bottom: 0; left: 0;
  width: 120px; height: 120px;
  background:
    linear-gradient(315deg, var(--blue) 50%, transparent 50%) no-repeat 0 0 / 60px 60px;
}

/* ---- Divider ---- */
.divider {
  width: 60px;
  height: 3px;
  background: var(--blue);
  margin: 16px 0 32px;
}
.divider--center { margin: 16px auto 32px; }

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(0, 0, 0, 0.50);
  box-shadow: 0 2px 20px rgb(0 0 0 / 0.34);
  backdrop-filter: blur(12px);
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.navbar-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.navbar-logo-text {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.08em;
  line-height: 1;
}
.navbar-logo-text span { color: var(--blue); }
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-item--has-submenu {
  position: relative;
}
.navbar-nav a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}
.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width var(--transition);
}
.navbar-nav a:hover { color: var(--white); }
.navbar-nav a:hover::after { width: 100%; }
.navbar-nav a.active { color: var(--blue); }
.navbar-nav a.active::after { width: 100%; }
.navbar-nav .nav-link {
  display: block;
  padding-bottom: 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.52);
  cursor: default;
}
.nav-submenu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  min-width: 220px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.88);
  border: 1px solid var(--mid);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}
.nav-item--has-submenu:hover .nav-submenu,
.nav-item--has-submenu:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-submenu a {
  display: block;
  padding: 12px 14px;
  border-radius: var(--radius);
  color: rgba(255,255,255,0.78);
  white-space: nowrap;
}
.nav-submenu a::after { display: none; }
.nav-submenu a:hover {
  background: var(--blue-15);
  color: var(--white);
}
.nav-submenu-disabled {
  display: block;
  padding: 12px 14px;
  color: rgba(255,255,255,0.38);
  white-space: nowrap;
  cursor: not-allowed;
}
.navbar-cta { margin-left: 16px; }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  backdrop-filter: blur(16px);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-head);
  font-size: 2.5rem;
  color: var(--white);
  letter-spacing: 0.08em;
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--blue); }

/* Temporarily replaces the team detail pages. */
.teams-coming-soon {
  min-height: 78vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.teams-coming-soon-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0.34;
}
.teams-coming-soon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.94) 0%, rgba(0,0,0,0.62) 58%, rgba(0,0,0,0.28) 100%);
}
.teams-coming-soon-inner {
  position: relative;
  z-index: 1;
  padding-top: 150px;
  padding-bottom: 90px;
}
.teams-coming-soon h1 {
  max-width: 760px;
  margin: 12px 0 16px;
  font-size: 7rem;
}
.teams-coming-soon p {
  max-width: 650px;
  font-size: 1.1rem;
  line-height: 1.8;
}
.teams-coming-soon-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .teams-coming-soon { min-height: 72vh; }
  .teams-coming-soon-inner { padding-top: 130px; padding-bottom: 72px; }
  .teams-coming-soon h1 { font-size: 4rem; }
}

/* ========================================
   PAGE HERO (inner pages)
   ======================================== */
.page-hero {
  padding: 160px 0 80px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--mid);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.65) 100%);
  z-index: 0;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  filter: saturate(0.6);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(120,143,188,0.12) 0%, transparent 60%);
  z-index: 1;
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .section-label { margin-bottom: 8px; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { max-width: 600px; font-size: 1.1rem; }

/* ========================================
   HERO — Homepage
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.hero-video-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0a0a 0%, #0f1a2e 50%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  opacity: 0.6;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.5) 60%,
    rgba(0,0,0,0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 120px 0 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue-15);
  border: 1px solid var(--blue-40);
  border-radius: 24px;
  padding: 8px 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero h1 {
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero h1 em {
  font-style: normal;
  color: var(--blue);
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat-value {
  font-family: var(--font-head);
  font-size: 2.5rem;
  color: var(--blue);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2s infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(120,143,188,0.6), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Geometric accents on hero */
.hero-geo {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  height: 70%;
  z-index: 1;
  pointer-events: none;
}
.hero-geo-diamond {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 300px; height: 300px;
  border: 1px solid rgba(120,143,188,0.2);
}
.hero-geo-diamond::before {
  content: '';
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(120,143,188,0.15);
}

/* ========================================
   PROBETRAINING HIGHLIGHT
   ======================================== */
.probe-highlight {
  background: linear-gradient(135deg, var(--blue) 0%, #5a7aaa 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.probe-highlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40 L40 0' stroke='rgba(255,255,255,0.05)' stroke-width='1'/%3E%3C/svg%3E");
}
.probe-highlight-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.probe-highlight-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 12px;
}
.probe-highlight-text p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 480px;
}
.probe-highlight-action { flex-shrink: 0; }

/* ========================================
   PROBETRAINING FORM
   ======================================== */
.form-card {
  background: var(--dark-3);
  border: 1px solid var(--mid);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), transparent);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-2);
  border: 1px solid var(--mid);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group select option { background: var(--dark-2); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { grid-column: 1 / -1; }

/* ========================================
   PHILOSOPHY / ABOUT SECTION
   ======================================== */
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.philosophy-img-wrap {
  position: relative;
}
.philosophy-img-wrap .img-placeholder {
  background: var(--mid);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--blue-40);
}
.philosophy-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px; height: 120px;
  border: 3px solid var(--blue);
  border-radius: var(--radius);
  z-index: -1;
}
.philosophy-pillars {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}
.pillar {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.pillar-num {
  font-family: var(--font-head);
  font-size: 3rem;
  color: var(--blue-40);
  line-height: 1;
  flex-shrink: 0;
  min-width: 48px;
}
.pillar h4 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.pillar p { font-size: 0.95rem; }

/* ========================================
   TEAMS SECTION
   ======================================== */
.teams-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--dark-3);
  border: 1px solid var(--mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-blue);
  border-color: var(--blue-40);
}
.team-card-img {
  background: linear-gradient(135deg, var(--dark-2) 0%, #0d1a2e 100%);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.team-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.7));
}
.team-card-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  z-index: 1;
}
.team-card-body { padding: 24px; }
.team-card-body h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.team-card-body p { font-size: 0.9rem; margin-bottom: 20px; }
.team-card-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--mid);
}
.team-meta-item {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.team-meta-item span { color: var(--white); font-weight: 600; }

/* ========================================
   TEAM DETAIL PAGE
   ======================================== */
.squad-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.player-card {
  background: var(--dark-3);
  border: 1px solid var(--mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
  text-align: center;
}
.player-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-40);
}
.player-card-img {
  background: linear-gradient(135deg, var(--dark-2), #0d1a2e);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--blue-40);
}
.player-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.player-card-body { padding: 16px; }
.player-number {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--blue);
  line-height: 1;
}
.player-name {
  font-weight: 700;
  font-size: 0.95rem;
  margin: 4px 0 2px;
}
.player-pos {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.nav-mobile-disabled {
  font-family: var(--font-head);
  font-size: 2.5rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
  cursor: not-allowed;
}

/* Trainer Card */
.trainer-card {
  display: flex;
  gap: 24px;
  align-items: center;
  background: var(--dark-3);
  border: 1px solid var(--mid);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.trainer-card-img {
  width: 100px; height: 100px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--dark-2);
  border: 3px solid var(--blue-40);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.trainer-card-body h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.trainer-role {
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* SFV Integration placeholder */
.sfv-embed {
  background: var(--dark-3);
  border: 1px solid var(--mid);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
}
.sfv-embed-icon { font-size: 3rem; margin-bottom: 16px; color: var(--blue); }
.sfv-embed p { font-size: 0.9rem; color: var(--text-muted); }

/* Team Detail Pages */
.team-detail-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}
.team-detail-head p {
  max-width: 620px;
  margin: 0;
}
.team-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--mid);
  background: var(--dark-3);
  aspect-ratio: 16 / 8;
  margin-bottom: 56px;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-photo-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-end;
}
.team-photo-caption h3 {
  margin-bottom: 4px;
}
.team-photo-caption p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.76);
}
.team-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent 55%);
  pointer-events: none;
}
.team-photo-caption {
  z-index: 1;
}
.team-section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.trainer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.trainer-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.player-roster-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.player-roster-head p {
  max-width: 520px;
  margin: 0;
}

/* ========================================
   VEREIN (Club) SECTION
   ======================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.value-card {
  background: var(--dark-3);
  border: 1px solid var(--mid);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition);
}
.value-card:hover { border-color: var(--blue-40); }
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--blue);
}
.value-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: var(--blue-15);
  border: 1px solid var(--blue-40);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-icon svg,
.club-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.club-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-15);
  border: 1px solid var(--blue-40);
  border-radius: var(--radius);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.goals-panel {
  margin-top: 64px;
  background: var(--dark-3);
  border: 1px solid var(--mid);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  position: relative;
  overflow: hidden;
}
.goals-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--blue);
}
.goals-panel-head {
  max-width: 640px;
  margin-bottom: 30px;
}
.goals-panel-head h3 {
  font-family: var(--font-head);
  font-size: 2rem;
  margin-bottom: 8px;
}
.goals-panel-head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.goals-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 36px;
  border-top: 1px solid var(--mid);
}
.goal-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--mid);
}
.goal-item .goal-num {
  font-family: var(--font-head);
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  color: var(--blue);
  line-height: 1.3;
}
.goal-item h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.goal-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.board-member {
  background: var(--dark-3);
  border: 1px solid var(--mid);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: border-color var(--transition);
}
.board-member:hover { border-color: var(--blue-40); }
.board-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--dark-2);
  border: 2px solid var(--blue-40);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.board-name { font-weight: 700; margin-bottom: 4px; }
.board-role { font-size: 0.8rem; color: var(--blue); text-transform: uppercase; letter-spacing: 0.08em; }

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 48px; height: 48px;
  background: var(--blue-15);
  border: 1px solid var(--blue-40);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: var(--blue);
}
.contact-info-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 4px;
}
.contact-info-value { font-size: 0.95rem; }

/* Form tabs */
.form-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--mid);
  margin-bottom: 40px;
  overflow-x: auto;
  scrollbar-width: none;
}
.form-tabs::-webkit-scrollbar { display: none; }
.form-tab {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 24px;
  cursor: pointer;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all var(--transition);
  white-space: nowrap;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.form-tab:hover { color: var(--white); }
.form-tab.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}
.form-content { display: none; }
.form-content.active { display: block; }

/* ========================================
   SPONSORS PAGE
   ======================================== */
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.sponsor-logo {
  background: var(--dark-3);
  border: 1px solid var(--mid);
  border-radius: var(--radius-lg);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: border-color var(--transition), box-shadow var(--transition);
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
}
.sponsor-logo:hover {
  border-color: var(--blue-40);
  box-shadow: var(--shadow-blue);
}
.sponsor-logo img { filter: grayscale(100%); opacity: 0.6; transition: all var(--transition); }
.sponsor-logo:hover img { filter: grayscale(0%); opacity: 1; }

.sponsor-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.sponsor-package {
  background: var(--dark-3);
  border: 1px solid var(--mid);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition);
}
.sponsor-package.featured {
  border-color: var(--blue);
  background: linear-gradient(135deg, var(--dark-3) 0%, rgba(120,143,188,0.08) 100%);
}
.sponsor-package.featured::before {
  content: 'EMPFOHLEN';
  position: absolute;
  top: 20px; right: -24px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 36px;
  transform: rotate(45deg);
}
.package-tier {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.package-name {
  font-family: var(--font-head);
  font-size: 2rem;
  margin-bottom: 8px;
}
.package-price {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--mid);
}
.package-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.package-feature {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
}
.package-feature::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

/* ========================================
   GALLERY
   ======================================== */
.gallery-filter {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 24px;
  border: 1px solid var(--mid);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--blue-40); color: var(--white); }
.filter-btn.active { background: var(--blue); border-color: var(--blue); color: var(--white); }

.gallery-masonry {
  columns: 3;
  gap: 16px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--dark-3);
  border: 1px solid var(--mid);
}
.gallery-item-placeholder {
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--blue-40);
  background: linear-gradient(135deg, var(--dark-2), #0d1a2e);
}
.gallery-item:nth-child(3n) .gallery-item-placeholder { aspect-ratio: 4/5; }
.gallery-item:nth-child(5n) .gallery-item-placeholder { aspect-ratio: 16/9; }
.gallery-item img { width: 100%; display: block; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption { font-size: 0.85rem; font-weight: 600; }

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--black);
  border-top: 1px solid var(--mid);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-logo img { width: 48px; height: 48px; }
.footer-logo-text {
  font-family: var(--font-head);
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: var(--white);
}
.footer-logo-text span { color: var(--blue); }
.footer-brand p { font-size: 0.9rem; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  background: var(--dark-3);
  border: 1px solid var(--mid);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all var(--transition);
  text-decoration: none;
}
.social-link:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--mid);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.8rem; color: var(--text-muted); }
.footer-bottom-links a:hover { color: var(--white); }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .teams-grid          { grid-template-columns: 1fr 1fr; }
  .values-grid         { grid-template-columns: 1fr 1fr; }
  .sponsors-grid       { grid-template-columns: repeat(3, 1fr); }
  .sponsor-packages    { grid-template-columns: 1fr; }
  .footer-grid         { grid-template-columns: 1fr 1fr; }
  .philosophy-grid     { grid-template-columns: 1fr; gap: 48px; }
  .contact-layout      { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section             { padding: 64px 0; }
  .navbar-nav          { display: none; }
  .navbar-cta          { display: none; }
  .nav-toggle          { display: flex; }
  .teams-grid          { grid-template-columns: 1fr; }
  .values-grid         { grid-template-columns: 1fr; }
  .goals-panel         { padding: 32px 24px 32px 28px; }
  .goals-list          { grid-template-columns: 1fr; }
  .sponsors-grid       { grid-template-columns: 1fr 1fr; }
  .footer-grid         { grid-template-columns: 1fr; gap: 32px; }
  .form-grid           { grid-template-columns: 1fr; }
  .form-group.full     { grid-column: 1; }
  .gallery-masonry     { columns: 2; }
  .probe-highlight-inner { flex-direction: column; text-align: center; }
  .hero-stats          { gap: 24px; }
  .board-grid          { grid-template-columns: 1fr 1fr; }
  .team-detail-head,
  .team-photo-caption,
  .player-roster-head  { align-items: flex-start; flex-direction: column; }
  .team-photo          { aspect-ratio: 4 / 3; }
  .team-schedule-grid  { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container           { padding: 0 16px; }
  .hero-actions        { flex-direction: column; }
  .hero-actions .btn   { width: 100%; text-align: center; }
  .gallery-masonry     { columns: 1; }
  .sponsors-grid       { grid-template-columns: 1fr; }
  .board-grid          { grid-template-columns: 1fr; }
  .form-tabs           { gap: 0; }
  .form-tab            { padding: 12px 16px; font-size: 0.75rem; }
  .form-card           { padding: 28px 20px; }
  .squad-grid          { grid-template-columns: repeat(2, 1fr); }
  .sfv-grid            { grid-template-columns: 1fr !important; }
}
