@import url("https://fonts.googleapis.com/css2?family=Electrolize&display=swap");

html {
  scroll-behavior: smooth;
  scroll-snap-type: start;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: "Electrolize", sans-serif;
  background-color: #000000;
}

:root {
  --basicblue: #20212400;
  --activeblue: #0707073b;
  --shadow-top: #ae093078;
  --textColor: #ae0930;
  --hoverColorWhite: #ffffff;
}

@font-face {
  /*häxeschrift*/
  font-family: "Valium-0WZv";
  src: url("./assets/Fonts/valium-font/Valium-0WZv.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

body {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  margin: 0;
  background-color: #0b0b0d00;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: none; /* Firefox */
  scrollbar-color: transparent transparent; /* Firefox */

  /* Webkit-basierte Browser (Chrome, Safari) */
  overflow: scroll;
  scrollbar-width: none;
  scrollbar-color: transparent transparent;
}

/* Stil für den transparenten Scrollbalken */
::-webkit-scrollbar {
  width: 0px; /* Breite des Scrollbalkens */
}

::-webkit-scrollbar-thumb {
  background-color: transparent; /* Farbe des Scrollbalken-Griffs */
}

.distancer {
  height: 5vh;
  background-color: #101011;
  display: flex;
  justify-content: flex-end;
  transition: height 0.5s ease;
}

.headerContainer {
  width: 100%;
  height: 62px;
  background-color: #000000;
  position: fixed;
  display: flex;
  border-top: solid 1px #aa092f;
  border-bottom: solid 1px #aa092f;
  z-index: 999;
  margin-top: 5vh;
}

.headerContainer.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20; /* Adjust the z-index as needed */
  transition: transform 2s ease-in-out;
}
/*
@media only screen and (max-width: 768px) and (orientation: portrait) {
  .headerContainer {
    top: 0;
    position: fixed;
  }
}*/

.headerBoxLogo {
  width: fit-content;
  display: flex;
  order: 1;
  margin-right: -20px;
}

.logo {
  margin-left: 2.5vw;
  padding: 15px;
  height: 30px;
}

.logo:hover {
  cursor: pointer;
  filter: brightness(1.15);
  transition: color 0.2s ease;
}

.headerName {
  padding: 15px;
  padding-left: 0px;
  max-width: 240px;
  max-height: 30px;
}

@media screen and (max-width: 375px) {
  .headerName {
    padding: 20px;
    padding-left: 0px;
  }
}

.navBar {
  width: 0%;
  height: 100%;
  display: flex;
  position: relative;
  z-index: 999;
  order: 3;
}

.socialBox {
  height: 45px;
  display: flex;
  justify-content: flex-start;
  padding: 17px;
  padding-left: 0;
  gap: 15px;
  order: 2;
  flex-grow: 1;
  margin-left: 50px;
}

.socialBorder {
  display: flex;
  height: 28px;
  width: 28px;
  border: solid 0.2px #aa092f;
  border-radius: 50%;
  margin-top: 0px;
}

.socialBorder:hover {
  cursor: pointer;
  filter: brightness(1.15);
  transition: color 0.2s ease;
}

.social {
  height: 20px;
  width: 20px;
  padding: 2px;
}

.social:hover {
  cursor: pointer;
  filter: brightness(1.15);
  transition: color 0.2s ease;
}

.navLinkBox {
  width: auto;
  margin-right: 1vw;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 999;
  order: 3;
}

.navItem {
  font-size: clamp(2vh, 2vw, 2vh);
  display: flex;
  color: #979797;
  margin: auto;
  margin-right: 1.5vw;
  margin-left: 0;
  padding-right: 15px;
  text-decoration: none;
  background-size: 100% 8%;
  background-repeat: no-repeat;
  background-position: 0% 110%;
}

.navItem:hover {
  cursor: pointer;
  color: #dadada;
  text-shadow: 0px 0px 5px #000000;
  transition: color 0.2s ease;
  filter: brightness(1.2);
}

.active {
  color: #dadada;
}

.indexItem.active {
  color: #dadada;
  font-size: clamp(1.7vh, 1.7vw, 2.75vh);
  transition: 0.2s ease-in-out;
}


@media screen and (orientation: landscape) and (max-width: 1366px) and (max-height: 912px) {
  .navBar {
    margin-top: 18px; /* Standardwert */
  }

  @media (min-width: 844px) and (max-height: 430px) {
    .navBar {
      margin-top: 22px;
    }
  }

  @media (min-width: 1024px) {
    .navBar {
      margin-top: 39px;
    }
  }

  @media (width: 1024px) and (height: 600px) {
    .navBar {
      margin-top: 31px;
    }
  }

  @media (min-width: 1180px) {
    .navBar {
      margin-top: 41px;
    }
  }

  @media (min-width: 1366px) and (max-width: 1400px) {
    .navBar {
      margin-top: 51px;
    }
  }

  @media (width: 1368px) and (height: 912px) {
    .navBar {
      margin-top: 46px;
    }
  }
}

@media screen and (max-width: 1200px) {
  .headerContainer {
    justify-content: space-between;
  }

  .headerBoxLogo {
    width: auto;
    order: 1;
    margin-right: 0;
  }

  .socialBox {
    order: 3;
    width: 100%;
    position: absolute;
    bottom: 0;
    justify-content: center;
    background-color: #000000;
    margin-left: 0;
    gap: 20px;
  }

  .logo {
    padding: 14px;
  }
  .navBar {
    width: 60px;
    height: 60px;
    background-image: url(assets/img/menu.svg);
    background-size: 60% 60%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    position: fixed;
    right: 0;
    cursor: pointer;
    z-index: 1000;
    margin-left: 0;
    order: 2;
    margin-right: 9px;
  }
  .navItem {
    width: 100%;
    text-align: right;
    padding-right: 3%;
    margin: 5px 0;
  }

  .navLinkBox {
    position: fixed;
    margin-top: 60px;
    width: 100%;
    height: auto;
    display: none;
    right: 0px;
    background-color: #000000;
    border-bottom: solid 1px #aa092f;
    padding-top: 20px;
    padding-bottom: 80px;
    justify-content: center;
    flex-direction: column;
    margin-right: 0;
    order: 2;
  }
  .socialBox::after {
    display: none;
  }

  .navLinkBox, .socialBox {
    transition: opacity 0.3s ease;
    opacity: 0;
  }

  .navLinkBox.visible, .socialBox.visible {
    opacity: 1;
  }
}

.main {
  width: 100%;
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
  scroll-snap-type: both proximity;
  /*margin-bottom: clamp(4vh, 15vh, 30vh);*/
  height: 100vh;
}

.clampedDistancer {
  height: 70vh;
  background-color: transparent;
  z-index: -1;
  position: relative;
}

.distancerGeneral {
  height: 17vh;
  background-color: transparent;
  z-index: -1;
  position: relative;
}

@media screen and (orientation: landscape) and (max-width: 1080px) and (max-height: 912px) {
  .clampedDistancer {
    height: 70vh;
  }
}

@media screen and (orientation: portrait) and (max-width: 680px) and (min-height: 768px) {
  .distancerGeneral {
    height: 12vh;
  }
}

@media screen and (orientation: landscape) and (max-width: 1024px) and (min-height: 680px) and (max-height: 768px) {
  .distancerGeneral {
    height: 12vh;
  }
}

@media screen and (orientation: landscape) and (max-width: 1024px) and (min-height: 540px) and (max-height: 768px) {
  .distancerGeneral {
    height: 10vh;
  }
}

.backgroundImage {
  background-image: linear-gradient(
    to bottom,
    #090909,
    #0f0f0f,
    #131313,
    #171717,
    #1e1c23b0,
    #28202e8f,
    #ff000036
  );
  background-size: cover;
  background-position: center bottom;
  align-items: center;
  height: 108vh;
  scroll-snap-align: start;
  z-index: 0;
  position: fixed;
}

@media screen and (max-width: 600px) {
  /*häxeschrift und normal*/
  .backgroundImage {
    background-position: 51% 100%;
    height: 100vh;
  }
}

.titleText {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
  clip: rect(400px, 400px, 400px, 400px);
  margin-top: 4vh;
}

/* Large desktop screens */
@media only screen and (min-width: 1700px) {
  .titleText {
    margin-top: -1vh;
  }
}

/* Tablets and smaller laptops - Landscape */
@media only screen and (min-width: 1024px) and (max-width: 1368px) and (orientation: landscape) {
  .titleText {
    margin-top: 10vh;
  }
}

/* Tablets - Portrait */
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .title {
    font-size: clamp(7vh, 8.5vw, 9vh);
    line-height: 1.2;
  }

  .ImgText1 {
    font-size: clamp(2vh, 1.8vw, 2.8vh);
    line-height: 1.6;
  }
}

