/* reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* Smooth Scrolling für die gesamte Seite */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 75px; /* Berücksichtigt die fixierte Navbar */
}

:root {
  --darkgreen: #304935;
  /* Dunkleres Grün */
  --midgreen: #44664B;
  /* Ein neuer Farbton für mehr Kontrast */
  --lightgreen: #44664B;
  /* Helleres Grün */
  --gradient: linear-gradient(180deg, var(--darkgreen) 0%, var(--midgreen) 50%, var(--lightgreen) 100%);

  --white: #A5BAAD;
  --whitegreen: #c7e4d0;
  --whitedarkgreen: #D4F2E0;

  --text-unselected: #587064;

  --green: #28eb84;
  --greentrans:  rgba(40, 235, 132, 0.2);

  --greenselected: #5be99d;

  --dark: #00250d;


}



*::selection {
  background: var(--greentrans);
}

.desc-text {
  color: var(--whitedarkgreen);
  font-size: clamp(1.1rem, 3vw, 2rem);
  text-align: center;
  padding: 5px 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  text-wrap: balance;
  margin: auto;
}

.landing-desc {
  width: 90%;
  max-width: 1000px;
  margin: 10px auto;
  position: relative;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.landing-desc:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--green);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.landing-desc .desc-text {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 300;
  line-height: 1.5;
  text-align: center;
  color: var(--whitedarkgreen);
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  position: relative;
}

.landing-desc .desc-text::before {
  content: '"';
  position: absolute;
  top: -25px;
  left: -10px;
  font-size: 3.5rem;
  color: var(--green);
  opacity: 0.5;
  font-family: "Alex Brush", cursive;
}

.landing-desc .desc-text::after {
  content: '"';
  position: absolute;
  bottom: -45px;
  right: -10px;
  font-size: 3.5rem;
  color: var(--green);
  opacity: 0.5;
  font-family: "Alex Brush", cursive;
}

.text-unselected {
  color: var(--text-unselected);
}



.text {
  color: var(--white);
}


body {
  background-color: var(--darkgreen);
  color: var(--white);
  min-height: 100vh;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

a {
  text-decoration: none;
  color: var(--white);
  font-size: 1.2rem;

}

nav {
  position: fixed;
  width: 100%;
  padding: 10px;
  backdrop-filter: blur(30px);
  top: 0;
  z-index: 10;
  left: 0;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
}

ul {
  display: flex;
  list-style: none;
  justify-content: space-between;
  align-items: center;
}

ul div {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 3vw, 5rem);
}

.nav-mid {
  display: flex;
  align-items: center;
  margin: auto;
}

img {
  width: 150px;
  pointer-events: none;

}

.circle {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  margin: 0 10px;
}

.nav-mid a {
  position: relative;
  height: 50px;
  padding: 10px 20px;
}

.nav-mid a:hover:after {
  content: "";
  position: absolute;
  display: block;
  top: 70%;
  width: 70%;
  height: 2px;
  background: var(--green);
  opacity: 1;
  transition: 0.3s;
}

.nav-mid a:after {
  content: "";
  position: absolute;
  display: block;
  top: 70%;
  width: 0%;
  height: 2px;
  background: var(--green);
  opacity: 0;
  transition: 0.3s;
  left: calc(50% - 35%);
}




h1 {
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 500;
  color: var(--whitedarkgreen);
  text-align: center;
  font-family: "Waterfall", cursive;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 0;
  background: linear-gradient(to bottom, var(--whitedarkgreen), var(--whitegreen));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  line-height: 1.1;
}

h2 {
  font-size: clamp(4rem, 12vw, 9.5rem);
  font-weight: 500;
  color: var(--whitedarkgreen);
  text-align: center;
  font-family: "Waterfall", cursive;
}

.container h2 { 
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 30px;
}

#faq h2 { 
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 30px;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
  padding-bottom: 20px;
}

header::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, rgba(48, 73, 53, 0), var(--darkgreen));
  z-index: 1;
}

