@charset "UTF-8";
/*
Theme Name: Fastbreakers Theme
Template: twentytwentyone
Description: Child theme for Fastbreakers — templates for players and team overview.
Version: 0.1.0
Author: Fastbreakers
*/
/* roboto-100 - latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100;
  src: local(""), url("../fonts/roboto-v30-latin-100.woff2") format("woff2"), url("../fonts/roboto-v30-latin-100.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-regular - latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: local(""), url("../fonts/roboto-v30-latin-regular.woff2") format("woff2"), url("../fonts/roboto-v30-latin-regular.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-500 - latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: local(""), url("../fonts/roboto-v30-latin-500.woff2") format("woff2"), url("../fonts/roboto-v30-latin-500.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-700 - latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: local(""), url("../fonts/roboto-v30-latin-700.woff2") format("woff2"), url("../fonts/roboto-v30-latin-700.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* HEADER mit LOGO GANZ OBEN */
body > header.header {
  background: linear-gradient(135deg, #1a1a1a, #333);
  background: linear-gradient(135deg, #fff, rgba(243, 243, 243, 0.1333333333));
  padding: 15px 0 15px 0;
  border-bottom: 2px solid #00bfff;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
body > header.header p {
  font-family: "Exo 2", sans-serif;
  font-family: "Bebas Neue";
  font-size: 1.4em;
  opacity: 0.9;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: black;
  font-size: 1rem;
}
body > header.header .logo {
  width: 140px;
  height: auto;
}
body > header.header .header-link {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-direction: row;
}
body > header.header .header-link .logo {
  width: 400px;
}
@media screen and (max-width: 568px) {
  body > header.header .header-link .logo {
    width: 300px;
  }
}
@media screen and (max-width: 418px) {
  body > header.header .header-link .logo {
    display: none;
  }
}
body > header.header .header-link .logo-small {
  display: none;
  width: 100px;
}
@media screen and (max-width: 418px) {
  body > header.header .header-link .logo-small {
    display: block;
  }
}
body > header.header .slogan {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-direction: row;
  line-height: 1em;
}
@media screen and (max-width: 807px) {
  body > header.header .slogan {
    display: none;
  }
}
body > header.header {
  overflow: hidden;
}

body:not(.home) > header.header:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #00bfff, #00ffff, #00bfff, transparent);
  animation: shine 3s infinite;
}
@keyframes shine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}

/* Burger Menu → X Animation MIT HOVER-ZOOM */
.burger-menu {
  width: 50px;
  height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  padding: 4px;
  z-index: 1001; /* Über dem Mobile-Overlay */
  position: relative;
  padding: 10px;
  /* SAFTE TRANSITION nur für Hover */
  min-height: 44px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 20px;
}
@media screen and (min-width: 769px) {
  .burger-menu {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  body.home .header .burger-menu {
    display: flex;
  }
  body.home .header.scrolled .burger-menu {
    display: none;
  }
}
.burger-menu span {
  display: block;
  width: 100%;
  height: 3px;
  background: #ffffff; /* WEISS standard */
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(255, 255, 255, 0.3);
}

/* HOVER: Cyan */
.burger-menu:hover span {
  background: #00bfff !important; /* CYAN beim Hover */
  box-shadow: 0 0 12px rgba(0, 191, 255, 0.6);
}

/* GEÖFFNET: X-Animation (weiß → bleibt weiß) */
.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  background: #ffffff;
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
  background: #ffffff;
}

/* DESKTOP: Hover-Effekt */
@media (min-width: 769px) {
  .burger-menu:hover span {
    background: #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
  }
}
/* MOBILE: Touch-Feedback statt Hover */
@media (max-width: 768px) {
  .burger-menu:focus-within span { /* Tastatur-Fokus */
    background: #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
  }
}
/* NAVIGATION DIREKT UNTER HEADER */
.main-nav {
  background: rgba(0, 0, 0, 0.25);
  background: linear-gradient(135deg, #1a1a1a, #333, transparent);
  backdrop-filter: blur(20px);
  background: rgba(85, 85, 85, 0.4666666667);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 191, 255, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  gap: 30px;
  list-style: none;
  position: relative;
}

.nav-item {
  position: relative;
  font-family: "Exo 2", sans-serif;
  font-weight: 600;
  font-size: 1.15em;
  padding: 12px 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-item a {
  color: #fff;
  text-decoration: none;
  display: block;
}

.nav-item::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00bfff, #00ffff);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(0, 191, 255, 0.8);
}

.nav-item:hover::after {
  width: 100%;
}

.nav-item:hover a {
  color: #00bfff;
  text-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
}

/* Mobile Navigation Overlay */
@media (max-width: 768px) {
  .nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding-top: 60px; /* Platz für Header/Burger */
  }
  body.menu-open {
    overflow: hidden; /* Scrollen verhindern wenn Menü offen */
  }
  body.menu-open .nav-container {
    transform: translateX(0);
  }
  .nav-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    font-size: 1.5em;
    margin: 15px 0;
    width: 100%;
    text-align: center;
  }
  body.menu-open .nav-item {
    opacity: 1;
    transform: translateY(0);
    /* Stagger Animation für die Links */
  }
  body.menu-open .nav-item:nth-child(1) {
    transition-delay: 0.1s;
  }
  body.menu-open .nav-item:nth-child(2) {
    transition-delay: 0.2s;
  }
  body.menu-open .nav-item:nth-child(3) {
    transition-delay: 0.3s;
  }
  body.menu-open .nav-item:nth-child(4) {
    transition-delay: 0.4s;
  }
  body.menu-open .nav-item:nth-child(5) {
    transition-delay: 0.5s;
  }
  body.menu-open .nav-item:nth-child(6) {
    transition-delay: 0.6s;
  }
  body.menu-open .nav-item:nth-child(7) {
    transition-delay: 0.7s;
  }
  body.menu-open .nav-item:nth-child(8) {
    transition-delay: 0.8s;
  }
  body.menu-open .nav-item:nth-child(9) {
    transition-delay: 0.9s;
  }
  body.menu-open .nav-item:nth-child(10) {
    transition-delay: 1s;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
  background-color: #111;
  background-image: url("../img/bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow-x: hidden; /* Verhindert horizontales Scrollen (Off-Canvas Menü) */
}

.site-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  font-size: 1.15em;
}
.site-content h1,
.site-content h2,
.site-content .title-shadow {
  font-family: "Roboto Slab", serif;
  color: #039faf;
  font-size: 4em;
  font-weight: 900;
  margin: 40px 0 30px 0;
  letter-spacing: 5px;
  text-transform: uppercase;
}
.site-content h1.entry-title,
.site-content h2.with-shadow {
  position: relative;
  z-index: 99;
}
.site-content .title-shadow {
  display: block;
  font-size: 1.8em !important;
  color: rgba(34, 34, 34, 0.6666666667) !important;
  line-height: 1em !important;
  position: absolute;
  top: -0.8em;
  z-index: -1;
  left: -0.5em;
}
.site-content h2 {
  font-size: 2.5em;
  line-height: 1em;
  color: #999;
  position: relative;
  z-index: 99;
}
.site-content h3 {
  font-family: "Bebas Neue", cursive;
  color: #fff;
  font-size: 2.2em;
  margin: 50px 0 25px 0;
  padding-left: 15px;
  border-left: 5px solid #00bfff;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.1em;
}
.site-content p {
  margin-bottom: 25px;
  max-width: 900px;
}
.site-content p a {
  color: #039faf;
  text-decoration: none;
  font-weight: 700;
  font-family: "Exo 2", sans-serif;
  transition: all 0.3s;
  text-decoration: underline;
}
.site-content p a:hover {
  color: #fff;
  text-shadow: 0 0 15px #039faf;
}
.site-content {
  /* UL ausrichten */
}
.site-content ul {
  padding-left: 1rem; /* Genau wie Text-Indent */
  margin: 0 0 2rem 0;
}
.site-content {
  /* LI ohne zusätzlichen Einzug */
}
.site-content ul li {
  margin-left: 0;
  padding-left: 0;
}

/* GRID */
.fb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 40px 0;
}