/* Tablets - Landscape */
@media only screen and (min-width: 1024px) and (max-width: 1368px) and (orientation: landscape) {
  .title {
    font-size: clamp(6vh, 7.5vw, 8vh);
    line-height: 1.1;
  }

  .ImgText1 {
    font-size: clamp(1.8vh, 1.6vw, 2.6vh);
    line-height: 1.5;
  }
}

/* Smaller tablets - Portrait */
@media only screen and (max-width: 768px) and (orientation: portrait) {
  .titleText {
    margin-top: 8vh;
  }
}

/* Mobile phones - Portrait */
@media only screen and (max-width: 480px) and (orientation: portrait) {
  .titleText {
    margin-top: 10vh;
  }
}

/* Mobile phones - Landscape */
@media only screen and (max-height: 480px) and (orientation: landscape) {
  .titleText {
    margin-top: 12vh;
  }
}

.backgroundImageB {
  position: fixed;
  background-image: url("assets/img/BackgroundNew/BgDarkWithoutBird.png");
  background-size: cover;
  background-position: center bottom;
  height: 100dvh;
  margin-top: 5vh;
  scroll-snap-align: start;
  z-index: 3;
  width: 100%;
  pointer-events: none;
}

.backgroundImageBird {
  position: fixed;
  background-image: url("assets/img/BackgroundNew/BgbirdMirror.png");
  background-size: cover;
  background-position: center bottom;
  height: 100vh;
  scroll-snap-align: start;
  z-index: 1;
  width: 100%;
  pointer-events: none;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .backgroundImageB {
    background-position: 27% 100%;
  }
}
/*
@media screen and (max-width: 600px) {
  /*häxeschrift und normal*/