.header-content {
  max-width: 1400px;
  width: 100%;
  padding: 0 30px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.small {
  font-size: clamp(1.75rem, 9vw, 6rem);
  margin: -15px 0;
  opacity: 0.9;
}

.alex {
  font-family: "Alex Brush", cursive;
  font-size: clamp(2.5rem, 10vw, 7rem);
  font-weight: 300;
  position: relative;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  margin-top: -10px;
  background: linear-gradient(to bottom, var(--whitedarkgreen), var(--whitegreen));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

header img {
  width: clamp(120px, 18vw, 220px);
  mix-blend-mode: normal;
  filter: brightness(1) contrast(0.9) saturate(0.3) drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
  animation: float 6s ease-in-out infinite;
  position: relative;
  z-index: 3;
  opacity: 1;
  margin: 0 0 10px 0;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

.landing-button {
  margin-top: 20px;
  position: relative;
  z-index: 5;
  display: inline-block;
  transition: all 0.3s ease;
}

.landing-button button {
  background: var(--green);
  color: var(--midgreen);
  font-weight: 600;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(40, 235, 132, 0.3);
  font-size: 1rem;
  filter: none;
  position: relative;
  overflow: hidden;
}

.landing-button button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s ease;
}

.landing-button:hover button {
  background: var(--greenselected);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(40, 235, 132, 0.4);
}

.landing-button:hover button::before {
  left: 100%;
}

.landing-button:active button {
  transform: translateY(0);
  box-shadow: 0 2px 5px rgba(40, 235, 132, 0.3);
}

button {
  background: var(--whitedarkgreen);
  color: var(--midgreen);
  padding: 10px 35px;
  border: none;
  border-radius: 10px;
  font-weight: 500;
  cursor: pointer;
  filter: drop-shadow(0px 4px 0px var(--dark));
  transition: 0.1s;
  font-size: clamp(0.5rem, 3vw, 1.2rem);
}

button:active {
  background: var(--greenselected);
  transform: translateY(3px);
  filter: drop-shadow(0px 1px 0px var(--dark));
  transition: 0.1s
}


.line {
  width: 25%;
  height: 1px;
  background: var(--green);
  margin: 30px 0 20px 0;
}

.heading {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
  color: var(--whitedarkgreen);
  padding: 25px 0;
  background: none;
  font-weight: 300;
  letter-spacing: 1px;
  position: relative;
  margin-bottom: 60px;
}

.heading:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background-color: var(--green);
  margin: 0;
}

/* Einheitlicher Hintergrund für alle Sektionen außer Slider */
.ubermich-section, 
.service-section, 
.features-section, 
.contact-section {
  width: 100%;
  padding: 80px 0;
  position: relative;
  background-color: var(--darkgreen);
  margin: 0;
}

.ubermich-section::before,
.service-section::before,
.features-section::before,
.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, rgba(48, 73, 53, 0), var(--darkgreen));
  z-index: 1;
}

.service-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 2;
}

.ubermich-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 2;
}

.ubermich-box {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  min-height: auto;
  padding: 0;
  background: none;
}

.img-box {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  padding: 0;
  margin: 0;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.img-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--green);
}

.img-box::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.img-box img {
  width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: cover;
  border-radius: 10px;
  pointer-events: none;
  filter: brightness(0.95);
  transition: transform 0.5s ease;
}

.img-box:hover img {
  transform: scale(1.03);
}

.desc-box {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  padding: 40px;
  margin: 0;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.desc-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--green);
}

.desc-box .desc-text {
  text-align: left;
  color: var(--whitegreen);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.desc-box i {
  font-size: 36px;
  color: var(--green);
  margin: 0 0 20px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--midgreen), var(--green));
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  box-shadow: 0 5px 15px rgba(40, 235, 132, 0.2);
  transition: all 0.3s ease;
  color: white;
}

.desc-box:hover i {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 8px 20px rgba(40, 235, 132, 0.3);
}

.desc-buttons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  margin-top: auto;
  gap: 30px;
}

.desc-buttons button {
  background: var(--green);
  color: var(--midgreen);
  font-weight: 600;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(40, 235, 132, 0.3);
  font-size: 1rem;
  filter: none;
}

