/* GLOBAL COLORS*/

:root {
  --primary-color: #000000;
  --secondary-color: #ffd900;
  --accent-color: #ffffff;
  --background-color: #000000;
  --card-gradient-direction: to bottom;
  --card-gradient-start: var(--secondary-color);
  --card-gradient-mid: var(--accent-color);
  --card-gradient-end: var(--background-color);
}


/* GLOBAL SETTINGS*/

/* Fonts & Co. */

p {
  font-size: 1rem ;
}
/*Lists*/

.listDecor {
  list-style: disc;
  padding-inline-start: 1.25rem;
}
.listDecor li {
  list-style: disc; /* overwrite all the global set */
}

* {
  color: var(--accent-color);
  text-decoration: none;
  list-style: none;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0px;
}

/* === dt & dd ===*/

dt {
  margin: 15px 0px;
}

dd {
  margin: 2px 0px;
}

/*H CLASSES Black and Yellow Blocks as headers*/


.h3ClassYellow {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  display: block;
  max-width: 500px;
  border: 88px;
  padding: 20px 30px;
}

.h3ClassYellowLong {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  display: block;
  max-width: 1000px;
  border: 88px;
  padding: 20px 30px;
}

.h3ClassBlack {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  display: block;
  max-width: 500px;
  border: 88px;
  padding: 20px 30px;
}

.h3ClassBlackLong {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1000px;
  border: 88px;
  padding: 20px 30px;
  margin: 20px;
}

/* CTAS */

.ctaNoActionYellow * {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  width: 132px;
  height: 42px;
  font-size: 20px;
  font-weight: 800;
  border-radius: 30px;
}

.cta__primary {
  background-color: var(--secondary-color);
  border: none;
  border-radius: 20px;
  color: var(--primary-color);
  padding: 10px 20px;
  width: 209px;
  height: 42px;
  font-weight: 800;
  font-size: 18px;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.28s ease;
}

.cta__primary:hover {
  background-color: var(--primary-color); /* Beispiel */
  color: var(--secondary-color);
  transform: scale(1.05);
  border: 1px solid var(--secondary-color);
}

.cta__secondary {
  background-color: var(--primary-color);
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  border: none;
  border-radius: 20px;
  padding: 10px 20px;
  width: 289px;
  height: 42px;
  font-weight: 800;
  font-size: 18px;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.28s ease;
}

.cta__secondary:hover {
  background-color: var(--primary-color); /* Beispiel */
  color: var(--secondary-color);
  transform: scale(1.05);
  border: 1px solid var(--secondary-color);
}

.cta__third {
  background-color: var(--primary-color);
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  border-radius: 20px;
  padding: 10px 20px;
  width: 200px;
  height: 42px;
  font-weight: 800;
  font-size: 18px;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.28s ease;
}

.cta__third:hover {
  background-color: var(--primary-color); /* Beispiel */
  color: var(--secondary-color);
  transform: scale(1.05);
  border: 1px solid var(--secondary-color);
}

.cta__third {
  background-color: var(--primary-color);
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  border-radius: 20px;
  padding: 10px 20px;
  width: 200px;
  height: 42px;
  font-weight: 800;
  font-size: 18px;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.28s ease;
}

.cta__third:hover {
  background-color: var(--primary-color); /* Beispiel */
  color: var(--secondary-color);
  transform: scale(1.05);
  border: 1px solid var(--secondary-color);
}

.cta__thirdShadow {
  background-color: var(--primary-color);
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  border-radius: 20px;
  padding: 10px 20px;
  width: 200px;
  height: 42px;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 10px 12px rgba(0, 0, 0, 0.433);
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.28s ease;
}

.cta__thirdShadow:hover {
  background-color: var(--primary-color); /* Beispiel */
  color: var(--secondary-color);
  transform: scale(1.05);
  border: 1px solid var(--secondary-color);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
}

.cta__glow {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 38px;
  border-radius: 32px;
  color: var(--accent-color);
  font-weight: 800;
  font-size: 18px;
  background: rgba(0, 0, 0, 0.85);
  border: none;
  overflow: hidden;
  transition: transform 1s ease, box-shadow 1s ease, filter 1s ease;
  isolation: isolate;
  filter: drop-shadow(0 0 0 rgba(255, 162, 2, 0.509));
  white-space: nowrap;
}

.cta__glow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(
    120deg,
    transparent 10%,
    var(--secondary-color) 40%,
    var(--primary-color) 10%,
    var(--secondary-color) 60%,
    transparent 100%
  );
  background-size: 300% 100%;
  animation: ctaGlowSweep 4.8s linear infinite;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

