@charset "UTF-8";

:root {
  --max-page-width: 1400px; /* Definiere eine CSS-Variable für die maximale Seitenbreite */
}

body {
  background: linear-gradient(
    to right, 
    #731417 0%,
    grey 45%,
    grey 55%,
    #004aad 100%
  );
  padding-top: 400px; /* Erh�he den Abstand f�r die Logos */
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  font-family: 'Open Sans', sans-serif;
  margin: 0; /* Ensure no margin is applied */
  padding: 0; /* Ensure no padding is applied */
  overflow-x: hidden; /* Prevent horizontal scrolling */
  position: relative; /* Set position to relative */
}


/* Scrollbar ausblenden */
body::-webkit-scrollbar {
  display: none;
}


.main-content {
  display: flex; 
  width: 90%;  
  margin: 40px auto; 
  flex-wrap: wrap; /* Allow wrapping for smaller screens */
  align-items: stretch;
  max-width: 1400px;
}

.left-column, .right-column {
  height: 100%; /* Höhe der Spalten auf 100% setzen */
  display: flex;
  flex-direction: column;
}

.left-column {
  width: 60%; 
  display: flex;
  flex-direction: column;
  padding: 20px;
  box-sizing: border-box; /* Include padding in width calculation */
 
}

.right-column {
  width: 40%; 
  display: flex;
  flex-direction: column;
  padding: 20px;
  box-sizing: border-box; /* Include padding in width calculation */
  
}




.kurs-kompass {
  color: white;
  box-sizing: border-box; /* Include padding in width calculation */
  display: flex;
  flex-direction: column;
  justify-content: flex-end; 
  flex: 1; /* Nimmt den verfügbaren Platz ein */
}

.kurs-kompass h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 90px;
  font-weight: bold; 
  margin-top: 0; 
  margin-bottom: 10px; 
  line-height: 1; 
}

.kurs-kompass p {
  line-height: 1.5; 
  font-size: 25px;
}

.kurs-kompass span.hervorheben {
  font-weight: bold; 
}

.text-container {
  width: 100%;
}

.text-container-columns {
  width: 100%;
  display: flex;
  align-items: center; /* Zentriere die Elemente vertikal */
  flex-direction: column; /* �ndere die Richtung des Flexbox-Layouts auf Spalten */
}

.split-container {
  display: flex;
  width: 100%;
  align-items: center;
}

.split-container-2 {
  display: flex;
  width: 100%;
  align-items: center;
}