.desc-buttons button:hover {
  background: var(--greenselected);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(40, 235, 132, 0.4);
}

.desc-buttons button:active {
  transform: translateY(1px);
  box-shadow: 0 2px 5px rgba(40, 235, 132, 0.3);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
  transform: translateY(-5px);
  background: var(--green);
}

.social-links img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

#faq {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 30px;
}

#faq-title {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  text-align: center;
  color: var(--whitedarkgreen);
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 1px;
  text-shadow: none !important;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--green);
}

.faq-question {
  width: 100%;
  background-color: transparent;
  border: none;
  padding: 20px 25px;
  text-align: left;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--whitedarkgreen);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  text-shadow: none !important;
  filter: none !important;
}

.faq-question:hover {
  background-color: rgba(255, 255, 255, 0.02);
}

.faq-question i {
  transition: transform 0.3s ease;
  font-size: 1rem;
  color: var(--green);
  text-shadow: none !important;
  filter: none !important;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  background-color: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-answer p {
  padding: 20px 25px;
  color: var(--whitegreen);
  font-size: 1rem;
  line-height: 1.6;
  text-shadow: none !important;
  filter: none !important;
}

/* Entfernt gezielt alle Textschatten im FAQ-Bereich */
#faq *,
.service-section #faq-title,
.service-section .faq-question,
.service-section .faq-answer p {
  text-shadow: none !important;
  filter: none !important;
}

.bubbles {
  transition: transform 0.3s ease;
}


/* END FAQ */

/* Feature Section */
.features-section {
    width: 100%;
    padding: 80px 0;
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(48, 73, 53, 0), var(--darkgreen));
    z-index: 1;
}

.features-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 50px;
    color: var(--whitedarkgreen);
    font-weight: 300;
    letter-spacing: 1px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: var(--green);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 auto;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--green);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--midgreen), var(--green));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(40, 235, 132, 0.2);
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 32px;
    color: white;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.feature-card:hover .feature-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(40, 235, 132, 0.3);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--whitedarkgreen);
    transition: all 0.3s ease;
}

.feature-card p {
    color: var(--whitegreen);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
    /* Text soll nicht zu lang werden, damit Karten gleiche Höhe haben */
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 1200px) {
    .features-grid {
        gap: 25px;
    }
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }
    
    .feature-icon i {
        font-size: 28px;
    }
    
    .feature-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .feature-card p {
        font-size: 14px;
        -webkit-line-clamp: 6;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .features-section .container {
        padding: 0 20px;
    }
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(to bottom, var(--midgreen), var(--darkgreen));
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, var(--midgreen), rgba(48, 73, 53, 0));
    z-index: 1;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.contact-container .section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 50px;
    color: var(--whitedarkgreen);
    font-weight: 300;
    letter-spacing: 1px;
    position: relative;
}

.contact-container .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: var(--green);
}

.contact-subtitle {
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    color: var(--whitegreen);
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.contact-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.contact-left {
    flex: 1;
    min-width: 300px;
}

.contact-right {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--green);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--whitedarkgreen);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: var(--whitedarkgreen);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--green);
    background-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(40, 235, 132, 0.2);
}

.form-control::placeholder {
    color: rgba(212, 242, 224, 0.5);
}

textarea.form-control {
    height: 150px;
    resize: vertical;
    min-height: 150px;
    max-height: 300px;
}

.submit-btn {
    width: 100%;
    background: var(--green);
    color: var(--midgreen);
    font-weight: 600;
    padding: 14px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(40, 235, 132, 0.3);
    font-size: 1rem;
    filter: none;
    margin-top: 10px;
}

.submit-btn:hover {
    background: var(--greenselected);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(40, 235, 132, 0.4);
}

.submit-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 5px rgba(40, 235, 132, 0.3);
}

.contact-info-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 40px;
    height: 100%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.contact-info-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--green);
}

