/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serifs;
}

html {
  overscroll-behavior-y: none;
}

html, 
body {
  overflow-x: hidden;
  overflow-y: auto;
}


/* HEADER */
.topbar {
  background-color: rgb(144, 139, 182);
  color: white;
  height: 30px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 0;
  padding-right: 0;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif; 
  z-index: 999;
}

.topbar-right {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 70%;
  padding-right: 30px;
}

.topbar-left {
  padding-left: 30px;
  font-weight: bold;
}


/*HEADER*/
.header {
  margin-top: 30px;
  margin-bottom: 0;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  top: 0;
  left: 0;
  right: 0;
  position: fixed;
  background: white;
  z-index: 998;
  border-color: black;
  height: 140px;
}

body {
  margin-top: 260px;
}

.logoheader img {
  height: 100px;
  width: auto;
  display: block;
}

.h1-header {
  color: black;
  margin: 0;
  font-size: 80px;
  font-family: "Space Mono", monospace;
  font-weight: 700;
  letter-spacing: 5px;
}


/*NAVIGATION*/
header nav {
  display: block;
  background: black
}

header nav ul {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
}

header nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  font-family: "Space Mono", monospace;
  letter-spacing: 2px;
  font-weight: 400;
}

nav {
  display: flex;
  justify-content: center; 
  align-items: center;
  flex-direction: column;
  padding-top: 10px;
  padding-bottom: 10px;
  top: 170px;
  left: 0;
  right: 0;
  position: fixed;
  z-index: 997;
}

nav ul {
  display: flex;
  justify-content: space-evenly; 
  gap: 10px; 
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin: 0;
  padding: 0 30px;
}


/*HERO BANNER*/


.herowelome {
  display: flex;
  align-items: row;
}

.heroh1 {
  font-family: "Space Mono", monospace;
  font-size: 60px;
  margin: -30px auto;
  padding: 20px;
  text-align: center;
  letter-spacing: 2px;
}


/*SLIDER*/
.slider-container {
  position: relative;
  max-width: 1000px;
  margin: 50px auto;
  border: 5px solid black;
  border-radius: 8px;
}

.slider {
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.3s linear;
  width: 100%;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
  position: relative;
}

.slide img {
  width: 100%;
  display: block;
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.slider-container button.prev img,
.slider-container button.next img {
  cursor: pointer;
  z-index: 10;
  width: 60px;
  height: 60px;
  display: block;
}

.slider-container button.prev {
  left: -100px; 
  top: 280px;
  position: absolute;
  border: none;
  background: none;
}

.slider-container button.next {
  right: -100px; 
  top: 280px;
  position: absolute;
  border: none;
  background: none;
}

.slide-text-left-bottom {
  position: absolute;
  top: auto;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  color: white;
  padding: 20px;
  padding-left: 50px;
  background-color: rgba(0, 0, 0, 0.373);
}

.slide-text h1 {
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 2px;
  letter-spacing: 1px;
}

.slide-text p {
  font-size: 22px;
  margin-right: 500px;
}


/*BANNER2*/
.banner2 {
  position: relative;
  height: auto;
  width: auto;
  background: black;
  color: white;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 30px;
}

.headerbanner2 {
  height:auto;
  padding: 20px;
  border: 5px solid white;
  border-radius: 8px;
  width: fit-content;
  margin: 0 auto;
}

.banner2 h1 {
  font-size: 40px;
  letter-spacing: 4px;
  font-family: "Space Mono", monospace;
  font-weight: 700;
}

.banner2 p {
  font-size: 20px;
  font-weight: 400;
}

.contentbanner2 {
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: space-evenly;
}

.contentbanner2 img {
  height: 100px;
  width: 100px;
  background: fixed rgb(214, 181, 255);
  border: 5px white;
  border-radius: 8px;
  margin: 20px;
}

.banner2defense,
.banner2man,
.banner2opp {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 400px;
  margin: 20px;
}

.contentbanner2 h2 {
  font-family: "Space Mono", monospace;
  font-size: 30px;
  margin-top: 10px;
}

.contentbanner2 p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
}

.buttonbanner2 {
  font-family: "Space Mono", monospace;
  font-size: 25px;
  font-weight: 700;
  padding: 5px;
  margin-top: 40px;
  background-color: rgb(214, 181, 255);
  border-radius: 8px;
  border: none;
  color: black;
}

.buttonbanner2 a {
  text-decoration: none;
  color: black;
}


/*SHOWCASE*/
.showcase {
  position: relative;
  height: auto;
  width: auto;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 30px;
}

.headershowcase {
  height:auto;
  padding: 20px;
  margin: 10px;
}

.headershowcase h1 {
  font-size: 40px;
  letter-spacing: 4px;
  font-family: "Space Mono", monospace;
  font-weight: 700;
}

.ivkagcontent,
.picturecontent,
.customercontent {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  width: 400px;
  margin: 20px;
}

.contentshowcase {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  gap: 20px;
}

