*{
    font-family: 'Montserrat';
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    position: relative;
    /* cursor: pointer; */
    -ms-scroll-chaining: none;
    overscroll-behavior: none;

  }

  ::-moz-selection 
  { 
    background: #111; color: #AF1737; 
  }
	::selection 
  { 
    background: #111; color: #AF1737; 
  
  }

  p{
    font-weight: 400;
  }

  h1.-s
  {
    font-size: 1em;
  }

  h1.-m
  {
    font-size: 2em;
  }

  h1.-l
  {
    font-size: 3.25em;
  }

  p{
    font-size: 1em;
  }

   span.-xl
  {
    font-size: 5em;
    text-transform: uppercase;
    font-size: 5rem;
    line-height: 1rem;
  }

  .container{
    padding: 50px 0;
  }

  .line {
  position: relative;
}

.line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px;
  background: #AF1737;
  transform: translate(-50%, -50%);
}

  .height-s{
    height: 250px; 
  }

  .height-m{
    min-height: 450px; 
  }

  .height-l{
    height: 650px; 
  }

  html, body{
    background-color: #0d0d0d;
 
  }


  .mouse-follower {
    z-index: 9999 !important;
    pointer-events: none !important;
    mix-blend-mode: normal !important;
  }

  .bg-black{
    background-color: #0d0d0d;
  }

  .bg-white{
    background-color: #ffffff;
  }

  .bg-red{
    background-color: #AF1737;
  }

  .text-left{
    text-align: left;
  }

  .text-center{
    text-align: center;
  }

  .text-right{
    text-align: right;
  }

.w-auto{
    width: auto;
}

.w-fit-content{
  width: fit-content;
}

.w-100{
  width: 100%;  
}

.w-80{
    width: 80%;  
}

.w-50{
  width: 50%;
}

.w-25{
    width: 25%;
}

.h-auto{
  height: auto;
}

.h-100{
  height: 100%;  
}

.h-80{
  height: 80%;  
}

.h-50{
  height: 50%;
}

.h-25{
  height: 25%;
}

.m-auto{
    margin: auto;
}

.mb-10{
  margin-bottom: 10px;
}

.mb-2{
  margin-bottom: 2.5px;
}

.mr-8{
  margin-right: 8px;
}

.justify-end{
  justify-content: flex-end;
}

.justify-left{
  justify-content: left;
}

.justify-center{
  justify-content: center;
}

.justify-right{
  justify-content: right;
}
.justify-between{
  justify-content: space-between;
}

.justify-around{
  justify-content: space-around;
}

.align-center{
  align-items: center;
}

.align-bottom{
  align-items:flex-end;
}

.vertical-center{
  vertical-align: middle;
}

.vertical-bottom{
  vertical-align:bottom;
}

.d-flex{
  display: flex;
}

.d-block{
  display: block;
}

.d-none{
  display: none;
}

.d-column{
  flex-direction: column;
}

.end{
  margin-top: auto;
}

.info{
  color: rgba(255, 255, 255, 0.6);
  padding: 20px 0;
}


  /* HEADER */

header{
    z-index: 100;
    position: sticky;
    top: 0;

}

.navbar{
    display: flex;
    justify-content: space-between;
    align-items:center;
    flex-direction: row;
    padding: 0 50px;
    height: 150px;
    background-color: #b9252500;
}

.navbar.active{
  background-color: #0d0d0d;
}

.nav-branding{
   width: 100px;
}

.nav-branding:hover{
    transform: scale(1.02);
    transition:ease-in 0.5s, ease-out 0.5s;
}

li{
  list-style: none;
}


a:hover{
  color: #AF1737;
  cursor: pointer;
}

a{
  text-decoration: none;
  color: white;
}

.hamburger{
    display: block;
    cursor: pointer;
    overflow: visible;
    height: 60.42px;
    width: 43px;
}
.bar {
  display: block;
  width: 35px;       
  height: 2.2px;        
  margin: 8px;       
  -webkit-transition: all 0.375s ease-in-out; 
  transition: all 0.375s ease-in-out;
  background-color: white;
  border-radius: 5px;
}