.contact-map {
    border-radius: 10px;
    overflow: hidden;
    height: 200px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: auto;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--midgreen), var(--green));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.contact-icon i {
    color: white;
    font-size: 18px;
    margin: 0;
}

.contact-text {
    color: var(--whitegreen);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-text a {
    color: var(--whitedarkgreen);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.contact-text a:hover {
    color: var(--green);
}

/* Social Media Icons */
.social-media {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    transform: translateY(-5px);
    background: var(--green);
}

.social-icon img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
}

/* Footer */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 70px;
    padding-top: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--whitegreen);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: var(--whitedarkgreen);
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--green);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.copyright {
    color: var(--white);
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-flex {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .contact-info-box {
        padding: 25px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
    }
}

.image-slider {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 50px auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.slider-container {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 600px;
}

.slider-image {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.05);
    filter: brightness(0.8);
}

.slider-image.active {
    opacity: 1;
    transform: scale(1);
    filter: brightness(1);
}

.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 300px;
    z-index: 3;
}

.slider-backdrop {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    z-index: -1;
}

.slider-buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 10px 20px;
}

.slider-button {
    background: transparent;
    border: 2px solid var(--whitedarkgreen);
    width: 45px;
    height: 45px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--whitedarkgreen);
    font-size: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.slider-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--whitedarkgreen);
    transition: all 0.3s ease;
    z-index: -1;
}

.slider-button:hover {
    color: var(--midgreen);
}

.slider-button:hover::before {
    left: 0;
}

.slider-progress {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    overflow: hidden;
    position: relative;
}

.progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--whitedarkgreen);
    width: 0%;
    transition: width 0.3s linear;
}

.slider-dots {
    display: none;
}

@media (max-width: 768px) {
    .slider-controls {
        bottom: 30px;
        width: 85%;
    }
    
    .slider-button {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .slider-controls {
        bottom: 25px;
        width: 90%;
    }
    
    .slider-button {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

.slider-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(to bottom, var(--darkgreen), var(--midgreen));
    z-index: 1;
}

.slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--darkgreen), rgba(68, 102, 75, 0));
    z-index: 1;
}

.image-slider {
    position: relative;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.slider-container {
    position: relative;
    height: 80vh;
    max-height: 800px;
    min-height: 500px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
    transition: opacity 0.6s ease;
}

.slider-image.active,
.slide.active .slider-image {
    opacity: 1;
}

.slide-content {
    position: absolute;
    bottom: 160px;
    left: 50px;
    color: var(--whitedarkgreen);
    z-index: 10;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    transition-delay: 0.3s;
    max-width: 60%;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
    pointer-events: none;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: left;
}

.slide-content p {
    font-size: 1.1rem;
    max-width: 500px;
    line-height: 1.6;
    color: var(--whitegreen);
}

.slider-navigation {
    position: absolute;
    bottom: 50px;
    left: 50px;
    right: 50px;
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-button {
    background: var(--midgreen);
    border: 2px solid var(--whitedarkgreen);
    width: 56px;
    height: 56px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    margin: 0 10px;
    z-index: 20;
}

.nav-button:active {
    transform: none;
}

.nav-button:hover {
    background: var(--whitedarkgreen);
}

.nav-button:hover .nav-arrow {
    border-color: var(--midgreen);
}

.nav-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    border-right: 3px solid var(--whitedarkgreen);
    border-bottom: 3px solid var(--whitedarkgreen);
    transition: all 0.3s ease;
}

.nav-button.prev .nav-arrow {
    transform: translate(-30%, -50%) rotate(135deg);
}

.nav-button.next .nav-arrow {
    transform: translate(-70%, -50%) rotate(-45deg);
}

.slide-counter {
    font-family: 'Poppins', sans-serif;
    color: var(--whitedarkgreen);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
    min-width: 80px;
}

.current {
    font-size: 1.8rem;
    font-weight: 600;
}

.separator {
    opacity: 0.5;
}

.progress-container {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
}

.progress-bar {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--whitedarkgreen);
    transition: width 0.3s linear;
}