@media (max-width: 900px) {
  .fb-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
/* CARD */
.fb-card {
  background: #333;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover-Effekt */
.fb-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

/* HEADER */
.fb-card-header {
  color: #039faf;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 20px 0px 20px;
}

/* IMAGE */
.fb-card-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .fb-card-image img {
    height: 100%;
  }
}
/* BODY */
.fb-card-body {
  padding: 0 20px 10px 20px;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 600;
  color: #fff;
}

/* FOOTER */
.fb-card-footer {
  margin-top: auto;
  padding: 0px 20px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.team-section h3 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.team-section .players-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .team-section .players-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .team-section .players-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.team-section .player {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  transition: transform 0.3s ease;
  cursor: pointer;
  min-height: 20em;
  background: rgba(0, 0, 0, 0.5);
  background: #333;
  border: 1px solid #444;
}
.team-section .player img {
  width: 100%;
  display: block;
  border-radius: 8px;
  position: relative;
  z-index: 2;
  top: 2em;
}
.team-section .player {
  /* Deutlich größere Hintergrundnummer */
}
.team-section .player__bg-number {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Exo 2", sans-serif;
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.2);
  z-index: 1;
  pointer-events: none;
}
.team-section .player__data {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1.2rem;
  background: rgba(0, 0, 0, 0.6);
  z-index: 3;
  transition: background 0.35s ease;
}
.team-section .player__meta {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.team-section .player__number {
  font-size: 2rem;
  font-weight: 700;
  color: #039faf;
  transition: color 0.3s ease;
}
.team-section .player__captain {
  font-size: 2rem;
  font-weight: 700;
  color: #039faf;
  width: 45px;
  height: 45px;
  background: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Roboto Slab", serif;
  font-size: 24px;
  color: #00bfff;
  font-weight: 700;
}
.team-section .player__name {
  font-family: "Roboto Slab", serif;
  font-size: 2.5rem;
  font-weight: 900;
  display: flex;
  flex-direction: column;
  margin-top: 0.2rem;
  text-transform: uppercase;
}
.team-section .player__firstname {
  transition: color 0.3s ease;
}
.team-section .player__lastname {
  opacity: 0.85;
  margin-top: -20px;
}
.team-section .player:hover {
  transform: translateY(-6px);
}
.team-section .player:hover .player__data {
  background: rgba(3, 159, 175, 0.1);
}
.team-section .player:hover .player__number {
  color: #fff;
}
.team-section .player:hover .player__firstname {
  color: #039faf;
}
.team-section .player:hover .player__bg-number {
  color: #039faf;
}

/* Content-Bereich mit H1 */
.probetraining {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 20, 40, 0.4));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 191, 255, 0.3);
  border-radius: 25px;
  padding: 60px;
  margin: 80px 0;
  position: relative;
  overflow: hidden;
}