.bar:nth-child(3) {
  width: 25px;
  margin: 8px auto;          
}

.hamburger.active .bar {
  height: 3px;
  width: 30px !important;
  margin: 5.5px auto !important;
  background-color: white !important;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(8.75px) rotate(45deg); 
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8.75px) rotate(-45deg);
}

.nav-menu {
  left: 0;
  top: 150px;
  font-size: 1.5em;
  font-weight: 500;
  position: fixed;
  opacity: 0;
  visibility: hidden; /* <--- NEU */
  pointer-events: none; /* <--- verhindert Klicks, solange unsichtbar */
  flex-direction: row;
  align-items: center;
  background-color: #0d0d0d;
  /* background-color: #2af501; */
  width: 100vw;
  text-align: center;
  transition: opacity 0.4s ease, visibility 0.4s ease; /* <--- SMOOTH */
  height: calc(100vh - 150px);
  justify-content: center;
  z-index: 1000;
 
}

.nav-section-1{
  width: 35vw;
  height: calc(100vh - 150px);
  /* background-color: #ee0000; */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;

}

.nav-section-1-1{
  padding: 20px;
  height: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;

}



.nav-section-2{
  width: 45vw;
  height: calc(100vh - 150px);
  /* background-color: aqua; */
  flex-direction: column;
  border-left: solid 1px rgba(255, 255, 255, 0.062);;
  justify-content: flex-start;
  text-align: left;
}

.nav-section-2-1{
  width: 100%;
  height: 40%;
  /* background-color: #ee0000; */
  justify-content: center;
  align-items: center;
  border-bottom: solid 1px rgba(255, 255, 255, 0.062);
}

.nav-section-2-1-1{
  padding: 20px;
  /* background-color: #d6ee00; */
  width: 45%;
}

.nav-section-2-1-2{
  padding: 20px;
  /* background-color: #7b00ee; */
    width: 45%;
}

.nav-section-2-2{
  width: 100%;
  height: 50%;
  /* background-color: #1d1d1d; */
    align-items: center;
  justify-content: center;
}

.nav-section-2-2-1{
  padding: 20px;
  /* background-color: #d6ee00; */
  width: 45%;
}

.nav-section-2-2-2{
  padding: 20px;
  /* background-color: #7b00ee; */
    width: 45%;
}

.nav-link-lowpr{
  font-size: 0.8em !important;
  font-weight: 400;
  color: #ffffff8e;
}

.nav-link-lowpr:hover{
  color: #ffffff;
}

.no-hover:hover{
  color: #ffffff8e !important;
}

.section-p{
  font-size: 0.8em !important;
  font-weight: 600;
  color: #ffffff !important;
  padding-bottom: 100px !important;
}

.nav-item{
  font-size: 1.5em;
  font-weight: 600;
  letter-spacing: 0;
}

.nav-item a{
    padding: 5px;
}


.nav-menu.active {
  opacity: 1;
  visibility: visible; /* <--- NEU */
  pointer-events: all;
  overflow: hidden;
}

#logo-header.active path{
  fill: #ffffff;
}

#logo-header{
  fill: #ffffff;
}



/* FOOTER */

footer{
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  height: fit-content;
}

.f-header{
  color: #AF1737;
  font-size: 3.25rem;
}

.foot-section{
  /* margin-top: 20px; */
  /* background-color: pink; */
  height: 100%;
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
 
}


.foot-section-1{
  /* background-color: #0177ff; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  flex-basis: 50%;
  height: 100%;
}



.inverse-a{
  margin-top: 40px;
  color: #ffffff;
  width: 60%;
}

.mail-link{
  padding: 10px;
  box-shadow: rgba(255, 255, 255, 0.06) 2px 2px 6px 2px inset;
  border-radius: 2px;
  width: 100%;
    /* background-color: rgba(255, 255, 255, 0.26); */
}