@media (max-width: 1024px) {
    .slider-container {
        height: 70vh;
    }

    .slide-content {
        left: 30px;
        bottom: 100px;
    }

    .slide-content h3 {
        font-size: 2rem;
    }

    .slider-navigation {
        left: 30px;
        right: 30px;
        bottom: 30px;
    }
}

@media (max-width: 768px) {
    .slider-container {
        height: 60vh;
        min-height: 400px;
    }

    .slide-content {
        bottom: 120px;
        left: 20px;
        max-width: 80%;
    }

    .slide-content h3 {
        font-size: 1.8rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .slider-navigation {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .nav-button {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 480px) {
    .slider-container {
        height: 50vh;
        min-height: 300px;
    }

    .slide-content h3 {
        font-size: 1.5rem;
    }

    .nav-controls {
        gap: 15px;
    }

    .nav-button {
        width: 40px;
        height: 40px;
    }

    .slide-counter {
        font-size: 1rem;
    }

    .current {
        font-size: 1.4rem;
    }
}

/* Fullscreen Button */
.fullscreen-button {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: transparent;
    color: white;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    z-index: 100;
    border: none;
    box-shadow: none;
}

.slide:hover .fullscreen-button {
    opacity: 1;
}

.fullscreen-button:hover {
    background-color: transparent;
    transform: scale(1.2);
    box-shadow: none;
}

.fullscreen-button i {
    font-size: 24px;
    color: white;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}

/* Fullscreen Modal */
.fullscreen-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    overflow: hidden;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1400px;
    margin: 40px auto;
    text-align: center;
    height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: var(--whitedarkgreen);
    font-size: 45px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
}

.close-modal:hover {
    color: white;
    background-color: var(--midgreen);
    transform: rotate(90deg);
}

#fullscreen-image {
    width: auto;
    max-width: 100%;
    max-height: 85vh;
    display: block;
    margin: 0 auto;
    border: none;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    object-fit: contain;
    transition: transform 0.5s ease;
    transform: scale(0.9);
}

#fullscreen-title {
    color: white;
    margin-top: 20px;
    font-size: 28px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
}

.fullscreen-modal nav {
    display: none !important;
}

/* Fullscreen Navigation Controls */
.fullscreen-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    transform: translateY(-50%);
    z-index: 10002;
}

.fullscreen-nav-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(68, 102, 75, 0.8);
    border: 2px solid var(--whitedarkgreen);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.fullscreen-nav-button:hover {
    background-color: var(--midgreen);
    transform: scale(1.1);
}

.fullscreen-nav-button i {
    font-size: 24px;
    color: white;
    margin: 0;
}

@media (max-width: 768px) {
    .fullscreen-button {
        width: 40px;
        height: 40px;
        top: 10px;
        right: 10px;
    }
    
    .fullscreen-button i {
        font-size: 18px;
        text-shadow: 0 0 4px rgba(0, 0, 0, 1);
    }
    
    .modal-content {
        width: 95%;
        margin: 20px auto;
    }
    
    #fullscreen-title {
        font-size: 20px;
    }
    
    .close-modal {
        top: 10px;
        right: 20px;
        font-size: 35px;
        width: 50px;
        height: 50px;
    }
    
    .fullscreen-nav {
        padding: 0 20px;
    }
    
    .fullscreen-nav-button {
        width: 45px;
        height: 45px;
    }
    
    .fullscreen-nav-button i {
        font-size: 20px;
    }
}

