*{
	padding: 0;
	margin: 0 ;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@600&display=swap');

@font-face { font-family: Inter; src: url('Inter/Inter-VariableFont_slnt,wght.ttf'); } 


body{
    overflow-x: hidden; 
}




/* RESET (optional leicht) */
.ath-nav * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* NAVBAR */
.ath-nav {
  background: #e9e9e9;
  border-bottom: 3px solid #000;
  font-family: Arial, sans-serif;
}

.ath-nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* BRAND */
.ath-nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ath-nav__logo {
  font-size: 22px;
}

.ath-nav__title {
  font-size: 18px;
  font-weight: bold;
}

/* MENU */
.ath-nav__menu {
  display: flex;
  gap: 25px;
}

.ath-nav__link {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  transition: color 0.2s;
}

.ath-nav__link:hover {
  color: #0077ff;
}

.ath-nav__link--active {
  color: #7b4bff;
}

/* BURGER */
.ath-nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.ath-nav__burger span {
  width: 25px;
  height: 3px;
  background: #000;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .ath-nav__menu {
    position: absolute;
    top: 60px;
    right: 0;
    background: #e9e9e9;
    width: 100%;
    flex-direction: column;
    padding: 15px;
    display: none;
    text-align: center;
  }

  .ath-nav__menu.active {
    display: flex;
  }

  .ath-nav__burger {
    display: flex;
  }
}








/* HERO SECTION */
.ath-hero {
  position: relative;
  height: auto;
  padding-top:7vh;
  padding-bottom:7vh;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

/* VIDEO BACKGROUND */
.ath-hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* DARK OVERLAY */
.ath-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
}

/* CONTENT */
.ath-hero__content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  padding: 100px 40px;
  color: #fff;
}

/* TITLE */
.ath-hero__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
}

/* TEXT */
.ath-hero__text {
  font-size: 18px;
  line-height: 1.6;
  color: #e0e0e0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .ath-hero__content {
    padding: 80px 20px;
  }

  .ath-hero__title {
    font-size: 32px;
  }

  .ath-hero__text {
    font-size: 16px;
  }
}








/* SECTION */
.ath-section {
  background: #fff;
  padding: 80px 20px;
  font-family: Arial, sans-serif;
}

/* CONTAINER */
.ath-section__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* TEXT AREA */
.ath-section__content {
  flex: 1;
}

.ath-section__title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #000;
}

.ath-section__text {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 25px;
}

/* LIST */
.ath-section__list {
  list-style: none;
  padding: 0;
}

.ath-section__item {
  font-size: 18px;
  margin-bottom: 12px;
  color: #000;
}

/* IMAGE */
.ath-section__image {
  flex: 1;
  text-align: center;
}

.ath-section__image img {
  max-width: 100%;
  height: auto;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .ath-section__container {
    flex-direction: column;
    text-align: center;
  }

  .ath-section__title {
    font-size: 34px;
  }

  .ath-section__text {
    font-size: 16px;
  }

  .ath-section__item {
    font-size: 16px;
  }
}







/* SECTION */
.wb-section {
  padding: 80px 20px;
  background: #efefef;
  font-family: Arial, sans-serif;
}

/* CONTAINER */
.wb-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* LEFT SIDE */
.wb-left {
  flex: 1;
}

.wb-subtitle {
  color: #2b7cff;
  font-size: 14px;
  margin-bottom: 10px;
}

.wb-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0a0f1c;
}

.wb-description {
  color: #5f6b7a;
  line-height: 1.6;
  font-size: 16px;
}

/* RIGHT SIDE GRID */
.wb-right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* ITEM */
.wb-item {
  background: transparent;
}

.wb-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.wb-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #0a0f1c;
}

.wb-item p {
  font-size: 14px;
  color: #6b7280;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .wb-container {
    flex-direction: column;
  }

  .wb-right {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .wb-right {
    grid-template-columns: 1fr;
  }

  .wb-title {
    font-size: 26px;
  }
}


