.cta__glow span {
  position: relative;
  z-index: 1;
}

.cta__glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 32px rgb(0, 0, 0);
  filter: drop-shadow(0 5px 5px rgb(255, 183, 0));
}

.cta__glow:active {
  transform: translateY(0px) scale(0.99);
  box-shadow: 0 5px 5px rgb(255, 183, 0);
}


/* MOBILE */

/* CTA GLOW */

.cta__glowMobile {
  width: 124px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 38px;
  border-radius: 32px;
  color: var(--accent-color);
  font-weight: 800;
  font-size: 18px;
  background: rgba(0, 0, 0, 0.85);
  border: none;
  overflow: hidden;
  transition: transform 1s ease, box-shadow 1s ease, filter 1s ease;
  isolation: isolate;
  filter: drop-shadow(0 0 0 rgba(255, 162, 2, 0.509));
}

.cta__glowMobile::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(
    120deg,
    transparent 10%,
    var(--secondary-color) 40%,
    var(--primary-color) 10%,
    var(--secondary-color) 60%,
    transparent 100%
  );
  background-size: 300% 100%;
  animation: ctaGlowSweep 4.8s linear infinite;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

.cta__glowMobile span {
  position: relative;
  z-index: 1;
}

.cta__glowMobile:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 32px rgb(0, 0, 0);
  filter: drop-shadow(0 5px 5px rgb(255, 183, 0));
}

.cta__glowMobile:active {
  transform: translateY(0px) scale(0.99);
  box-shadow: 0 5px 5px rgb(255, 183, 0);
}

.cta__glow--desktop {
  display: inline-flex;
}

.cta__glowMobile--mobile {
  display: none;
}


@keyframes ctaGlowSweep {
  0% {
    background-position: -180% 0;
  }
  50% {
    background-position: 0% 0;
  }
  100% {
    background-position: 180% 0;
  }
}

.ctaShowcase {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/* SPANS  & SUPS*/

span {
  color: var(--secondary-color);
}

.span1 {
  color: var(--secondary-color);
  margin: 0px;
  padding: auto;
}

.span2 {
  color: var(--secondary-color);
  margin: 0px;
  padding: auto;
  font-style: italic;
}

sup {
  font-size: 21px;
  font-weight: 400;
}

.body {
  background-color: var(--primary-color);
}

.heanderNavigator__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 25px 45px;
}

.heanderNavigator__entry {
  display: flex;
  align-items: center;
  gap: 36px;
  width: 100%;
}

.heanderNavigator__logo {
  display: inline-flex;
  align-items: center;
}

.heanderNavigator__list {
  display: flex;
  flex: 1;
  min-width: 0;
}

.heanderNavigator__list > ul {
  display: flex;
  align-items: center;
  gap: 39px; /* space between items */
  list-style: none; /* removes bullets */
  padding: 0;
  margin: 0;
}

.heanderNavigator__item--dropdown {
  position: relative;
}

.heanderNavigator__link {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.heanderNavigator__link::after {
  content: "+";
  color: var(--secondary-color);
  font-weight: 700;
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.heanderNavigator__item--dropdown:hover .heanderNavigator__link::after,
.heanderNavigator__item--dropdown:focus-within .heanderNavigator__link::after {
  content: "-";
}

.heanderNavigator__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--primary-color);
  padding: 12px 0;
  border: 1px solid var(--secondary-color);
  border-radius: 12px;
  min-width: 180px;
  flex-direction: column;
  gap: 0;
  z-index: 10;
}

.heanderNavigator__item--dropdown:hover .heanderNavigator__dropdown,
.heanderNavigator__item--dropdown:focus-within .heanderNavigator__dropdown {
  display: flex;
}

.heanderNavigator__dropdown li {
  width: 100%;
}

.heanderNavigator__dropdown a {
  display: block;
  padding: 10px 18px;
  color: var(--accent-color);
  white-space: nowrap;
}