/* Responsive Medienabfragen für Über Mich und Service */
@media (max-width: 1024px) {
  .ubermich-container, .service-container {
    padding: 0 20px;
  }
  
  .heading {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 40px;
  }
  
  .desc-box {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .ubermich-section, .service-section {
    padding: 60px 0;
  }
  
  .ubermich-section::before, .service-section::before {
    height: 60px;
  }
  
  .ubermich-box {
    gap: 40px;
  }
  
  .img-box {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }
  
  .desc-box {
    width: 100%;
    padding: 30px;
    text-align: center;
  }
  
  .desc-box .desc-text {
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
  }
  
  .desc-buttons {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
  }
  
  .desc-buttons button {
    padding: 12px 25px;
    font-size: 0.95rem;
    min-width: 200px;
  }
  
  .social-links {
    margin-top: 10px;
    justify-content: center;
  }
  
  #faq-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  
  .faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  
  .faq-answer p {
    padding: 15px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .ubermich-section, .service-section {
    padding: 50px 0 30px;
  }
  
  .section-title, .heading {
    font-size: clamp(1.6rem, 5vw, 2rem);
    margin-bottom: 30px;
  }
  
  .heading:after, .section-title::after {
    width: 60px;
    bottom: -10px;
  }
  
  .ubermich-box {
    gap: 25px;
  }
  
  .desc-box {
    padding: 25px 20px;
  }
  
  .desc-box h3 {
    font-size: 20px;
  }
  
  .desc-box i {
    font-size: 28px;
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }
  
  .desc-box .desc-text {
    margin-bottom: 20px;
    font-size: 0.95rem;
  }
  
  .desc-buttons {
    gap: 15px;
  }
  
  .desc-buttons button {
    padding: 10px 20px;
    min-width: 180px;
    font-size: 0.9rem;
  }
  
  .img-box {
    max-width: 280px;
  }
  
  .social-links a {
    width: 40px;
    height: 40px;
  }
  
  .social-links img {
    width: 18px;
    height: 18px;
  }
}

.desc-box h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: var(--whitedarkgreen);
  text-align: center;
  transition: all 0.3s ease;
}

.ubermich-section .section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
  margin-bottom: 50px;
  color: var(--whitedarkgreen);
  font-weight: 300;
  letter-spacing: 1px;
  position: relative;
}

.ubermich-section .section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background-color: var(--green);
}

.contact-item:hover .contact-icon {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 8px 20px rgba(40, 235, 132, 0.3);
}

#faq,
#faq *,
.service-section #faq-title,
.service-section .faq-question,
.service-section .faq-answer p {
  text-shadow: none !important;
}

.faq-question {
  width: 100%;
  background-color: transparent;
  border: none;
  padding: 20px 25px;
  text-align: left;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--whitedarkgreen);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

#faq-title {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  text-align: center;
  color: var(--whitedarkgreen);
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 1px;
}

.no-text-shadow,
.no-text-shadow * {
  text-shadow: none !important;
  filter: none !important;
}

/* Section Divider mit angepasster Höhe */
.section-divider {
  height: 60px;
  background-color: transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin: 0;
  padding: 0;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  z-index: 2;
}

.section-divider::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  z-index: 2;
}

.divider-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.divider-line {
  height: 1px;
  width: 40%;
  max-width: 400px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), var(--green), rgba(255, 255, 255, 0));
}

.divider-icon {
  margin: 0 20px;
  color: var(--green);
  font-size: 20px;
  filter: drop-shadow(0 0 5px rgba(40, 235, 132, 0.3));
}

@media (max-width: 768px) {
  .section-divider {
    height: 60px;
  }
  
  .divider-line {
    width: 30%;
  }
  
  .divider-icon {
    font-size: 16px;
    margin: 0 15px;
  }
}

@media (max-width: 480px) {
  .section-divider {
    height: 50px;
  }
  
  .divider-line {
    width: 25%;
  }
  
  .divider-icon {
    font-size: 14px;
    margin: 0 10px;
  }
}

/* Responsiv für kleinere Bildschirme */
@media (max-height: 800px) {
  header {
    min-height: 85vh;
    margin-top: 50px;
    padding-bottom: 15px;
  }
  
  .header-content {
    gap: 10px;
  }
  
  h1 {
    font-size: clamp(3rem, 9vw, 7rem);
  }
  
  .small {
    font-size: clamp(1.5rem, 8vw, 5rem);
    margin: -10px 0;
  }
  
  .alex {
    font-size: clamp(2.2rem, 9vw, 6rem);
  }
  
  header img {
    width: clamp(100px, 15vw, 200px);
    margin: 0 0 5px 0;
  }
  
  .landing-desc {
    padding: 20px;
    margin: 5px auto;
  }
}