.contentshowcase img {
  height: 400px;
  width: 400px;
  display: flex;
  flex-direction: row;
  object-fit: cover;
  border: 5px solid black;
  border-radius: 8px;
  background-color: white;
  align-items: center;
  justify-content: center;
}

.contentshowcase h1 {
  font-family: "Space Mono", monospace;
  font-size: 30px;
  margin-bottom: 10px;
}

.contentshowcase p {
  font-family: 'Courier New', Courier, monospace;
  font-size: 20px;
  font-weight: 700;
  margin: 20px;
}

.ivkagcontent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 740px;
  width: 500px;
  border: 5px solid black;
  border-radius: 8px;
  padding: 20px;
  box-sizing: border-box;
  background-color: rgb(214, 181, 255);
}

.picturecontent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 740px;
  width: 500px;
  border: 5px solid black;
  border-radius: 8px;
  padding: 20px;
  background-color: rgb(214, 181, 255);
}


.customercontent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 740px;
  width: 500px;
  border: 5px solid black;
  border-radius: 8px;
  padding: 20px;
  background-color: rgb(214, 181, 255);
}

.showcasebutton {
  display: flex;
  flex-direction: column;
  font-family: "Space Mono",monospace;
  font-size: 30px;
  padding: 10px;
  font-weight: 700;
  border: 5px solid black;
  border-radius: 8px;
  max-width: fit-content;
  background-color: rgb(214, 181, 255);
  margin: 0 auto 20px auto;
  text-decoration: none;
  color: black;
  margin-top: 20px;
}

.showcase a {
  text-decoration: none;
  cursor: pointer;
}


/*KUNDENBEWERTUNG*/
.kundenbewertung {
  position: relative;
  display: flex;
  flex-direction: column;
  width: auto;
  height: auto;
  padding: 30px;
  border-top: 5px solid black;
  border-bottom: 5px solid black;
  background-color: rgb(214, 181, 255);
}

.headerkundenbewertung {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.headerkundenbewertung h1 {
  font-family: "Space Mono", monospace;
  font-weight: 700;
  font-size: 40px;
  letter-spacing: 4px;
}

.sliderkundenbewertung {
  position: relative;
  max-width: 1000px;
  margin: 50px auto;
  background-color: white;
  border: 5px solid black;
  border-radius: 8px;
}

.sliderkunde {
  width: 100%;
  overflow: hidden;
}

.slideskunde {
  display: flex;                 /* Slides nebeneinander in einer Reihe */
  transition: transform 0.5s ease-in-out;  
  width: 100%;
}

.slidekundeactive {
  min-width: 100%;
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: transparent;
  padding: 20px;
}

.slidekundeslide {
  min-width: 100%;
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: transparent;
  padding: 20px;
}

.slidekundeactive img {
  display: block;
  max-width: 1000px;
  max-height: 150px;            /* Höhe anpassen, oder 100% falls volle Höhe */
  margin: 0 auto 20px auto;
  object-fit: contain;
  align-self: center;
  padding: 20px;
}

.slidekundeslide img {
  display: block;
  max-width: 1000px;
  max-height: 150px;
  margin: 0 auto 20px auto;
  object-fit: contain;
  align-self: center;
  padding: 20px;
}

/*SLIDERTEXT*/
.slidekundeactive p {
  font-size: 20px;
  font-family: monospace;
  margin-bottom: 15px;
  color: black;             
  text-align: center;
  padding: 10px;
  line-height: 30px;
}

.slidekundeactive h3 {
  font-family: "Space Mono", monospace;
  font-size: 24px;
  font-weight: 700;
  color: black;
  text-align: center;
}

.slidekundeslide p {
  font-size: 20px;
  font-family: monospace;
  margin-bottom: 15px;
  color: black;             
  text-align: center;
  padding: 10px;
  line-height: 30px;
}

.slidekundeslide h3 {
  font-family: "Space Mono", monospace;
  font-size: 24px;
  font-weight: 700;
  color: black;
  text-align: center;
}

.sliderkundenbewertung button.prev,
.sliderkundenbewertung button.next {
  cursor: pointer;
  z-index: 996;
  position: absolute;
  width: 60px;
  height: 60px;
  display: block;
  top: 50%;
  border: none;
  transform: translateY(-50%);
}

.sliderkundenbewertung button.prev {
  left: -100px; 
  border: none;
  background: none;
}

.sliderkundenbewertung button.next {
  right: -100px; 
  border: none;
  background: none;
}

/*KUNDENBEWERTUNG2*/
.headerkundenbewertung2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.headerkundenbewertung2 h1 {
  font-family: "Space Mono", monospace;
  font-weight: 700;
  font-size: 40px;
  letter-spacing: 4px;
  margin-bottom: 30px;
}

.logoskundenbewertung2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  background-color: white;
  width: 1200px;
  height: 300px;
  margin: 20px auto;
  padding: 10px;
  border: 5px solid black;
  border-radius: 8px;
}

.logoskundenbewertung2 img {
  width: auto;
  height: 110px;
  padding: 10px;
  object-fit: contain;
  display: block;
}


/*NEWS*/
.news {
  position: relative;
  padding: 20px;
  margin-top: 30px;
}