.heanderNavigator__dropdown a:hover,
.heanderNavigator__dropdown a:focus {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.heanderNavigator__icons {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.heanderNavigator__list a[aria-current="page"],
.heanderNavigator__dropdown a[aria-current="page"] {
  color: var(--secondary-color);
  font-weight: 800;
}

.heanderNavigator__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.heanderNavigator__toggle:hover,
.heanderNavigator__toggle:focus {
  transform: scale(1.05);
}

.heanderNavigator__toggleBar {
  position: relative;
  width: 30px;
  height: 3px;
  background-color: var(--secondary-color);
  border-radius: 1px;
  transition: background-color 0.2s ease;
}

.heanderNavigator__toggleBar::before,
.heanderNavigator__toggleBar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 30px;
  height: 3px;
  background-color: var(--secondary-color);
  border-radius: 1px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.heanderNavigator__toggleBar::before {
  transform: translateY(-8px);
}

.heanderNavigator__toggleBar::after {
  transform: translateY(8px);
}

.heanderNavigator__container.nav-open .heanderNavigator__toggleBar {
  background-color: transparent;
}

.heanderNavigator__container.nav-open .heanderNavigator__toggleBar::before {
  transform: translateY(0) rotate(45deg);
  background-color: var(--secondary-color);
}

.heanderNavigator__container.nav-open .heanderNavigator__toggleBar::after {
  transform: translateY(0) rotate(-45deg);
  background-color: var(--secondary-color);
}

hr {
  border: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    /* direction of the gradient */ transparent 0%,
    var(--secondary-color) 50%,
    transparent 100%
  );
}

/* HOVER TEXTE */

.hoverTextYellow {
  transition: color 0.2s ease;
}

.hoverTextYellow:hover,
.hoverTextYellow:focus {
  color: var(--secondary-color);
}


/* HERO */

.hero__container {
  position: relative; /* wichtig, damit ::before sich daran orientiert */
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 800px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

body.body--probe .hero__container {
  background-image: url(/img/probeTrainning.webp);
}
body.body--kurse .hero__container {
  background-image: url(/img/bjjHero.webp);
}
body.body--bjj .hero__container {
  background-image: url(/img/bjjHero.webp);
}
body.body--mma .hero__container {
  background-image: url(/img/mmaHero.webp);
}
body.body--thai .hero__container {
  background-image: url(/img/thaiBHero.webp);
}
body.body--private .hero__container {
  background-image: url(/img/privatStunde.webp);
}
body.body--nogi .hero__container {
  background-image: url(/img/noGiHero.webp);
}
body.body--blog .hero__container {
  background-image: url(/img/blogHero.webp);
}
body.body--kids .hero__container {
  background-image: url(/img/kidsHero.webp);
}
body.body--index .hero__container {
  background-image: url(/img/indexHero.jpg);
}
body.body--capoeira .hero__container {
  background-image: url(/img/CapoHero.webp);
}




/* Verlaufsschicht */
.hero__container::before {
  content: "";
  position: absolute;
  inset: 0; /* links:0, oben:0, rechts:0, unten:0 */
  background: linear-gradient(
    -90deg,
    rgba(0, 0, 0, 0) 0%,
    /* oben dunkler */ rgba(0, 0, 0, 0.844) 90% /* nach unten transparent */
  );
  z-index: 0; /* liegt hinterm Text */
}

.hero__content {
  position: relative; /* hebt den Text über den Verlauf */
  display: flex;
  flex-direction: column;
  width: 947px;
  gap: 44px;
  margin: 118px 200px;
  z-index: 1; /* Text bleibt über dem ::before */
}

.hero__text {
  font-size: 30px;
  width: 947px;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

/* === BLOG RASTER === */

.blogRaster__container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  background-color: var(--background-color)
}

.blogRaster {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  margin: 50px 50px;
  padding: 32px;
  box-sizing: border-box;
  max-width: none;
  border-radius: 28px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 217, 0, 0.25);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
}

.blogRaster__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blogRaster__badge {
  display: inline-block;
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 217, 0, 0.15);
  color: var(--secondary-color);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blogRaster__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
}

.blogRaster__description {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.blogRaster__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.blogRaster__item {
  display: flex;
}

.blogMediaCard {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 14px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  margin: 0;
}

.blogMediaCard__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: rgba(255, 255, 255, 0.05);
}

.blogMediaCard__media img,
.blogMediaCard__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blogMediaCard__media video {
  background-color: #000000;
}

.blogMediaCard__media--video::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.45) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.blogMediaCard__media--video:hover::before,
.blogMediaCard__media--video:focus-within::before {
  opacity: 1;
}

.blogMediaCard__videoIcon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(255, 217, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.blogMediaCard__videoIcon::before {
  content: "";
  border-style: solid;
  border-width: 9px 0 9px 16px;
  border-color: transparent transparent transparent rgba(255, 217, 0, 0.85);
  margin-left: 4px;
}

.blogMediaCard__media--video:hover .blogMediaCard__videoIcon,
.blogMediaCard__media--video:focus-within .blogMediaCard__videoIcon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.05);
}