/*.backgroundImageB {
    background-position: 28% 100%;
  }
}*/

.containerBox {
  position: relative; /* Positionierung relativ setzen, um darin enthaltene Elemente zu positionieren */
  display: flex;
  /*height: 100%;*/
  width: 100%;
  z-index: 2;
  opacity: 1;
  transform: translateY(25vh);
  transition: opacity 1200ms ease-out, transform 1000ms ease-out;
  will-change: opacity, transform;
}

@media only screen and (max-width: 1368px) and (orientation: portrait) {
  .containerBox {
    flex-direction: column;
    gap: 10px;
  }
}

.containerBox.is-visible {
  opacity: 1;
  transform: none;
}

/*
.containerBox.animate-out {
  opacity: 0;
  transform: translateY(-20vh); /* Animation in umgekehrter Richtung */
/* transition: opacity 1200ms ease-in, transform 1100ms ease-in;
}*/


.menuStyle {
  width: 45%;
  position: fixed;
  top: 38%;
  left: 74.5%;
  z-index: 99;
}

@media screen and (min-width: 1201px) and (max-width: 1367px) and (orientation: landscape) {
  .menuStyle {
    left: 71.5%;
  }
}

@media screen and (max-width: 1200px) and (orientation: landscape) {
  .menuStyle {
    left: 67.2%;
  }
}

@media screen and (max-width: 720px) and (orientation: landscape){
  .menuStyle {
    left: 59.5%;
  }
}

#menu {
  display: none;
  opacity: 0; /* Startet unsichtbar */
  transition: opacity 1s ease-in;
}

#menu.fadingOut {
  transition: opacity 0.3s ease-out; /* Schnelleres Ausblenden */
}

.indexStlye {
  position: relative;/*
  border-left: 1.5px solid #5a0c20;
  border-radius: 15px;*/
  width: 36%;
}

@media only screen and (max-device-width: 1368px) and (orientation: portrait) {
  .indexStlye {
    left: 25%;
  }
}

@media only screen and (max-device-width: 1368px) and (orientation: landscape) {
  .indexStlye {
    width: 50%;
  }
}


@media only screen and (max-device-width: 1024px) and (orientation: landscape) {
  .indexStlye {
    width: 58%;
  }
}