.foot-section-2{
  /* background-color: aqua; */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: right;
  flex-basis: 20%;
  align-self: center;
  font-size: 2rem;
  font-weight: 600;
  margin-right: 50px;

}

.foot-item a{
  padding: 5px;
  margin-bottom: 2px;
}

.foot-section-3{
  flex-direction: column;
  /* border-left: solid 1px rgba(255, 255, 255, 0.062); */
  justify-content: flex-start;
  text-align: left;
  flex-basis: 30%;
  font-size: 1.5rem !important;
}

.foot-section-3-1{
  flex-basis: 100%;
  height: 50%;
  /* background-color: #ee0000; */
  justify-content: flex-end;
  /* border-bottom: solid 1px rgba(255, 255, 255, 0.062); */

}

.foot-section-3-1-1{
  padding: 20px;
  /* background-color: #d6ee00; */
   
  flex-basis: 50%;

}

.foot-section-3-1-2{
  padding: 20px;
  /* background-color: #7b00ee; */
  flex-basis: 50%;
}

.foot-section-3-2{
  flex-basis: 100%;
  height: 50%;
  /* align-items: center; */
  justify-content: flex-end;
  /* background-color: #00d2ee; */
}

.foot-section-3-2-1{
  padding: 20px;
  /* background-color: #d6ee00; */
  flex-basis: 50%;
}

.foot-section-3-2-2{
  padding: 20px;
  /* background-color: #ee00da; */
  flex-basis: 50%;
}

.rights{
  color: white;
  font-weight: 200;
  padding-top: 30px;
  padding-bottom: 10px;
  width: 80%;
  text-align: left;
  justify-content: center;
  position: absolute;
  bottom: 0;
  /* background-color: olive; */
}


/* HOVER */
.link-hover, .link-hover-2{
  position: relative;
  display: inline-block;
  color: white;
  overflow: hidden;
  z-index: 0;
}

.link-hover .hover-bg{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  z-index: -1;
  transition: none;
  border-radius: 2px;
}

.link-hover-2 .hover-bg-2{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  z-index: -1;
  transition: none;
    border-radius: 2px;
}


.hover-bg {
  pointer-events: none;
  background-color: #0d0d0d;

}

.hover-bg-2 {
  pointer-events: none;
  background-color: #AF1737;

}

.link-hover::before,
.hover-bg {
  pointer-events: none;
}

.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: white;
  mix-blend-mode: difference; /* 👈 magischer Invert-Effekt */
  opacity: 0;
  z-index: 10000;
  user-select: none;
  pointer-events: none;
  transition: opacity 0.2s ease;
}



.imp a{
  margin: 0 10px;
  color: #0d0d0d;
}

.imp a:hover{
  text-decoration: green 1px wavy !important;
  color: #0d0d0d;
}

/* PAGER */

.pager{
  transform: rotate(-90deg);
  color: #ffffff;
  position: fixed; 
  bottom: 80px;
  left: 60px;
  font-size: 14px;
  cursor:default;
  transition: color 0.3s ease-in-out; 
  z-index: 100;
}
.pager.light {
  color: #000; 
}

.pager.hidden{
  display: none;
}


/* PRELOADER */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0d0d0d;       /* Hintergrundfarbe */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;             /* ganz oben */
  overflow: hidden;
}

#preloader-text {
  font-family: "eco", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #AF1737;
  font-size: 3rem;
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateY(20px);
}

/* Verhindert Scrolling, bis die Seite "frei" ist */
body.loading {
  overflow: hidden;
}


/* EXTERNE CSS 

quelle: https://www.digitalocean.com/community/tutorials/css-scrollbars

*/

body::-webkit-scrollbar {
    width: 3px;
    height: 1px;
  }
  
  body::-webkit-scrollbar-track {
    background: black;
    
  }
  
  body::-webkit-scrollbar-thumb {
    /* background-color: rgb(255, 255, 255);  */
    background-color: #AF1737;
  }


  /* quelle: Mouse-Follow unpkg.com  */



  /* RESPONSIV */