.blogMediaCard__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 18px 20px;
}

.blogMediaCard__tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 217, 0, 0.85);
}

.blogMediaCard__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}

.blogMediaCard__description {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

/* HERO SENSEI*/

.gustavoHero__container {
  gap: 200px;
  margin: 60px 0px 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.gustavoHero__image {
  max-width: 500px;
}

.gustavoHero__text {
  width: 550px;
  font-size: 16px;
  gap: 44px;
  display: flex;
  flex-direction: column;
}

/* CAR CONTAINER */

.courseCarrousell__container {
  background-color: var(--secondary-color);
  height: 647px;
  gap: 26px;
  margin: 88px 0px 0px;
  padding: 0px 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.courseCarrousell__content {
  display: flex;
  flex-direction: column;
  max-width: 802px;
  margin: 0px;
  gap: 26px;
}

.h4Black {
  color: var(--primary-color);
  font-weight: 300px;
}

/* FIGHT CARDS*/

.fightCards__carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 100px;
}

.fightCards__container {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 18px;
  padding: 10px 6px;
  margin: 0;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}

.fightCards__container::-webkit-scrollbar {
  display: none;
}

.fightCard__container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 0 0 auto;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

.fightCards__container.is-dragging {
  cursor: grabbing;
}

.fightCards__nav {
  background-color: var(--primary-color);
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  width: 65px;
  height: 65px;
  flex-shrink: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease,
    color 0.2s ease;
}

.fightCards__nav:hover {
  background-color: var(--secondary-color);
  border: 3px solid black;
}

.fightCards__nav:hover span {
  color: var(--primary-color)
}

.fightCards__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  border: 3px solid black;
}

.fightCards__nav span {
  font-size: 1.8rem;
  line-height: 1;
}

.fightCard__image h5 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 289px;
  height: 308px;
  margin: 10px 10px;
  gap: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  font-weight: 700;
}

.fightCard__image--mma h5 {
  background-image: url(/img/fithCard__MMA.webp);
}

.fightCard__image--bjj h5 {
  background-image: url(/img/fithCard__BJJ.webp);
}

.fightCard__image--capoeira h5 {
  background-image: url(/img/fithCard__CAPO.webp);
}

.fightCard__image--nogi h5 {
  background-image: url(/img/fithCard__GRAP.webp);
}

.fightCard__image--boxing h5 {
  background-image: url(/img/fithCard__THAI.webp);
}

.fightCard__image--privateStunde h5 {
  background-image: url(/img/fithCard__private.webp)
}
.fightCard__image--kinder h5 {
  background-image: url(/img/fithCard__kids.webp)
}

/* MMA*/

.trainloc__container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0px 88px;
}

/* LOCATIONS */

/* LOCATIONS CONTAINER*/

.trainloc__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--primary-color);
  height: 647px;
  gap: 26px;
  margin: 0px 45px;
}

.trainloc__header {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.locationsCards__container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 35px;
}

/* CARDS LOCATION*/

/* Global main Design */
.locationsCards__container h5 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: 1px solid var(--secondary-color);
  background-repeat: no-repeat;
  background-position: center;
  width: 200px;
  height: 195px;
  margin: 10px 10px;
  padding: 50px 50px;
  font-size: 28px;
  font-weight: 700;
  color: var(--secondary-color);
}

/* CTA in Location-Cards volle Breite */
.locationsCards__container .cta__primary,
.locationsCards__container .cta__secondary,
.locationsCards__container .cta__third,
.locationsCards__container .ctaNoActionYellow,
.locationsCards__container button,
.locationsCards__container a.cta {
  align-self: stretch;
  width: 100%;
  box-sizing: border-box; /* Rand/Innenabstand einrechnen */
}

/* background variants */

.locationsCardsDueren__container h5 {
  background-image: url(/img/DürenSkyline\ 1.svg);
}
.locationsCardsKoeln__container h5 {
  background-image: url(/img/CologneSkyline\ 1.svg);
}
.locationsCardsKelmis__container h5 {
  background-image: url(/img/KilmesSkyline.svg);
}
.locationsCardsNext__container h5 {
  background-image: url();
}

/* cardCourses container*/