.indexBox {
  display: flex;
  flex-direction: column;
  width: 40%;
  z-index: 3;
  position: relative;
}

.indexItem {
  position: relative;
  width: 100%;
  margin: auto;
  margin-bottom: 15%;
  text-decoration: none;
  font-size: clamp(1.55vh, 1.55vw, 2.5vh);
  color: #979797e1;
  font-weight: 400;
  text-shadow: 0px 0px 0px black, 0px 0px 0px black;
  letter-spacing: 4px;
}

.indexItem::after {
  content: "\2022";
  color: #cacaca;
  text-align: right;
  position: absolute;
  right: -150%; /* Ausrichtung am rechten Rand */
  top: 50%; /* Zentrierung in vertikaler Richtung */
  transform: translateY(-50%); /* Feinjustierung für die vertikale Zentrierung */
  /* Restliche Stile bleiben gleich */
}

.indexItem:hover {
  cursor: pointer;
  color: #dadada;
  text-shadow: 0px 0px 5px #000000;
  transition: color 0.2s ease;
  filter: brightness(1.2);
} 

.TitleBoxLeft {
  position: relative;
  padding-top: 2vh;
  scroll-snap-align: center;
  scroll-snap-type: both proximity;
  width: 58%;
  height: 100%;
  margin-bottom: 10%;
}

.TitleBoxRight {
  position: relative;
  padding-top: 2vh;
  scroll-snap-align: center;
  scroll-snap-type: both proximity;
  width: 58%;
  height: 100%;
}

@media only screen and (max-width: 1368px) and (orientation: portrait) {
  .TitleBoxLeft {
    width: 100%;
  }
  .TitleBoxRight {
    width: 100%;
    /*margin-left: 2%;*/
  }
}

.title {
  font-size: 8.5vw;
  color: #000000;
  color: #575757;
  line-height: 0.6;
  margin: auto;
  padding-top: 16vh;
  margin-bottom: 0;
  text-align: center;
  letter-spacing: -3.5px;
  position: relative;
  transition: opacity 0.5s, font-size 0.5s;
}

.titleTop {
  position: relative;
  font-size: 6.5vw;
  color: #cacacaa3;
  color: #dadadaad;
  text-shadow: -2px -2px 0px #000000, 0px 4px 0px #000000;
  font-weight: 400;
  font-size: 7.5vw;
  text-align: center;
  padding-right: 1%;
  padding-top: 12%;
  z-index: 4;
}

@media screen and (max-width: 1200px) {
  .title {
    line-height: 0.9;
  }
}

@media screen and (max-height: 630px) and (max-width: 1200px) {
  .title {
    line-height: 0.55;
    padding-top: 12vh;
  }
}

@media screen and (max-height: 390px) and (max-width: 844px) {
  .title {
    line-height: 0.55;
    padding-top: 15vh;
  }
}

@media screen and (max-height: 540px) and (max-width: 720px) {
  .title {
    line-height: 0.70;
    padding-top: 16vh;
  }
}

@media screen and (min-height: 1366px) and (min-width: 1024px) {
  .title {
    line-height: 0.8;
    padding-top: 17vh;
  }
}


@media screen and (max-width: 600px) {
  .title {
    line-height: 1.1;
  }
  .titleFont {
    font-size: 13.5vw;
  }
}

@media screen and (max-width: 600px) {
  .titleLanding {
    padding-top: clamp(15vh, 7vh, 3vh);
    font-size: 2.5vw;
  }
}

@media screen and (max-width: 280px) {
  /*häxeschrift und normal*/
  .title {
    line-height: 1.1;
  }
}

@media screen and (max-width: 600px) {
  .padding-left {
    padding-left: 20px;
  }

  .titleTop {
    letter-spacing: 4.5px;
    padding-top: clamp(10.5vh, 6vh, 2.5vh);
  }
}

.fontweight {
  color: #d5d5d5;
  /*font-size: clamp(1.9vh, 1.3vw, 2.5vh);*/
}

.white {
  color: #d5d5d5;
}