.probetraining::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #00bfff, #00ffff, #00bfff, transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.equipment-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.equipment-item {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 15px;
  border-left: 5px solid #00bfff;
  transition: transform 0.3s, box-shadow 0.3s;
}

.equipment-item:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(0, 191, 255, 0.2);
}

.equipment-item strong {
  font-family: "Roboto Slab", serif;
  font-weight: 700;
  color: #00bfff;
  display: block;
  margin-bottom: 8px;
  font-size: 1.1em;
}

/* Kachel-Grid */
.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 0 0 50px 0;
  /* Fix: WordPress fügt einen inneren Container hinzu, der das Grid stört. */
}
.content-grid > .wp-block-group__inner-container {
  display: contents;
}
@media (min-width: 768px) {
  .content-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .content-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 191, 255, 0.3);
}

.card h2.card__heading {
  font-family: "Roboto Slab", serif;
  color: #039faf;
  margin-bottom: 15px;
  font-size: 1.6em;
  font-weight: 700;
  letter-spacing: 1px;
  position: unset;
}

/* FOOTER */
.footer {
  background: #fff;
  color: #000;
  padding: 40px 20px 20px;
  margin-top: 60px;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-top .sv {
  width: 60px;
  height: auto;
  margin-left: 1em;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 0em;
}
@media screen and (max-width: 1199px) {
  .logo-section {
    margin-bottom: 1em;
  }
}
.logo-section .logo {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-section .logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-placeholder {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #000, #333);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Roboto Slab", serif;
  font-size: 24px;
  color: #00bfff;
  font-weight: 700;
}

.slogan {
  font-family: "Bebas Neue", cursive;
  font-size: 2em;
  font-weight: 400;
  color: #000;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1em;
}

.nav-section {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .nav-section {
    flex-direction: column;
  }
}

.nav-level1 {
  display: flex;
  gap: 40px;
  list-style: none;
  font-weight: 500;
  font-family: "Exo 2", sans-serif;
}

.nav-level1 a {
  color: #000;
  text-decoration: none;
  position: relative;
  padding: 4px 0;
}

.nav-level1 a:hover {
  color: #00bfff;
}

.nav-level1 a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #00bfff;
  transition: width 0.3s ease;
}

.nav-level1 a:hover::after {
  width: 100%;
}

.footer-nav {
  display: flex;
  align-items: center;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  font-size: 0.9em;
  color: #666;
  font-family: "Exo 2", sans-serif;
}

.footer-bottom a {
  color: #000;
  text-decoration: none;
  margin: 0 10px;
}

.footer-bottom a:hover {
  color: #00bfff;
}

@media (min-width: 769px) and (max-width: 1200px) {
  .footer-top {
    flex-direction: column;
    align-items: stretch;
  }
  .nav-section {
    justify-content: flex-end;
  }
}
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
  }
  .footer-top .sv {
    margin: 0;
    margin-top: 1em;
  }
  .nav-level1 {
    gap: 20px;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
  }
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-container {
    gap: 25px;
  }
  .logo {
    width: 220px;
  }
  .probetraining-section h1 {
    font-size: 2.2em;
  }
  .probetraining-section {
    padding: 40px 20px;
  }
  .probetraining-section h3 {
    font-size: 1.8em;
  }
}
/*



html {
  background: rgba(122, 202, 228, 1);
  height: 100%;
}

body {
  font-family: Roboto;
  margin: 0 auto;
  min-height: 100%;
  background-size: 100% auto;
  background-color: #1a1a1a;
  color: #fff;
  text-rendering: optimizelegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  overflow-x: hidden;
}

.site {
  padding: 0;
  position: relative;
  min-height: 100%;
  width: auto;
  margin: 0 auto;

}

@import 'header/header';
@import 'header/navigation';


@import 'content/content';

.container {
  width: 100%;
  max-width: 1322px;
  margin: 0 auto;
  padding: 0 16px;
  @media screen and (min-width: 992px) {

    max-width: 1354px;
    padding: 0 32px;

}
}




.site {


  a {
    color: white;
    font-weight: 500;
    text-decoration: underline;
  }

}

.site-footer {
  text-align: center;
  background: rgb(0, 80, 106);

  .site-info {
    font-weight: 100;
    font-size: 0.8em;
    padding: 0.2em;
    color: white;
    margin-top: 2em;
  }
}

/* Small set of utility classes used in templates (Tailwind-like) 
.w-full {
  width: 100% !important;
}
.h-full {
  height: 100% !important;
}
.object-cover {
  object-fit: cover;
}
.object-top {
  object-position: top;
}
.spieler-thumb {
  display: inline-block;
  width: 64px;
  height: 64px;
  object-fit: cover;
  object-position: center;
  margin-right: 0.5rem;
}
.spieler-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.spieler-meta-inline {
  display: inline-block;
  vertical-align: middle;
}

/* Container and grid for single player to match site layout
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}
.spieler-single {
  padding: 2rem 0;
}
.spieler-header {
  margin-bottom: 1rem;
}
.spieler-title {
  font-size: 2rem;
  margin: 0 0 0.5rem 0;
}
.spieler-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 1.5rem;
  align-items: start;
}
.spieler-meta .portrait {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 6px;
}
.spieler-bio {
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .spieler-grid {
    grid-template-columns: 1fr;
  }
  .spieler-thumb {
    width: 48px;
    height: 48px;
  }
}



.wp-child-theme-fastbreakers-theme {


  .primary-menu {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    padding: 0;
    flex-wrap: wrap;
    a {
      color: black !important;
      transition: opacity 0.3s;
      &:hover {
        opacity: 0.8;
      }
    }
  }

  .spieler-single {
    max-width: 900px;
    margin: 2rem auto;

    h1 {
      font-size: 1.75rem;
      margin-bottom: 0.5rem;
    }

    .spieler-meta {
      display: flex;
      gap: 1rem;

      .portrait {
        flex: 0 0 160px;
        img {
          width: 100%;
          height: auto;
          border-radius: 6px;
        }
      }

      .details {
        flex: 1;
        p {
          margin: 0.25rem 0;
        }
        strong {
          color: $primary;
        }
      }
    }

    .spieler-bio {
      margin-top: 1rem;
    }
  }

  .team {
    margin: 2rem 0;
    h2 {
      color: $primary;
    }
  }
}
*/
.front-page-hero {
  position: relative;
  width: 100vw;
  height: 60vh;
  min-height: 400px;
  max-height: 700px;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.front-page-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.front-page-hero .hero-content {
  position: relative;
  z-index: 2;
  padding: 1rem;
}
.front-page-hero .hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.front-page-content-wrapper {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

@media (max-width: 768px) {
  .front-page-hero {
    height: 50vh;
    min-height: 300px;
  }
  .front-page-hero .hero-title {
    font-size: 2rem;
  }
  .front-page-content-wrapper {
    margin: 1.5rem auto;
  }
}
.home .site {
  margin-top: -80px;
}
.home .site .site-content {
  padding: 0 20px 80px 20px;
}

.entry-video-fullwidth {
  width: 100vw; /* Vollbreite */
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 0;
}

.entry-video-fullwidth video {
  width: 100%;
  height: auto;
  display: block;
}

/* HOMEPAGE ONLY: Transparent Header + Nav */
body.home .header,
body.home .main-nav {
  background: transparent !important;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 999;
}

body.home .header {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(243, 243, 243, 0.05)) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 191, 255, 0.3);
}

