.header {
  position: fixed;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.7); /* Transparentes Weiß */
  backdrop-filter: blur(10px); /* Der magische Glas-Effekt */
}

.header a {
  text-decoration: none;
  color: black;
  cursor: pointer;
}

.header-left {
  font-family: 'Plus Jakarta Sans';
  font-size: 46px;
  font-weight: 600;
  margin-left: 60px;
}

.header-right {
  display: flex;
  font-family: Inter;
  justify-content: space-between;
  font-size: 18px;
  margin-right: 60px;
}

.header-right button {
  font-family: 'Plus Jakarta Sans';
  font-weight: 700;
  font-size: 14px; /* Etwas kleiner für den Header-Look */
  color: #0a0a0a;
  background-color: #00ff88; /* Das Novalis-Grün */
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  margin-left: 20px; /* Abstand zu den Nav-Links */
  cursor: pointer;
  transition: all 0.2s ease
}

.header-right button:hover {
  background-color: #00e577;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.2);
}

.header-right .header-items {
  margin-right: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-items a {
  transition: color 0.3s ease;
  position: relative;
}

.header-items a:hover {
  color: #00ff88; /* Das markante Grün aus dem CTA-Button */
}

.header-items a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #00ff88;
  transition: width 0.3s;
}

.header-items a:hover::after {
  width: 100%;
}

/* Der Wrapper definiert die exakte Größe des Bildes */
.hero-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  cursor: pointer;
}

/* NUR wenn der Wrapper gehovert wird, skaliert das Bild */
.hero-wrapper:hover img {
  transform: scale(1.03);
  filter: brightness(0.7);
}

.green-forest-head {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
  padding: 0 60px; /* Hier soll der Cursor NICHT reagieren */
}

.green-forest-head img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  filter: brightness(0.6); /* Macht das Bild dunkler, damit man den Text besser lesen kann */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 20px 60px rgba(0, 0, 0, 0.1); /* Moderner und dezenter Schatten */
  /* Die Transition muss auf dem Element liegen, das sich bewegt */
  transition: transform 0.5s ease, filter 0.5s ease;
}

/* Der Hover-Effekt */
.green-forest-head img:hover {
  transform: scale(1.03); /* Etwas deutlicher als 1.01, damit man es sieht */
  filter: brightness(0.7); /* Optional: Wird beim Hovern ein kleines bisschen heller */
  cursor: pointer;
}

.hero-text {
  position: absolute;
  text-align: center;
  color: white;
  width: 80%;
  pointer-events: none; /* 4. Damit der Text den Hover nicht unterbricht: Die Maus "geht durch" den Text direkt aufs Bild */
}

.hero-text h1 {
  font-family: 'Plus Jakarta Sans';
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-text p {
  font-family: 'Inter';
  font-size: 20px;
}

/* cta = call to action */

.cta-button {
  margin-top: 30px;
  padding: 15px 40px;
  font-family: 'Plus Jakarta Sans', sans-serif; /* Deine gewählte Branding-Schrift */
  font-size: 18px;
  font-weight: 700;
  background-color: #00ff88; /* Ein giftiges, digitales Grün für den Kontrast */
  color: #0a0a0a; /* Dunkler Text auf hellem Grund */
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  pointer-events: auto; /* 5. Aber der Button im Text soll klickbar bleiben! Reaktiviert die Klickbarkeit nur für den Button */
}

.cta-button:hover {
  transform: translateY(-3px); /* Leichter Schwebe-Effekt */
  box-shadow: 0 10px 20px rgba(0, 255, 136, 0.3);
}