.nonBlack {
  font-family: "Electrolize", sans-serif;
  font-size: clamp(4vh, 1vw, 5vh);
  /*color: #000000;
  text-shadow: -1px 1px 0px #000000, -2px 4px 0px #1d090e73,
    0px -1px 2px #aa092f;*/
  font-weight: 400;
  color: #9797979f;
  text-shadow: 0px 0px 0px black, 0px 0px 0px black;
  letter-spacing: 2px;
  text-align: center;
  opacity: 1;
}

@media screen and (max-width: 600px) {
  .nonBlack {
    font-size: clamp(3.5vh, 1vw, 5vh);
  }
}

.blackTitle {
  font-family: "Valium-0WZv";
  font-size: clamp(16vh, 38vw, 34vh);
  letter-spacing: -1.5px;
  text-shadow: 0px -2px 0px #b67f26, 0px 9px 0px #2e1c00;
  opacity: 1;
  padding-left: 0;
  transform: scale(0.5);
  transform-origin: center;
  transition: all 0.02s ease-in-out;
  color: inherit;
}

.blackTitle:hover,
.blackTitle:active {
  font-size: clamp(16vh, 38vw, 34vh);
  color: #000000;
  text-shadow: 0px -2px 0px #aa092f, 0px 9px 0px #1d090e;
  padding-left: 20px;
  letter-spacing: 20.5px;
  transition: all 0.02s ease-in-out;
}

.blackTitleBottom {
  margin-bottom: 3vh;
}

@media only screen and (max-device-width: 932px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  .blackTitleBottom {
    margin-bottom: 2vh;
  }
}

@media only screen and (max-device-height: 667px) and (orientation: portrait) {
  .blackTitleBottom {
    margin-bottom: 0;
  }
}

@media only screen and (min-height: 1366px) and (orientation: portrait) {
  .blackTitleBottom {
    margin-bottom: 0;
  }
}

.ImgText {
  font-size: clamp(1.55vh, 1.55vw, 2.5vh);
  color: #979797e1;
  font-weight: 400;
  text-shadow: 0px 0px 0px black, 0px 0px 0px black;
  align-self: start;
  margin: auto;
  margin-top: 5vh;
  margin-bottom: 7vh;
  text-decoration: none;
  width: fit-content;
  /*padding-left: 2%;
  padding-right: 2%;*/
  letter-spacing: 9px;
  text-align: center;
}

.ImgText1 {
  font-size: clamp(1.55vh, 1.55vw, 2.5vh);
  color: #979797e1;
  font-weight: 400;
  text-shadow: 0px 0px 0px black, 0px 0px 0px black;
  align-self: center;
  margin-top: 5vh;
  margin-bottom: 7vh;
  text-decoration: none;
  letter-spacing: 9px;
  text-align: center;
}

@media only screen and (max-device-width: 932px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  .ImgText {
    margin-bottom: 5vh;
  }
}

@media only screen and (max-device-width: 932px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .ImgText {
    margin-top: 0;
  }
}

@media screen and (max-width: 600px) {
  .ImgText1 {
    margin-top: 4vh;
    margin-bottom: 8vh;
  }
}

@media screen and (max-width: 600px) {
  .ImgTextLanding {
    font-size: clamp(2.55vh, 1.55vw, 2.5vh);
  }
}

@media screen and (max-width: 280px) {
  .ImgTextLanding {
    font-size: clamp(2vh, 1.55vw, 2.5vh);
  }
}

.margin-top {
  margin-top: 3.7vh;
}

.redDark {
  background: #1d090e73;
}

.marginTop {
  margin-top: 0vh;
}

.marginBottom {
  margin-bottom: 0vh;
}

.marginBottom2 {
  margin-bottom: 1%;
}

@media screen and (max-width: 1200px) {
  /*margin-top*/
  .marginBottom {
    margin-top: 2vh;
  }
}

@media screen and (max-width: 768px) {
  /*margin-top*/
  .marginBottom {
    margin-top: 1vh;
    font-size: clamp(2vh, 1.55vw, 2.5vh);
  }
}