.image-column {
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-column-2 {
  width: 70%;
  display: flex;
  flex-direction: column;
}

.image-column-2 p {
  margin-bottom: 0; /* Zusätzlichen Abstand am unteren Rand entfernen */
}

.image-column-3 {
  width:30%;
  display: flex;
  flex-direction: column;
}

.image-column-3 img {
  width: 150px; /* Passe die Breite des Bildes an */
  height: auto; /* Behalte das Seitenverh�ltnis bei */
}



.image-column-2 img {
  margin-top: 50px;
  width: 150px; /* Passe die Breite des Bildes an */
  height: auto; /* Behalte das Seitenverh�ltnis bei */
  animation: arrow-bounce 2s infinite alternate;
  animation: scale 2s infinite; /* Wende die Bounce-Animation an */
}


.text-column {
  width: 70%; /* �ndere die Breite des Text-Containers auf 70% */
  display: flex;
  justify-content: center; /* Zentriere die Elemente horizontal */
  align-items: center; /* Zentriere die Elemente vertikal */
}

.text-column-2 {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.text-column-2 .pfeil-image {
  width: 50px; /* Adjust the arrow size */
  height: auto;
  margin-bottom: 10px; /* Space between arrow and text */

}

.text-column-2 p {
  text-align: center;
  margin: 0;
  line-height: 1.5;
}

.image-column img {
  width: 100px; /* Passe die Breite des Bildes an */
  height: auto; /* Behalte das Seitenverh�ltnis bei */
}

.image-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px; /* F�ge den gew�nschten Abstand �ber dem Bild hinzu */
}

.image-container img {
  width: auto;
  height: 300px; /* Passe die H�he des Bildes an */
  margin-top: 20px; /* F�ge den gew�nschten Abstand unter dem Bild hinzu */
}

.brief-image {
  width: 100px; /* Passe die Breite des Bildes an */
  height: auto; /* Behalte das Seitenverh�ltnis bei */
  margin-right: 5px; /* F�ge den gew�nschten Abstand zwischen dem Bild und dem Text hinzu */
}

.button-wrapper {
  display: flex;
  flex-direction: column; /* Stapele die Elemente vertikal */
  align-items: center; /* Zentriere die Elemente */
  text-align: center;
  flex: 1; /* Gleichmäßige Verteilung */
  margin: 0 10px; /* Abstand zwischen den Button-Wrappers */
}




.button-container {
  display: flex; 
  justify-content: space-between; 
  margin-top: 20px; 
  flex-wrap: wrap; /* Allow wrapping for buttons */
  flex-direction: row; /* Stapele die Elemente vertikal */
  align-items: flex-start; /* Zentriere die Elemente */
}

.kurs-kompass .button-wrapper .button-description {
  font-size: 18px; /* Schriftgröße anpassen */
  margin-top: 2px;
  text-align: center; /* Text zentrieren */
  font-weight: bold;
  width: 300px;
}


.button {
  display: flex; 
  justify-content: center; 
  align-items: center; 
  font-weight: bold; 
  width: 300px; 
  height: 50px; 
  border-radius: 50px; 
  text-decoration: none; 
  font-size: 24px;
  cursor: pointer;
  margin: 10px 0px;
  padding: 5px;
  background-position: center;
  background-size: cover;
  transition: background-color 0.3s ease;
  box-sizing: border-box; /* Include padding in width calculation */
}

.button .button-text {
  display: block; 
}

.btn-red {
  background-color: #b91820; 
  color: white; 
}

.btn-red:hover {
  background-image: linear-gradient(to right, #ff0008, #ff0008 50%, #ff0008
   75%, #ff0008 100%); 
   transform: scale(1.05);
}

.btn-blue {
  background-color: #007bff; 
  color: white; 
}

.btn-blue:hover {
  background-color: #00bfff; 
  transform: scale(1.05);
}

footer {
  width: 100%;
  text-align: right;
  padding: 20px 20px 20px 0; /* Innenabstand oben, unten, links, rechts */
  position: fixed; /* Positionierung auf fixed ändern */
  bottom: 0; /* Am unteren Bildschirmrand positionieren */
  z-index: 999; /* Z-Index erhöhen, um über anderen Inhalten zu liegen */
}

.footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu ul li {
  display: inline;
  margin-right: 20px;
}

.footer-menu ul li:last-child {
  margin-right: 0;
}

.footer-menu ul li a {
  color: white;
  text-decoration: none;
  font-family: 'Open Sans', sans-serif; /* Open Sans als Schriftart verwenden */
  transition: font-size 0.3s; /* Übergangseffekt für die Schriftgröße hinzufügen */
}

.footer-menu ul li a:hover {
  font-size: 1.2em; /* Schriftgröße beim Hover-Effekt vergrößern */
}

.logo-container {
  position: absolute;
  top: 0;
  padding: 20px;
  display: flex;
  margin-bottom: 10px;
  align-items: center;
  width: calc(100% - 40px); /* Verwende 100% der Seitenbreite und subtrahiere das Padding */
  z-index: 1000;
  left: 0; /
}

.logo-container img {
  width: auto;
  height: 50px; 
  margin-right: 40px; /* Abstand zwischen den Logos */
  margin-left: 20px;
}

.header-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  position: relative; /* �ndere die Positionierung auf relative */
  z-index: 1000;
  margin-bottom: 20px;
}

body.scrolled .header-content {
  position: relative; /* Setze die Positionierung zur�ck auf relative */
}

.blob-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blob-container img {
  width: 80%;
  height: auto;
}

/* Neue Klasse für den Link */
.kurs-link {
  color: white; /* Farbe des Links */
  text-decoration: none; /* Keine Unterstreichung */
  transition: transform 0.3s ease; /* Übergangseffekt für die Vergrößerung */
  display: inline-block; /* Ändere die Anzeige auf inline-block */
}
/* Hover-Effekt für den Link */
.kurs-link:hover {
  transform: scale(1.1); /* Vergrößern beim Hover */
}

@media (min-width: 1100px) {
  .split-container-2 {
   margin-top: 145px;
  }

}



@media (max-width: 1100px) {
  .kurs-kompass h2 {
    font-size: 60px;
  }
  .image-column-3 img {
    width: 100px; /* Passe die Breite des Bildes an */
  }
  
}




@media (max-width: 768px) {
  .main-content {
    flex-direction: column; 
  }

  .kurs-kompass p {
    line-height: 1.5; 
    font-size: 20px;
  }

  .left-column, .right-column {
    width: 100%; 
  }

  .blob-container {
    justify-content: center;
  }

  .kurs-kompass h2 {
    font-size: 50px;
  }

  .image-column-3 img {
    width: 80px; /* Passe die Breite des Bildes an */
  }

  footer {
    position: static; /* Positionierung auf static ändern */
    border-top: none; /* Rand entfernen */
    padding: 20px 0; /* Innerer Abstand oben, unten */
  }
  
}

/* montserrat-regular - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/montserrat-v26-latin_latin-ext-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* 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('fonts/open-sans-v40-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


@keyframes arrow-bounce {
  0% {
    transform: translateY(0); /* Startposition */
  }
  100% {
    transform: translateY(-5px); /* Endposition */
  }
}

@keyframes scale {
  0%, 100% {
    transform:  scale(1); /* Keine Verschiebung und normale Größe */
  }
  50% {
    transform:  scale(1.2); /* Verschiebe den Pfeil um 20px nach oben und vergrößere ihn um 20% */
  }
}