/* Allgemeiner Reset und Basisstile */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Menü-Container */
.menu-icon {
  position: fixed;
  top: 15px;
  right: 20px;
  width: 50px;
  height: 35px; /* Höhe angepasst, um kompakter zu wirken */
  display: flex;
  flex-direction: column;
  justify-content: space-around; /* Abstand zwischen den Linien verringert */
  align-items: center;
  cursor: pointer;
  z-index: 2000;
  background: none; /* Kein Hintergrund */
  border: none;
}

/* Die einzelnen Linien */
.menu-icon div {
  width: 100%;
  height: 4px; /* Etwas dünner */
  background: white; /* Weißes Icon */
  border-radius: 5px;
  transition: background 0.3s ease-in-out;
  box-shadow: 
    0 0 20px rgba(255, 255, 255, 0.8), 
    0 0 10px rgba(255, 255, 255, 0.6);
}

/* Hover-Effekt für stärkeres Leuchten */
.menu-icon:hover {
  box-shadow: 
    0 0 120px rgba(255, 255, 255, 0.4), 
    0 0 80px rgba(200, 200, 200, 0.3), 
    0 0 50px rgba(150, 150, 150, 0.2);
}


.menu-icon:hover div {
  box-shadow: 
    0 0 60px rgba(220, 220, 220, 0.6), 
    0 0 40px rgba(180, 180, 180, 0.4);
}


/* Seitenmenü */
#sideMenu {
  position: fixed;
  top: 0;
  right: 0;
  width: 250px;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  border-left: 2px solid #09cc94;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
}

#sideMenu ul {
  list-style: none;
  padding: 0;
}

#sideMenu li {
  margin: 20px 0;
}

/* Standard-Styling für Menü-Links */
#sideMenu a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1.4em;
  transition: color 0.3s, text-decoration 0.3s;
  display: flex;
  align-items: center;
  padding-left: 30px; /* Platz für Pfeil */
  position: relative;
}

/* Pfeil vor gehoverter Menüoption (bei Hover) */
#sideMenu a:hover::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #09cc94;
  font-size: 1.2em;
  margin-right: 10px;
  transition: transform 0.3s ease-in-out;
}

/* Hover-Effekt für Menüoptionen */
#sideMenu a:hover {
  color: #09cc94;
  text-decoration: underline;
}

/* Menü sichtbar machen */
#sideMenu.show {
  transform: translateX(0);
}

header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px;
  background: linear-gradient(to right, 
              rgba(0, 0, 0, 1) 20%,  /* Schwarz bleibt dominant */
              rgba(50, 50, 50, 0.7) 85%, /* Dunkles Grau */
              rgba(200, 200, 200, 0.6) 100%); /* Helles Grau */
  position: relative;
  z-index: 10;
}

.logo {
  width: 80px;
  height: auto;
  margin-right: 20px;
}

.header-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  justify-content: center; /* Falls nötig */
  margin-left: 20px; /* Falls er zu weit rechts ist */
}

.header-text h1 {
  font-size: 2em;
  color: #09cc94;
}

.header-text h2 {
  font-size: 1.2em;
  color: #ffffff;
}

/* Hauptbereich (oben) */
main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
}

/* Linker Textbereich (oben) */
.left-text {
  width: 30%;
}

.left-text h2 {
  font-size: 1.5em;
  color: #09cc94;
  margin-bottom: 10px;
}

.left-text p {
  font-size: 1em;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .header-text h1 {
    font-size: 1.5em;
    color: #09cc94;
  }
  
  .header-text h2 {
    font-size: 1em;
    color: #ffffff;
  }
}