.cardCourses__container {
  background-image: url("/img/gustavoFightFront\ 1.svg"),
    url("/img/gustavoFightFront2.png");
  background-repeat: no-repeat;
  background-position: left bottom, right bottom;
  background-color: var(--accent-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 45px;
  padding: 90px;
}

.cardCourses__container 
/* Card Courses Cards Container */

.cardsCourse__container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

/* BJJ COURSE*/

.cardCoursesBjj__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 300px;
  height: 430px;
  background-color: var(--primary-color);
  border-radius: 25px;
  padding: 20px 0px;
  gap: 20px;
}

.cardCoursesBjj__container img {
  max-width: 72px;
  max-height: 72px;
  background-color: var(--primary-color);
  border-radius: 50%;
  border: solid 1px var(--secondary-color);
  padding: 10px;
  margin: -45px 0px 0px 0px;
}

.cardCoursesBjj__container sup {
  color: var(--secondary-color);
}

.cardCoursesBjj__container span {
  color: var(--secondary-color);
  font-size: 21px;
}

.priceCards {
  font-size: 58px;
  font-weight: 700;
}

/* ALL COURSES*/

.cardCoursesAllC__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  width: 300px;
  height: 430px;
  border: 1px solid var(--primary-color);
  background: linear-gradient(
    var(--card-gradient-direction),
    var(--card-gradient-end) 0%,
    var(--card-gradient-end) 53%,
    var(--card-gradient-start) 53%,
    var(--card-gradient-start) 100%
  );
  border-radius: 25px;
  padding: 20px 0px;
  gap: 20px;
}

.cardCoursesAllC__container li {
  color: var(--primary-color);
}

.cardCoursesAllC__container img {
  width: 52px;
  height: 52px;
  background-color: var(--secondary-color);
  border-radius: 100%;
  border: solid 1px var(--background-color);
  padding: 10px;
  margin: -85px 0px 0px 0px;
}

.cardCoursesAllC__container sup {
  color: var(--secondary-color);
}

.cardCoursesAllC__container span {
  color: var(--secondary-color);
  font-size: 21px;
}

.priceCards {
  font-size: 58px;
  font-weight: 700;
}

.cardCoursesAllC__content1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.cardCoursesAllC__container .ctaNoActionYellow * {
  /* eigene Styles nur für diese Karte */
  width: 160px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

/* COMBO COURSES*/

.cardCoursesComboC__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 300px;
  height: 430px;
  background-color: var(--primary-color);
  border-radius: 25px;
  padding: 20px 0px;
  gap: 20px;
}

.cardCoursesComboC__container img {
  max-width: 72px;
  max-height: 72px;
  background-color: var(--primary-color);
  border-radius: 50%;
  border: solid 1px var(--secondary-color);
  padding: 10px;
  margin: -45px 0px 0px 0px;
}

.cardCoursesComboC__container sup {
  color: var(--secondary-color);
}

.cardCoursesComboC__container span {
  color: var(--secondary-color);
  font-size: 21px;
}

.priceCards {
  font-size: 58px;
  font-weight: 700;
}

.cardCoursesComboC__content1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.cardCoursesComboC__container .ctaNoActionYellow * {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 60px;
  border-radius: 50px;
  padding: 0px 1px;
}

.cardCoursesComboC__container p {
  text-align: center;
}

/* CARD FLEX ABO */

.cardCoursesFlexAb__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 600px;
  height: 200px;
  background-color: var(--accent-color);
  border: solid 1px var(--primary-color);
  border-radius: 25px;
  padding: 20px 0px;
  gap: 20px;
}

.cardCoursesFlexAb__container sup {
  color: var(--primary-colorr);
}

.cardCoursesFlexAb__container span {
  color: var(--primary-color);
  font-size: 21px;
}

.priceCards {
  font-size: 58px;
  font-weight: 700;
}

.cardCoursesFlexAb__container .ctaNoActionYellow * {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 450px;
  height: 60px;
  border-radius: 10px;
  padding: 0px 1px;
  border: solid 1px var(--primary-color);
}

.cardCoursesFlexAb__container p,
.cardCoursesFlexAb__container li {
  color: var(--primary-color);
}

/* FINAL CONTENT CONTAINER */

.finalContentHome__container {
  height: 647px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px;
  gap: 55px;
}

.finalContentHome__container img {
  max-width: 862px;
  max-height: 647px;
}

.finalContentHome__container .h3ClassYellowLong {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.finalContentHome__container {
  text-align: center;
}

/* FOOTER */

.top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px;
  cursor: pointer;
  margin: 1rem;
}

.top:focus,
.top:focus-visible {
  outline: 2px solid var(--secondary-color);
  outline-offset: 4px;
}