body.home .header.scrolled,
body.home .main-nav.scrolled {
  background: rgba(0, 0, 0, 0.15) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 191, 255, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: sticky;
}

body.home .main-nav {
  display: none;
}
body.home .main-nav.scrolled {
  display: block;
}

body.home .site {
  margin-top: -227px;
}

/* FULLSCREEN VIDEO */
.hero-video-fullscreen {
  position: relative;
  width: 100vw;
  height: 100vh;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  display: block;
}

.hero-video-fullscreen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Vollbild ohne Verzerrung */
  object-position: center;
}

/* Video Overlay (optional, dunkler für Text-Lesbarkeit) */
.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-video-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}
.hero-video-content h1 {
  line-height: 1em;
  font-size: clamp(3rem, 8vw, 6rem);
}
@media (max-width: 768px) {
  .hero-video-content h1 {
    font-size: 9vw;
  }
}
.hero-video-content h1 {
  margin-bottom: 1rem;
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

.home section h2 {
  font-family: "Roboto Slab", serif;
  color: #333;
  font-size: 4em;
  font-weight: 900;
  margin: 20px 0 10px 0;
  letter-spacing: 5px;
  text-transform: uppercase;
  position: relative;
  z-index: -1;
  left: -0.5em;
}
@media screen and (max-width: 768px) {
  .home section h2 {
    word-break: break-all;
  }
}

/*# sourceMappingURL=style.css.map */