.newsbox {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 1400px;
  align-content: center;
  margin: 0 auto;
  border: 5px solid black;
  border-radius: 8px;
}

.newstopheader {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  border-bottom: 2px solid black;
  padding: 5px;
  margin-top: 10px;
  padding-bottom: 10px;
}

.newstopheader > div {
  flex: 1;                     /* alle gleich breit */
  text-align: center;
  border-left: 4px solid black; /* Linie links */
}

.newstopheader > div:first-child {
  border-left: none;           /* erste Spalte ohne Linie */
}

.newsboxlogo {
  display: flex;
  justify-content: center;
  align-items: center;
  background: black;
  height: 120px;
  position: relative;
}

.newsboxlogo img {
  width: auto;
  height: 100px;
  display: block;
  object-fit: contain;
}

.newsboxdate p,
.newscosttopheader p,
.newsnametopheader p {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 15px;
}

#heutiges-datum {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 15px;  
}

/*NEWSHITBOX1*/
.hitbox1bild {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: flex-start;
  border: 5px solid black;
  padding: 20px;
  margin-top: 20px;
  margin-left: 20px;
  margin-right: 20px;
}

.hitbox1bild img {
  width: 1000px;
  height: auto;
  display: block;
  object-fit: cover;
}

.hitbox1bildbeschreibung p {
  font-family: Arial, Helvetica, sans-serif;
  margin-left: 20px;
  font-size: 15px;
  margin-top: 7px;
  margin-bottom: 7px;
  text-align: left;
}

.hitbox1 {
  text-align: center;
  
}
.hitbox1 h1 {
  font-size: 80px;
  font-family: 'Times New Roman', Times, serif;
  text-align: center;
  border-top: 5px double black;
  border-bottom: 5px double black;
  display: inline-block;
  letter-spacing: 5px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.hitbox1 p {
  font-size: 20px;
  font-family: 'Times New Roman', Times, serif;
  text-align: justify;             /* Text wird gleichmäßig über die Spalten verteilt */
  column-count: 2;                 /* zwei Spalten */
  column-gap: 40px;                /* Abstand zwischen den Spalten */
  hyphens: auto;    
  margin-left: 80px;
  margin-right: 80px;
  padding-bottom: 10px;
  width: auto;
  margin-bottom: 10px;
  margin-top: 10px;
  padding-top: 10px;
}

.hitboxnewscontainer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  align-items: stretch;
}

.hitbox2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 700px;
  height: auto;
}

.hitbox3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 700px;
  height: auto;
  padding-right: 5px;
  margin-left: none;
}

.hitboxnewscontainer img {
  display: flex;
  align-items: center;
  width: 500px;
  height: 200px;
  border: 3px solid black;
  border-radius: 6px;
  margin: 20px;
  object-fit: cover;
  padding: none;
}

.hitboxnewscontainer h1 {
  font-size: 55px;
  font-family: 'Times New Roman', Times, serif;
  text-align: center;
  border-top: 5px double black;
  border-bottom: 5px double black;
  display: inline-block;
  letter-spacing: 5px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.hitboxnewscontainer p {
  font-size: 20px;
  font-family: 'Times New Roman', Times, serif;
  text-align: center;           
  margin: 20px;
  padding: 10px;
  width: 600px;
}

/*BUTTON NEWS*/
.newsbutton1 {
  display: flex;
  align-self: center;
  text-decoration: none;
  color: black;
  font-family: 'Times New Roman', Times, serif;
  font-size: 40px;
  border: 5px solid black;
  border-radius: 8px;
  width: fit-content;
  padding: 20px;
  margin-bottom: 30px;
  background-color: rgb(214, 181, 255);
}


.newsfooter {
  display: flex;
  flex-direction: row;
  width: 100%;
  background: black;
  color: white;
  margin: none;
  justify-content: space-between;
  align-items: center;
  height: 120px;
  padding: 20px;
}

.newsfooterright img {
  height: auto;
  width: 600px;
  display: block;
}

.newsfooterright {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/*INDEXAD*/
.indexad img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
}


.indexad p {
  margin-top: 2px;
  margin-right: 20px;
  text-align: right;
  font-family: "Space Mono", monospace;
  font-size: 15px;
  font-weight: 700;
}

/*FOOTER*/
.site-footer {
  background-color: black;
  color: white;
  padding: 40px 20px;
  margin-top: 60px;
}

.footer-container {
  max-width: 1400px;  /* gleich wie dein Content */
  margin: 0 auto;     /* zentriert */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-family: "Space Mono", monospace;
}

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

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
}

.footer-section ul li a:hover {
  text-decoration: underline;
}

.footer-logo {
  height: 60px;
  margin-bottom: 15px;
}

.social a {
  color: white;
  margin-right: 10px;
  font-size: 20px;
}

/*FONTS*/
.space-mono-regular {
  font-family: "Space Mono", monospace;
  font-weight: 400;
  font-style: normal;
}

.space-mono-bold {
  font-family: "Space Mono", monospace;
  font-weight: 700;
  font-style: normal;
}