.top img {
  pointer-events: none;
}

.top p {
  font-size: 0.81rem;
}

.footer__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21px;
  margin: 50px 0;
  background-color: var(--background-color);
}

.footerContentUp {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 0px;
  gap: 114px;
}

.footer__container hr {
  width: 100%;
  align-self: stretch; /* optional, sorgt im Flex-Layout fürs Strecken */
}

.footer__container li {
  font-size: 12px;
  font-weight: 200;
}

.footer__container p {
  font-size: 12px;
  text-align: center;
}

/* === PROBE TRAINNING === */


/* CONTACT FORM */

.contactForm__container {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 45px;
  margin: 60px 118px;
}

.contactForm__container form {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.contactForm__select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0.35);
  color: var(--secondary-color);
  font-size: 16px;
}

.contactForm__field {
  width: 97%;
  padding: 12px 0px 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0.35);
  color: var(--secondary-color);
  font-size: 16px;
}


.contactForm__field::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contactForm__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23ffffff' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 10px 6px;
}

.contactForm__field:focus,
.contactForm__select:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(255, 219, 112, 0.2);
}

.contactForm__submit {
  align-self: flex-start;
  padding-inline: 32px;
}

.sendDsgvo {
  display: flex;
  flex-direction: row;
}

.probeExplanatory {
  display: flex;
  flex-direction: column;
}

.probeExplanatory__steps {
  display: flex;
  flex-direction: column;
  margin: 20px;
}

/* === ==== */
/* === TABLET (≤1024PX) === */
/* === ==== */
@media (max-width: 1024px) {
  .heanderNavigator__container {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 18px 32px;
    gap: 18px;
  }

  .heanderNavigator__entry {
    gap: 3px;
  }

  .heanderNavigator__list > ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    margin: 25px;
  }

  .hero__container {
    height: auto;
    min-height: 640px;
    flex-direction: column;
    gap: 32px;
  }

  .hero__content {
    width: 100%;
    max-width: 720px;
    margin: 120px 60px 80px;
    gap: 32px;
  }

  .hero__text {
    width: 100%;
    font-size: 26px;
  }

  .blogRaster {
    flex: 1 1 auto;
    margin: 40px 0 60px;
    max-width: none;
    padding: 28px;
  }

  .blogRaster__grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .gustavoHero__container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin: 80px 24px 0;
  }

  .gustavoHero__image {
    max-width: 360px;
  }

  .gustavoHero__text {
    width: 100%;
    max-width: 680px;
    text-align: left;
  }

  .courseCarrousell__container {
    height: auto;
    padding: 60px 32px;
  }

  .courseCarrousell__content {
    max-width: 100%;
  }

  .fightCards__carousel {
    gap: 24px;
  }

  .fightCards__nav {
    display: inline-flex;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
  }

  .fightCards__nav span {
    font-size: 1.4rem;
  }

  .fightCards__container {
    padding: 10px 6px;
  }

  .locationsCards__container {
    flex-wrap: wrap;
    gap: 24px;
  }

  .cardsCourse__container {
    flex-wrap: wrap;
    gap: 32px;
  }

  .cardCoursesFlexAb__container {
    width: 100%;
    max-width: 520px;
  }

  .finalContentHome__container {
    height: auto;
    padding: 50px 32px;
  }

  .finalContentHome__container img {
    max-width: 100%;
  }

  .contactForm__container {
    margin: 40px 32px;
    gap: 30px;
  }

  .contactForm__container form {
    flex-direction: column;
  }

  .contactForm__submit {
    align-self: flex-start;
  }

  .sendDsgvo {
    flex-direction: column;
    gap: 12px;
  }

  .trainloc__container {
    margin: 0 32px;
  }

  .trainloc__container--bjj {
    padding: 48px 32px 72px;
  }

  .trainlocSchedule__cards {
    gap: 20px;
  }

  .trainlocSchedule__card {
    flex: 1 1 45%;
    max-width: 100%;
    border-radius: 100px;
  }

  .footerContentUp {
    gap: 60px;
  }
}

/* === ==== */
/* === MOBILE (≤600PX) === */
/* === ==== */