/* SECTION */
.opg-section {
  padding: 80px 20px;
  background: #efefef;
  font-family: Arial, sans-serif;
}

/* CONTAINER */
.opg-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* IMAGE */
.opg-image-wrapper {
  flex: 1;
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.opg-image {
  width: 100%;
  height: auto;
  display: block;
}

/* CONTENT */
.opg-content {
  flex: 1;
}

.opg-title {
  font-size: 32px;
  font-weight: 700;
  color: #0a0f1c;
  margin-bottom: 20px;
}

.opg-text {
  font-size: 16px;
  color: #5f6b7a;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* DIVIDER */
.opg-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 25px 0;
}

/* LIST */
.opg-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.opg-list-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 15px;
  color: #1f2937;
}

/* CHECK ICON */
.opg-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #7c3aed;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  margin-right: 10px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .opg-container {
    flex-direction: column;
  }

  .opg-image-wrapper {
    order: -1;
  }

  .opg-title {
    font-size: 26px;
  }
}

@media (max-width: 500px) {
  .opg-section {
    padding: 60px 15px;
  }
}









/* SECTION */
.ctf-section {
  padding: 80px 20px;
  background: #ffffff;
  font-family: Arial, sans-serif;
  text-align: center;
}

/* CONTAINER */
.ctf-container {
  max-width: 700px;
  margin: 0 auto;
}

/* TITLE */
.ctf-title {
  font-size: 32px;
  font-weight: 700;
  color: #0a0f1c;
  margin-bottom: 10px;
}

/* SUBTITLE */
.ctf-subtitle {
  color: #6b7280;
  font-size: 16px;
  margin-bottom: 40px;
}

/* FORM */
.ctf-form {
  text-align: left;
}

/* FIELD */
.ctf-field {
  margin-bottom: 25px;
  position: relative;
}

.ctf-field label {
  display: block;
  font-size: 14px;
  color: #0a0f1c;
  margin-bottom: 5px;
}

/* OPTIONAL LABEL */
.ctf-optional {
  color: #2563eb;
}

/* INPUT & TEXTAREA */
.ctf-field input,
.ctf-field textarea {
  width: 100%;
  border: none;
  border-bottom: 2px solid #d1d5db;
  padding: 10px 5px;
  font-size: 15px;
  background: transparent;
  outline: none;
  transition: border-color 0.3s;
}

.ctf-field textarea {
  border: 2px solid #3b82f6;
  border-radius: 4px;
  resize: vertical;
}

/* FOCUS EFFECT */
.ctf-field input:focus {
  border-bottom: 2px solid #3b82f6;
}

/* HINT TEXT */
.ctf-hint {
  font-size: 12px;
  color: #6b7280;
  position: absolute;
  right: 0;
  top: 0;
}

/* PRIVACY */
.ctf-privacy {
  font-size: 13px;
  color: #4b5563;
  text-align: center;
  margin: 30px 0;
}

.ctf-privacy a {
  color: #2563eb;
  text-decoration: none;
}

.ctf-privacy a:hover {
  text-decoration: underline;
}

/* BUTTON */
.ctf-button {
  display: block;
  margin: 0 auto;
  padding: 12px 35px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  background: linear-gradient(90deg, #38bdf8, #9333ea);
  transition: 0.3s ease;
}

.ctf-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .ctf-title {
    font-size: 26px;
  }

  .ctf-section {
    padding: 60px 15px;
  }
}




.section-sports{
  position: relative;
  background-color: #fff;
  padding-top:4vh;
  padding-bottom:4vh;
}
.rotw-heading {
  font-size: 3rem;
  font-weight: 700;
  color: #0a0f1c;
  font-family: Arial, sans-serif;
}

.rotw-wrapper {
  display: inline-block;
  position: relative;
  height: 1.2em;
  overflow: hidden;
  vertical-align: bottom;
  min-width: 140px; /* verhindert Springen */
}

