@import url(/werte/css/styles-all.css);
/* FontAwesome */

farben {
  color: #b30000;
  /* Grundfarbe rot */
  color: #ef8376bf;
  /* Hover rot */
  color: #006600;
  /* Cookie und o.K. */
  color: #ec6258;
  /* SVG rot */
}

/* open-sans-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../webfonts/open-sans-v40-latin-regular.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* Grundlegend */
:root {
  --color-bg: #0d0d0d;
  --color-text: #f0f0f0;
  --color-primary: #ffffff;
  --color-secondary: #b30000;
  --color-accent: #ffffff;
  --color-button: #080808;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "Open Sans";
  font-size: 16px;
  color: var(--color-text);
  background-image: linear-gradient(to right, #b30000, black);
}

body {
  line-height: 1.6;
}

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

/* Header */
.site-header {
  padding: 1rem 0;
  position: relative;
  top: 0;
  z-index: 1000;
}

.logo {
  color: var(--color-accent);
  font-size: 1.5rem;
  text-decoration: none;
}

/* Hero */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1rem;
}

.full-hero {
  height: 100vh;
  background-image: url("/../img/zielspurt_leipzig_svg_1200261.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 5rem;
  margin-right: 5rem;
}

.hero h1 {
  font-size: 12vw;
  margin-bottom: 1rem;
  text-shadow: 3px 3px 4px black;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.hero-img {
  width: 300px;
  margin-top: 2rem;
  padding-top: 60px;
}
/* Accordion */
.accordion-section {
  padding: 4rem 1rem;
}

.accordion-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.accordion-item {
  margin-bottom: 1rem;
}

.accordion-header {
  background: linear-gradient(to top, black, #b30000);
  color: var(--color-text);
  padding: 1rem;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  border-radius: 0.5rem;
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background: linear-gradient(to top, #b30000, black);
}

.accordion-content {
  display: none;
  padding: 1rem;
  background-color: #262626;
  border-radius: 0.5rem 0.5rem 0.5rem 0.5rem;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 2rem 1rem;
  background-color: transparent;
}

/* Responsive */
@media (max-width: 768px) {
  .main-nav ul {
    display: none;
    flex-direction: column;
    background-color: var(--color-bg);
    position: absolute;
    top: 70px;
    right: 20px;
    border-radius: 0.5rem;
    width: 200px;
  }

  .main-nav ul.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .card-grid {
    flex-direction: column;
  }

  .hero {
    padding: 4rem 1rem;
  }

  .full-hero {
    height: auto;
  }

  .hero-img {
    width: 200px;
    padding-bottom: 10px;
  }
}
.btn-primary {
  display: inline-block;
  padding: 1.75rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #b30000, black);
  border: none;
  border-radius: 0.5rem;
  /* Pillenform */
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  min-width: 234px;
}

/* Hover-Effekt */
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  background: linear-gradient(90deg, black, #b30000);
}

/* Focus für Accessibility */
.btn-primary:focus {
  outline: 2px solid black;
  outline-offset: 4px;
}

/* Dark Mode Support */
@media (prefers-color-scheme: light) {
  .btn-primary {
    color: #fff;
    border: #080808;
    background: linear-gradient(90deg, #b30000, black);
  }

  .btn-primary:hover {
    background: linear-gradient(90deg, black, #b30000);
  }
}

/* Responsive Anpassung */
@media (max-width: 600px) {
  .btn-primary {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}
/* Container der Section */
.card-section {
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding: 4rem;
  background-image: linear-gradient(to right, #b30000, black);
}

/* Die Card selbst */
.card {
  display: flex;
  flex-direction: column;
  background-color: #111;
  border-radius: 0.5rem;
  overflow: hidden;
  text-decoration: none;
  color: #000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  height: auto;
}

/* Hover-Effekte */
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

/* Das Bild */
.card-image {
  width: 100%;
  height: auto;
  display: block;
  background-color: #000;
  padding: 1rem;
  border: none;
}

/* Inhalt innerhalb der Card */
.card-content {
  padding: 1.5rem;
  background-color: #000;
  color: #fff;
  text-decoration: none;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: #fff;
}
.card-text {
  font-size: 1rem;
  color: #fff;
}
.card-text:hover {
  background-color: #262626;
}
/* Dark / Light Mode Unterstützung */
@media (prefers-color-scheme: light) {
  .card-section {
    background-color: #000;
    padding: 1.5rem;
    border-radius: 2rem;
  }

  .card {
    background-color: #fff;
    color: #000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }
}
.card-title {
  color: #fff;
}

.card-text {
  color: #fff;
}
/* Responsives Verhalten */
@media (max-width: 768px) {
  .card {
    max-width: 100%;
  }
}
/* Zurück Button */
.aaa:link {
  display: inline-block;
  position: fixed;
  height: 48px;
  width: 48px;
  bottom: 20px;
  right: 10px;
  font-size: 48px;
  text-decoration: none;
  opacity: 0.5;
  color: gray;
}

.aaa:hover {
  opacity: 1;
}
.header-left {
  display: flex;
  justify-content: flex-start;
}
.header-right {
  display: flex;
  justify-content: flex-end;
}
ol,
ul {
  list-style: none;
}
/* Barrierefreie Tabelle */
table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: left;
}

th {
  background-color: #f2f2f2;
  color: #111;
  width: 33.333%;
}

@media screen and (max-width: 600px) {
  table,
  thead,
  tbody,
  th,
  td,
  tr {
    display: block;
  }

  thead {
    display: none;
  }

  tr {
    margin-bottom: 1rem;
    border-bottom: 2px solid #ddd;
  }

  td {
    position: relative;
    padding-left: 20%;
  }

  td::before {
    content: attr(data-label);
    position: absolute;
    left: 10px;
    top: 8px;
    font-weight: bold;
    white-space: nowrap;
  }
}
.btn-primary2 {
  display: inline-block;
  padding: 1.75rem 2.5rem;
  font-size: 2rem;
  font-weight: 600;
  color: #000;
  background: linear-gradient(90deg, #fff, black);
  border: none;
  border-radius: 0.5rem;
  /* Pillenform */
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  min-width: 234px;
}

/* Hover-Effekt */
.btn-primary2:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  background: linear-gradient(90deg, black, #fff);
}

/* Focus für Accessibility */
.btn-primary2:focus {
  outline: 2px solid black;
  outline-offset: 4px;
}

/* Dark Mode Support */
@media (prefers-color-scheme: light) {
  .btn-primary2 {
    color: #000;
    border: #080808;
    background: linear-gradient(90deg, #fff, black);
  }

  .btn-primary2:hover {
    background: linear-gradient(90deg, black, #fff);
  }
}
/* Responsive Anpassung */
@media (max-width: 600px) {
  .btn-primary2 {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  .h1 {
    font-size: 5vw;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 4px black;
  }
}
.gro {
  font-size: 1.25rem;
}
.gro2 {
  font-size: 2rem;
}
/* Zurück Button */
.aaa2:link {
  display: inline-block;
  position: fixed;
  height: 56px;
  width: 56px;
  bottom: 20px;
  right: 20px;
  font-size: 26px;
  text-decoration: none;
  color: #fff;
  background-color: #e96e658b;
  text-align: center;
  border-radius: 50%;
  padding-top: 12px;
}

.aaa2:hover {
  background-color: #ec6258;
  color: transparent !important;
}
.icon {
  padding-left: 10px;
  padding-right: 10px;
}
.icon-2 {
  padding-left: 10px;
  padding-right: 10px;
  background-color: transparent;
}
.zen {
  text-align: center;
}
.container-header {
  display: flex;
  align-items: center;
  justify-content: center;
}
.item {
  padding: 10px;
}
input::placeholder {
  color: black;
  opacity: 0.5;
}
.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;
}
@media screen and (max-width: 6000000px) {
  .cc2 {
    display: none;
  }
}
/* Zurück Button */
.aaa2:link {
  display: inline-block;
  position: fixed;
  height: 56px;
  width: 56px;
  bottom: 20px;
  right: 20px;
  font-size: 26px;
  text-decoration: none;
  color: #fff;
  background-color: #e96e658b;
  text-align: center;
  border-radius: 50%;
  padding-top: 12px;
}

.aaa2:hover {
  background-color: #ec6258;
  color: transparent !important;
}