.buttonStyle {
  cursor: pointer;
  display: inline-block;
  min-width: 140px;
  border-radius: 27px;
  font-size: clamp(3vh, 1.5vw, 3vh);
  box-shadow: 0px 8px 6px -4px #333333 inset, 0px -2px 10px -1px #050505 inset,
    0px 2px 6px 0px #000000;
  text-align: center;
  color: #cacaca;
  text-shadow: -1px 1px 0px #000000, 1px -1px 0px #000000;
  transition: all 0.2s ease;
  margin: auto;
  margin-top: 0;
  margin-bottom: 5px;
  text-decoration: none;
  padding-left: clamp(1.75vh, 1vw, 2vh);
  padding-right: clamp(1.75vh, 1vw, 2vh);
  padding-top: clamp(1vh, 1.2vw, 1.3vh);
  padding-bottom: clamp(0.8vh, 1.2vw, 1.1vh);
  z-index: 999;
  line-height: 1.25;
}

.buttonStyle:hover {
  cursor: pointer;
  color: #dadada;
  text-shadow: 0px 0px 5px #000000;
  transition: color 0.2s ease;
  filter: brightness(1.2);
}

.buttonStyle:active {
  cursor: pointer;
  align-items: center;
  box-shadow: 3px -3px 4px #272727, -3px 3px 4px #000000,
    inset 3px -3px 5px #272727, inset -3px 3px 5px #000000;
  font-size: clamp(2.65vh, 1.4vw, 2.9vh);
  /*line-height: 48px;*/
}

@media screen and (max-width: 768px) {
  /*margin-top*/
  .buttonStyle {
    padding: 1.5vh;
  }
}

/*.noise {
  opacity: 0.02;
  position: absolute;
  background-size: cover;
  background-position: 0% 100%;
  height: 100%;
  width: 100%;
  z-index: 0;
}*/

.cloud {
  opacity: 0.015;
  position: absolute;
  background-size: cover;
  background-position: 0% 100%;
  height: 100%;
  width: 100%;
  z-index: 0;
}

.textContainer {
  display: flex;
  flex-direction: column;
  margin: auto;
  height: fit-content;
  width: 100%;
  text-align: center;
  align-items: center;
  scroll-snap-align: center;
  scroll-margin-top: clamp(15vh, 25vh, 50vh);
  scroll-snap-type: both proximity;
  z-index: 3;
  position: relative;
}

.text {
  font-size: clamp(2vh, 1.25vw, 2vh);
  color: #979797;
  text-align: left;
  max-width: 730px;
  width: 80%;
  line-height: 30px;
  border-radius: 30px;
  padding: 3.5%;
  letter-spacing: 0.5px;
  word-wrap: break-word;
  background: #0000003b;
  /* box-shadow: 0px 1px 0px #cacaca, 0px -1px 0px #cacaca;*/
}

@media only screen and (max-device-width: 768px) and (orientation: landscape) {
  .text {
    font-size: clamp(3.5vh, 1.5vw, 2vh);
    line-height: 20px;
    border-radius: 15px;
  }
}

@media only screen and (max-device-width: 932px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  .text {
    font-size: clamp(2.9vh, 1.25vw, 2vh);
    border-radius: 15px;
  }
}

@media only screen and (max-device-width: 768px) and (orientation: portrait) {
  .text {
    width: 90vw;
    margin-right: 0;
    border-radius: 15px;
  }
}

.stiffStyle {
  /*height: 100%;*/
  width: 42%;
  position: relative;
  margin-top: 15%;
}

.stiffStyle1 {
  /*height: 100%;*/
  width: 42%;
  position: relative;
  margin-top: 15%;
}

.stiffStyle3 {
  height: 20%;
  width: 100%;
  position: absolute;
}

@media only screen and (max-device-width: 1368px) and (orientation: portrait) {
  .stiffStyle {
    width: 100%;
  }

  .stiffStyle1 {
    order: 1;
    width: 100%;
  }

  .stiffStyle3 {
    height: 35%;
  }

  .menuStyle {
    order: 1;
    width: 100%;
    margin-top: 10vh;
  }

  .TitleBoxRight {
    order: 2;
  }
}