.rotw-word {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.4s ease, transform 0.4s ease;
  white-space: nowrap;
}

/* sichtbar */
.rotw-active {
  opacity: 1;
  transform: translateY(0);
}

/* Farben */
.rotw-word:nth-child(1) { color: #ef4444; }
.rotw-word:nth-child(2) { color: #3b82f6; }
.rotw-word:nth-child(3) { color: #10b981; }
.rotw-word:nth-child(4) { color: #f59e0b; }
.rotw-word:nth-child(5) { color: #9d4edd; }
.rotw-word:nth-child(6) { color: #3b82f6; }
.rotw-word:nth-child(7) { color: #ffb703; }

@media (max-width: 600px) {
  .rotw-heading {
    font-size: 2rem;
  }
}


/* Zentrierung */
.rotw-heading {
  text-align: center;
}

/* obere Zeile */
.rotw-line {
  display: block;
  margin-bottom: 10px;
}

/* untere Zeile (rotierende Wörter) */
.rotw-wrapper-block {
  display: block;
  margin: 0 auto;
}

/* gesamte Überschrift */
.rotw-heading {
  text-align: center;
}

/* obere Zeile */
.rotw-line {
  display: block;
  margin-bottom: 10px;
}

/* Wrapper */
.rotw-wrapper {
  display: block;
  position: relative;
  height: 1.2em;
  overflow: hidden;
}

/* Wörter */
.rotw-word {
  position: absolute;
  left: 50%;               /* wichtig */
  transform: translateX(-50%) translateY(100%); /* zentriert + unten */
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  white-space: nowrap;
}

/* aktives Wort */
.rotw-active {
  opacity: 1;
  transform: translateX(-50%) translateY(0); /* mittig */
}













/* Wrapper */
.rw-section {
  background: #f5f7fa;
  padding: 80px 20px;
  font-family: Arial, sans-serif;
}

.rw-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Quote */
.rw-quote {
  text-align: center;
  margin-bottom: 60px;
}

.rw-quote-icon {
  position: relative;
  width: 50px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.rw-quote-text {
  font-size: 20px;
  font-weight: 500;
  color: #1a1a1a;
  max-width: 700px;
  margin: 10px auto 0;
}

/* Cards Layout */
.rw-cards {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Card */
.rw-card {
  background: #fff;
  border: 2px solid #2b7cff;
  border-radius: 10px;
  padding: 25px;
  width: 100%;
  max-width: 350px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.rw-card:hover {
  transform: translateY(-5px);
}

.rw-card-title {
  font-size: 1.5rem;
  color: #2b7cff;
  margin-bottom: 10px;
}

.rw-card-sub {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #555;
}

/* List */
.rw-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rw-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 1rem;
}

/* Check Icon */
.rw-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #22c55e;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 900px) {
  .rw-cards {
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .rw-quote-text {
    font-size: 18px;
  }

  .rw-card {
    padding: 20px;
  }
}












/* Footer Wrapper */
.rwf-footer {
  background: #f5f7fa;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

/* Container */
.rwf-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Divider Line */
.rwf-divider {
  height: 1px;
  background: #dcdcdc;
  margin-bottom: 25px;
}

/* Content */
.rwf-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Brand */
.rwf-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rwf-icon {
  font-size: 20px;
}

.rwf-title {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
}

/* Links */
.rwf-links {
  font-size: 14px;
  color: #666;
}

.rwf-link {
  color: #666;
  text-decoration: none;
  transition: color 0.2s ease;
}

.rwf-link:hover {
  color: #2b7cff;
}

.rwf-separator {
  margin: 0 8px;
  color: #aaa;
}

/* Responsive */
@media (max-width: 500px) {
  .rwf-title {
    font-size: 18px;
  }

  .rwf-links {
    font-size: 13px;
  }
}