@media (max-width: 600px) {
  .heanderNavigator__container {
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px;
    gap: 12px;
    background-color: var(--primary-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    z-index: 100;
  }
  

  .heanderNavigator__entry {
    display: grid;
    grid-template-columns: auto auto auto;
    justify-items: center;
    width: 100%;
  }

  .heanderNavigator__logo {
    order: 0;
  }

  .heanderNavigator__logo img {
    width: 64px;
    height: auto;
  }

  .heanderNavigator__icons {
    order: 0;
    display: inline-flex;
    gap: 25px;
  }

  .cta__glowMobile {
    order: 2;
    padding: 28px 22px;
    width: 190px;
    height: 30px;
    font-size: 16px;
    white-space: nowrap;
  }

  .cta__glow--desktop {
    display: none;
  }

  .cta__glowMobile--mobile {
    display: inline-flex;
  
  }

  .heanderNavigator__toggle {
    order: 3;
    display: inline-flex;
    justify-self: end;
  }

  .heanderNavigator__list {
    order: 4;
    display: none;
    width: 100%;
    grid-column: 1 / -1;
    padding: 24px 0 0;
    background-color: transparent;
  }

  .heanderNavigator__list > ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 0;
    margin: 0;
  }

  .heanderNavigator__container.nav-open .heanderNavigator__list {
    display: block;
  }

  .heanderNavigator__item--dropdown > a {
    display: none;
  }

  .heanderNavigator__item--dropdown .heanderNavigator__dropdown {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: static;
    border: none;
    background: transparent;
    padding: 0;
  }

  .heanderNavigator__item--dropdown .heanderNavigator__dropdown a {
    padding: 0;
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
  }

  .heanderNavigator__item--dropdown .heanderNavigator__dropdown a:hover,
  .heanderNavigator__item--dropdown .heanderNavigator__dropdown a:focus {
    color: var(--secondary-color);
  }

  .heanderNavigator__list > ul > li.heanderNavigator__separator,
  .heanderNavigator__list > ul > li:not(.heanderNavigator__item--dropdown) {
    display: none;
  }

  .hero__container {
    width: 100%;
    background-position: 95%;
    max-width: none;
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: none;
    margin: 100px auto 50px;
    padding: 0 20px;
    box-sizing: border-box;
    gap: 88px;
  }

  .hero__text {
    width: 100%;
    font-size: 22px;
  }

  .blogRaster {
    margin: 40px 0;
    padding: 24px;
    gap: 24px;
  }

  .blogRaster__title {
    font-size: 24px;
  }

  .blogRaster__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .blogMediaCard__title {
    font-size: 18px;
  }

  .blogMediaCard__description {
    font-size: 13px;
  }

  .cta__primary,
  .cta__secondary,
  .cta__third,
  .cta__thirdShadow,
  .cta__glow {
    width: 100%;
    max-width: 400px;
    height: 50px;
    border-radius: 90px;
    align-self: center;
  }

  .cta__glow.cta__glowMobile {
    width: auto;
    height: 44px;
    align-self: auto;
    border-radius: 999px;
  }

  .ctaNoActionYellow * {

    border-radius: 90px;
    align-self: center;
  }

  .gustavoHero__container {
    display: flex;
    flex-direction: column;
    margin: 60px 20px 0;

  }

  .gustavoHero__image {
    display: flex;
    flex-direction: column;
    
  }

  .gustavoHero__text {
    text-align: left;
    gap: 28px;
  }

  .courseCarrousell__container {
    padding: 50px 20px;
  }

  .courseCarrousell__content {
    gap: 20px;
  }

  .fightCards__carousel {
    gap: 8px;
  }

  .fightCards__nav {
    display: inline-flex;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
  }

  .fightCards__nav span {
    font-size: 1.4rem;
  }
  .fightCards__container {
    padding: 10px 0;
  }

  .locationsCards__container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .locationsCards__container h5 {
    width: 100%;
    max-width: 320px;
    height: auto;
    padding: 40px 32px;
  }

  .cardsCourse__container {
    flex-direction: column;
    gap: 28px;
  }

  .cardCourses__container {
    background-image: none;
  }

  .cardCoursesBjj__container,
  .cardCoursesComboC__container,
  .cardCoursesAllC__container,
  .cardCoursesFlexAb__container {
    padding: 30px 20px;
  }

  .cardCoursesFlexAb__container {
    height: auto;
    padding: 30px 20px;
  }

  .cardCoursesFlexAb__container .ctaNoActionYellow * {
    width: 100%;
  }

  .finalContentHome__container {
    padding: 32px 20px;
    gap: 28px;
  }

  .footerContentUp {
    padding: 0px;
    gap: 45px;
  }

  .contactForm__container {
    margin: 32px 20px;
  }

  .contactForm__container form {
    gap: 16px;
  }

  .contactForm__submit {
    width: 100%;
    align-self: stretch;
    text-align: center;
  }

  .sendDsgvo {
    align-items: flex-start;
  }

  .trainloc__container {
    margin: 0 20px;
  }

  .trainloc__container--bjj {
    padding: 40px 20px 60px;
    background-image: url(/img/locationHeroMobile.webp);
  }

  .trainloc__container--bjj::before {
    background-image: url(/img/locationHeroMobile.webp);
  }

  .trainlocSchedule__cards {
    flex-direction: column;
  }

  .trainlocSchedule__card {
    flex: 1 1 auto;
  }

  .probeExplanatory__steps {
    margin: 20px 0;
  }
}