/* Scroll-Animation Styles */
.fade-in-element {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-element.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Aktiver Navigationspunkt hervorheben */
nav a.active::after {
  content: "";
  position: absolute;
  display: block;
  top: 70%;
  width: 70%;
  height: 2px;
  background: var(--green);
  opacity: 1;
  transition: 0.3s;
  left: calc(50% - 35%);
}

/* Scroll-Progress-Balken */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(to right, var(--green), var(--greenselected));
  z-index: 9999;
  width: 0%;
  transition: width 0.2s ease;
  box-shadow: 0 0 10px rgba(40, 235, 132, 0.5);
}

@media (max-width: 768px) {
  .desc-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    text-align: center;
  }
  
  .desc-box i {
    margin: 0 auto 20px;
    width: 70px;
    height: 70px;
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .desc-box {
    padding: 25px 20px;
  }
  
  .desc-box h3 {
    font-size: 20px;
  }
  
  .desc-buttons button {
    padding: 10px 20px;
    min-width: 180px;
  }
  
  .img-box {
    max-width: 280px;
  }
  
  #faq {
    padding: 0 15px;
  }
  
  #faq-title {
    font-size: 1.6rem;
  }
  
  .faq-question {
    padding: 15px;
  }
  
  .faq-answer p {
    padding: 15px;
  }
}

/* Burger Menu für mobile Geräte */
.burger-menu {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    /* Entferne den Hintergrund */
    background-color: transparent;
    border-radius: 0;
    z-index: 1000;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all 0.3s ease;
    /* Entferne den Schatten */
    box-shadow: none;
    backdrop-filter: none;
}

.burger-menu:hover {
    transform: scale(1.05);
    /* Entferne den Hintergrund beim Hover */
    background-color: transparent;
}

.burger-line {
    width: 30px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
    transition: all 0.4s ease;
    border-radius: 2px;
}

.burger-menu.active {
    /* Entferne den Hintergrund im aktiven Zustand */
    background-color: transparent;
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-mid {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--darkgreen);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        flex-direction: column;
        padding: 100px 20px 20px;
        transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        z-index: 100;
        justify-content: flex-start;
        gap: 25px;
    }
    
    .nav-mid.active {
        right: 0;
    }
    
    .nav-mid li {
        width: 100%;
    }
    
    .nav-mid a {
        display: block;
        padding: 15px 0;
        width: 100%;
        text-align: center;
        height: auto;
    }
    
    .nav-mid a:after {
        display: none;
    }
    
    .circle {
        display: none;
    }
    
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
        backdrop-filter: blur(3px);
    }
    
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* Nach oben Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--green);
  color: var(--midgreen);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 98;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--greenselected);
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.back-to-top i {
  font-size: 22px;
  color: var(--darkgreen);
}

@media (max-width: 768px) {
  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }
  
  .back-to-top i {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .back-to-top {
    width: 40px;
    height: 40px;
    bottom: 15px;
    right: 15px;
  }
  
  .back-to-top i {
    font-size: 18px;
  }
}

/* Mobile Menü Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: rgba(43, 82, 65, 0.98);
    z-index: 999;
    transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    padding: 80px 0 40px;
    overflow-y: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    backdrop-filter: blur(10px);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    width: 100%;
    align-items: center;
}

.mobile-menu li {
    list-style: none;
    text-align: center;
    margin: 20px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: calc(0.05s * var(--i, 0));
    width: 80%;
}

.mobile-menu.active li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu a {
    display: block;
    font-size: 1.3rem;
    color: #fff;
    padding: 15px 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.mobile-menu a::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.mobile-menu a:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.mobile-menu a:hover::after {
    width: 40%;
}

.mobile-menu a.active {
    background-color: rgba(255, 255, 255, 0.25);
}

.mobile-menu a.active::after {
    width: 50%;
}

@media (min-width: 769px) {
    .mobile-menu {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-mid {
        display: none;
    }
    
    .burger-menu {
        display: block;
    }
}