/* „sm“ – größere Smartphones / portrait */
@media (max-width: 768px) { 

    h1.-s
  {
    font-size: 0.7em;
  }

  h1.-m
  {
    font-size: 1.4em;
  }

    h1.-l
  {
    font-size: 2.4em;
  }

  span.-xl{
    font-size: 2.4em;
  }

  .rights{
    font-size: 0.7em;
  }

  .nav-link-lowpr{
    font-size: 0.7em !important;
  }


  .navbar{
    padding: 10px 10px;
}

.pager{
  bottom: 80px;
  left: 0px;
}
  
  footer{
    width: 100%;
    flex-direction: column;
    height: fit-content !important;
  }


  .foot-section{
    width: 100%;
    flex-basis: 100%;
    flex-direction: column;
  }

  .foot-section-1{
    width: 80%;
    justify-content: center;
    align-items: center !important;
    /* text-align: center; */
    margin-bottom: 25px
  }

  .inverse-a{
    width: 100%;
    margin-top: 25px;
  }

  .f-header{
    margin: 0;
    padding: 0;
  }


  .foot-section-2{
    width: 80%;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    flex-basis: 100% !important;
    margin-right: 0px;
 }

 .foot-section-3{
  width: 80%;
  flex-basis: 100% !important;
  margin-bottom: 25px;

 }
  .foot-section-3-1{
    justify-content: center !important;
  }

  .foot-section-3-2{
    justify-content: center !important;
  }

  .rights{
    text-align: center !important;
  }

  .navbar{
    background-color: #b9252500;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    height: 80px;
    padding: 10px 10px;
    
}

.nav-branding{
   width: 50px;
}

.nav-menu {
  height: calc(100vh - 80px);
  top: 80px;
 
}

.nav-section-1 {
  height: calc(100vh - 80px);
}

.nav-section-2 {
  height: calc(100vh - 80px);
}

.nav-section-1{
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.nav-section-1-1 .nav-item{
  text-align: center;
}

.nav-section-2{
  display: none;
}

.pager{
  display: none;
}

.info{
  text-align: center;
  font-size: 0.7em;
}


}
/* „xl“ – klassische Desktop-Breiten */
@media (max-width: 1279px) { 

  .foot-section{
    width: 100%;
    flex-basis: 100%;
    flex-direction: column;
  }

  .foot-section-1{
    width: 80%;
    justify-content: center;
    align-items: flex-start;
    /* text-align: center; */
    margin-bottom: 25px;

  }

  .inverse-a{
    width: 100%;
    margin-top: 25px;
  }

  .f-header{
    margin: 0;
    padding: 0;
  }


  .foot-section-2{
    width: 80%;
    justify-content: center;
    align-items: center;
    text-align: left;
    flex-basis: 100% !important;
    margin-right: 0px;
 }

 .foot-section-3{
  width: 80%;
  flex-basis: 100% !important;
  margin-bottom: 25px;

 }
  .foot-section-3-1{
    justify-content: flex-start;

  }

  .foot-section-3-2{
    justify-content: flex-start;
  }

  .rights{
    text-align: flex-start;
  }

  .pager{
  display: none;
}

.nav-section-1{
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.nav-section-1-1 .nav-item{
  text-align: center;
}

.nav-section-2{
  display: none;
}

  .navbar{
    background-color: #b9252500;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    height: 80px;
    padding: 10px 10px;
    
}

.nav-branding{
   width: 60px;
}

.nav-menu {
  height: calc(100vh - 80px);
  top: 80px;
 
}

.nav-section-1 {
  height: calc(100vh - 80px);
}

.nav-section-2 {
  height: calc(100vh - 80px);
}

}

/* „xxl“ – große Desktop-/Ultra-Wide Screens */
@media (min-width: 1440px) { }