/* === BJJ SEITE === */

.trainloc__container--bjj {
  position: relative;
  height: auto;
  padding: 60px 45px 90px;
  gap: 36px;
  overflow: hidden;
}

.trainloc__container--bjj::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(/img/locationHero.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: blur(1px);
  transform: scale(1.05);
  z-index: 0;
  pointer-events: none;
}

.trainloc__container--bjj > * {
  position: relative;
  z-index: 1;
}

.trainloc__container--bjj .trainloc__header {
  max-width: 760px;
  gap: 18px;
}

.trainlocSchedule__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-content: center;
}

.trainlocSchedule__card {
  max-width: 320px;
  min-width: 260px;
  background-color: transparent; /* oder rgba(255,255,255,0.1) */
  color: var(--primary-color);
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.35);
  border-radius: 10px;
  border: 2px solid rgba(81, 59, 0, 0.226);
  background-color: rgba(255, 255, 255, 0.5); /* halbtransparent */
  backdrop-filter: blur(6px)
}


@media (max-width: 600px) {
  .trainloc__container--bjj {
    padding: 40px 20px 60px;
    background-image: url(/img/locationHeroMobile.webp);
  }

  .trainloc__container--bjj::before {
    background-image: url(/img/locationHeroMobile.webp);
  }
}

.trainlocSchedule__cardHeader {
  background-color: var(--primary-color);
  color: var(--accent-color);
  text-align: center;
  padding: 18px 16px;
}

.trainlocSchedule__cardHeader h5 {
  font-size: 20px;
  letter-spacing: 1px;
}

.trainlocSchedule__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}

.trainlocSchedule__list dt,
.trainlocSchedule__list dd {
  color: var(--primary-color); /* oder ein fester Hex-Wert */
}

.trainlocSchedule__list div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trainlocSchedule__list dt {
  font-weight: 700;
}



.trainlocSchedule__card--inactive {
  background-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  border: 1px dashed rgba(255, 255, 255, 0.3);
  box-shadow: none;
}

.trainlocSchedule__card--inactive .trainlocSchedule__cardHeader {
  background-color: transparent;
}

.trainlocSchedule__placeholder {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  font-style: italic;
}


/* === MMA SEITE === */

.gustavoHero__container {
  padding: 49px 0px

}

/* === BLOG MEDIA LIGHTBOX === */

.blogMediaCard__media[data-media-trigger] {
  cursor: zoom-in;
  transition: transform 0.25s ease;
}

.blogMediaCard__media[data-media-trigger]:focus-visible {
  outline: 2px solid var(--secondary-color);
  outline-offset: 4px;
}

.blogMediaCard__media--video[data-media-trigger] {
  cursor: pointer;
}

.mediaLightbox[hidden] {
  display: none;
}

.mediaLightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  pointer-events: none;
}

.mediaLightbox.is-open {
  pointer-events: auto;
}

.mediaLightbox__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.85);
}

.mediaLightbox__content {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.95);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
  width: min(960px, 100%);
  max-height: 90vh;
  overflow: hidden;
}

.mediaLightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: var(--accent-color);
  font-size: 1.75rem;
  line-height: 1;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.mediaLightbox__close:hover,
.mediaLightbox__close:focus-visible {
  color: var(--secondary-color);
  background-color: rgba(0, 0, 0, 0.85);
  outline: none;
}

.mediaLightbox__body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.mediaLightbox__image,
.mediaLightbox__video {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  border-radius: 8px;
  background-color: #000;
}

.mediaLightbox__video {
  width: 100%;
}

@media (max-width: 600px) {
  .mediaLightbox {
    padding: 16px;
  }

  .mediaLightbox__content {
    max-height: 85vh;
  }

  .mediaLightbox__close {
    font-size: 1.5rem;
    padding: 10px 12px;
  }
}


