:root {
  --MainColor:        #7A35FF;    /* Primär – kräftiges Violett (Akzent) */
  --MainFontColor:    #ECECEC;    /* Helle Schrift – nicht reinweiß */
  --FormFontColor:    #FFFFFF;    /* Für Inputs etc. okay */
  --HeaderColor:      #1A1A2E;    /* Dunkler Header, leicht violettstichig */
  --MainBackColor:    #0E0E1A;    /* Sehr dunkler Hintergrund, fast schwarz */
  --MainBorderColor:  #2E2E4D;    /* Dezente Rahmenfarbe */
  --MainFormColor:    #1A1A2E;    /* Inputs / Formulare – dunkler, aber leicht abgesetzt */
  --MainTableColor:   #2D2D45;
  --HighlightColor:   #B085FF;
}

body {
  margin: 0;
  font-family: 'museo-sans';
  background-color: var(--MainBackColor);
  color: var(--MainFontColor);
}

.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  z-index: 1000;
  transition: background 0.5s ease;
}

.hidden-link {
  display: none;
}

.fixed-header.transparent {
  background: transparent;
}

.fixed-header:not(.transparent) {
  background: var(--HeaderColor);
}

.fixed-header.transparent:hover {
  background: var(--HeaderColor);
}

.logo {
  font-weight: bold;
  font-size: 1.8em;
}

.menu a {
  margin-left: 20px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  color: var(--MainFontColor);
  position: relative;
  transition: color 0.3s ease;
}

.menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--MainColor);
  transition: width 0.3s ease;
  box-shadow: 0 0 5px var(--MainColor);
}

.menu a:hover {
  color: var(--HighlightColor);
}

.menu a:hover::after {
  width: 100%;
}


@media (max-width: 666px) {

  .fixed-header {
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 10px 0;
  }

  .logo img {
    height: 50px;
    margin-bottom: 0px;
    margin-top: 0px;
  }

  .menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: -5px;
  }

  .menu a {
    margin: 5px 10px;
    font-size: 16px;
  }

}

.content {
  padding-top: 80px;
}

.banner-container {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.banner-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 0 6px black;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;   
  justify-content: center;
}

.slider-inner {
  display: flex;
  width: calc(100% * 4);
  height: 100%;
  transition: transform 0.5s ease;
}

.slide {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: center; 
  padding: 20px;
  box-sizing: border-box;
  padding-bottom: 80px;
  padding-top: 80px;
}

.slide .icon {
  font-size: 50px;
  color: var(--MainColor);
  margin-right: 25px;
  flex-shrink: 0;
}

.slide .content h2 {
  font-size: 22px;
  margin-bottom: 12px;
}

.slide .content ul {
  list-style: none;
  padding-left: 0;
}

.slide .content ul li {
  margin-bottom: 8px;
  font-size: 16px;
}

.slide .content ul li i {
  margin-right: 10px;
  color: var(--MainColor);
}

.slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 800px;
  height: 100%;
  overflow: hidden;
}

.icon {
  font-size: 40px;
  margin-right: 20px;
  margin-top: 60px;
}

.content h2 {
  margin: 0 0 10px;
}

.content ul {
  margin: 0;
  padding-left: 20px;
}

.dots {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 4px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: var(--MainColor);
}


@media (max-width: 666px) {

  .content {
    padding-top: 50px;
  }

  .slider {
    max-width: 100%;
    padding: 0 10px;
  }

  .slide {
    flex-direction: column;
    align-items: center;
    text-align: left;
    padding: 10px;
    padding-bottom: 60px;
  }

  .slide .icon {
    visibility: hidden;
  }

  .slide .content h2 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .slide .content ul li {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .slide .content ul li i {
    font-size: 14px;
    margin-right: 6px;
  }

  .dots {
    bottom: 6px;
  }
}