.buttonStyle2 {
  cursor: pointer;
  border-radius: 27px;
  min-width: 140px;
  min-height: 28px;
  font-size: clamp(2.8vh, 1.2vw, 2.7vh);
  box-shadow: 0px 8px 6px -4px #333333 inset, 0px -2px 10px -1px #050505 inset,
    0px 2px 3px 0px #000000;
  text-align: center;
  color: #cacaca;
  text-shadow: -2px 2px 2px #000000;
  transition: all 0.2s ease;
  margin: auto;
  text-decoration: none;
  padding-left: clamp(1.75vh, 1vw, 2vh);
  padding-right: clamp(1.75vh, 1vw, 2vh);
  padding-top: clamp(1vh, 1.2vw, 1.3vh);
  padding-bottom: clamp(0.8vh, 1vw, 1.3vh);
  background: #141414c4;
  line-height: clamp(10px, 31px, 40px);
  position: absolute; /* Positionierung des Elements */
  left: 50%; /* 50% von links */
  transform: translate(-50%, -0%); /* Zentrierung des Elements */

}

.buttonStyle2:hover {
  cursor: pointer;
  color: #000000;
  text-shadow: 1px 1px 0px #bd1139;
  color: #dadada;
  text-shadow: -2px 2px 2px #000000;
  transition: color 0.2s ease;
  filter: brightness(1.2);
}

.buttonStyle2:active {
  cursor: pointer;
  align-items: center;
  box-shadow: 3px -3px 4px #272727, -3px 3px 4px #000000,
    inset 3px -3px 5px #272727, inset -3px 3px 5px #000000;
  font-size: clamp(2.9vh, 1.1vw, 2.6vh);
}

@media screen and (orientation: portrait) and (max-width: 680px) and (min-height: 768px) {
  .buttonStyle2 {
    margin-top: 2%;
  }
}

.buttonStyle3 {
  cursor: pointer;
  border-radius: 27px;
  font-size: clamp(2.8vh, 1.2vw, 2.7vh);
  box-shadow: 0px 8px 6px -4px #333333 inset, 0px -2px 10px -1px #050505 inset,
    0px 2px 3px 0px #000000;
  text-align: center;
  color: #cacaca;
  text-shadow: -2px 2px 2px #000000;
  transition: all 0.2s ease;
  margin: auto;
  text-decoration: none;
  padding-left: clamp(1.75vh, 1vw, 2vh);
  padding-right: clamp(1.75vh, 1vw, 2vh);
  padding-top: clamp(1vh, 1.2vw, 1.3vh);
  padding-bottom: clamp(0.8vh, 1vw, 1.1vh);
  background: #141414c4;
  line-height: clamp(10px, 31px, 40px);
  position: absolute; /* Positionierung des Elements */
  left: 50%; /* 50% von links */
  transform: translate(-50%, -0%); /* Zentrierung des Elements */
  line-height: 1.1;
  z-index: 999;
}

.buttonStyle3:hover {
  cursor: pointer;
  color: #000000;
  text-shadow: 1px 1px 0px #bd1139;
  color: #dadada;
  text-shadow: -2px 2px 2px #000000;
  transition: color 0.2s ease;
  filter: brightness(1.2);
}

.buttonStyle3:active {
  cursor: pointer;
  align-items: center;
  box-shadow: 3px -3px 4px #272727, -3px 3px 4px #000000,
    inset 3px -3px 5px #272727, inset -3px 3px 5px #000000;
  font-size: clamp(2.9vh, 1.1vw, 2.6vh);
}

.arrow {
  width: 25px;
  height: 25px;
  margin-top: 5px;
}

.ContainerFooter {
  width: 100%;
  position: fixed; /* Ändern Sie "sticky" zu "fixed" */
  bottom: 0; /* Den Footer am unteren Bildschirmrand positionieren */
  background-color: transparent; /* Hinzufügen einer Hintergrundfarbe für bessere Sichtbarkeit */
  z-index: 3;
}

.footerText {
  font-size: 12px;
  color: #979797;
  text-shadow: 0px 0px 5px #000000;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.footerTextLink {
  color: #979797;
  text-shadow: 0px 0px 5px #000000;
  text-decoration: underline;
}
.navBar.active {
  background-image: url(assets/img/close.svg); /* Add a close icon image */
}

/* Add transition for smooth open/close animation */
.navLinkBox {
  transition: display 0.3s ease;
}

.socialBox {
  transition: display 0.3s ease;
}

/* Ensure mobile menu items are properly spaced */
@media screen and (max-width: 1200px) {
  .navItem {
    padding: 15px 3%;
    margin: 0px 10px;
  }
  
  .navLinkBox {
    padding-top: 20px;
  }
}
