/* Allgemeine Stile */
body {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  line-height: 1.8;
  color: #333;
  background: transparent;
  overflow-x: hidden; /* Verhindert horizontales Scrollen */
}

html {
  scroll-behavior: smooth;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
   /* Verhindert horizontale Scrollbars */
}

h1, h2, h3 {
  font-weight: 600;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.75rem;
  line-height: 1.4;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navbar */
nav {
  height: 60px; /* Höhe der Navbar */
  background: #fff; /* Vollständig weißer Hintergrund */
  position: fixed;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

  top: 0;

  width: 100%;
  z-index: 1000;
  transition: transform 0.3s ease;

}
/* Navbar beim Scrollen nach unten */
nav.hidden {
  
  transform: translateY(-100%); /* Navbar nach oben verschieben (verstecken) */
  box-shadow: none; 
 
}
/* Container für Navbar-Inhalt */
nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333; /* Dunkelgrau */
  text-decoration: none;
}


nav .nav-links {
  display: flex;
}
/* Navigationslinks */
nav .nav-links a {
  color: #333; /* Dunkelgrau */
  text-decoration: none;
  margin: 0 15px; /* Abstand zwischen den Links */
  font-weight: 600; /* Fette Schrift */
  transition: color 0.3s ease, transform 0.3s ease; /* Sanfter Farbübergang */
}



.nav-links a.active {
  color: #ff6f61; /* Rosa für den aktiven Link */
  border-bottom: 2px solid #ff6f61; /* Unterstreichung */
}
.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}



.section-home {
  position:relative;
  

 background-attachment:fixed;

  text-align: center;
  padding: 200px 0 100px;
  margin-top: 60px;
  overflow: hidden;
  width: 100vw; /* Breite auf 100% der Ansicht setzen */
 
  min-height: 100vh; /* Statt fester Höhe */
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-home .container {

  z-index: 2;
  color: #fff;
  max-width: 800px;
  padding: 0 20px;
}

.section-home h1 {
  font-size: 4rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  
}

.section-home p {
  font-size: 1.5rem;
  margin: 30px 0;


}

.btn-group-wrapper {
  display: inline-block;
/* Zentriert alles horizontal */
  margin-top: 40px; /* Abstand zum Text oben */
  position: relative;
}

.btn-group {
  display: flex;
  gap: 20px;
  justify-content: center;

}
.section-home .btn {
  
 
  background: #ff6f61;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;

  font-weight: 600;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  
}




@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-20px); }
  60% { transform: translateY(-10px); }
}

.scroll-indicator {
  
  position: absolute; /* Absolute Positionierung relativ zum Wrapper */
  bottom: -60px; /* Position unter den Buttons */
  left:47%; /* Horizontale Mitte */
  transform: translateX(-50%); /* Zentrierung */
  animation: bounce 2s infinite;
}

.scroll-indicator i {
  font-size: 2rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Animationen */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Dienstleistungen */
.section-services {
  padding: 100px 0;
  background: #fff;
}

.section-services h2 {
  text-align: center;
  margin-bottom: 40px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service-item {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.service-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.trust-badges {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.badges-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 20px 20px;
  background: rgba(255,255,255,0.95);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  
  margin: 15px;
}

.badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.badge i {
  font-size: 3rem; /* Größeres Icon */
  color: #ff6f61;
  margin-right: 15px;
  background: rgba(255,111,97,0.1);
  padding: 15px;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.badge:hover i {
  transform: scale(1.1);
}

.badge-text {
  text-align: left;
}

.badge h3 {
  margin: 0;
  font-size: 1.4rem;
  color: #2d2d2d;
  font-weight: 700;
}

.badge p {
  margin: 5px 0 0;
  color: #666;
  font-size: 0.95rem;
}

.badge i.fa-comments {
  background: rgba(66, 153, 225, 0.1);
  color: #4299e1; /* Blauton */
}

.badge i.fa-clipboard-check {
  background: rgba(72, 187, 120, 0.1);
  color: #48bb78; /* Grünton */
}

.badge i.fa-hand-holding-heart {
  background: rgba(237, 100, 166, 0.1);
  color: #ed64a6; /* Rosaton */
}
/* Kontakt */
.section-contact {
  padding: 100px 0;
  background: #fff;
}

.section-contact h2 {
  text-align: center;
  margin-bottom: 40px;
}
/* Kontaktinformationen */
.contact-info {
  display: flex;
  justify-content: center;
  gap: 40px; /* Abstand zwischen den Info-Items */
  flex-wrap: wrap;
  margin-bottom: 60px; /* Abstand zum Formular */
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px; /* Abstand zwischen Icon und Text */
  background: #fff;
  padding: 20px 25px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.info-item i {
  font-size: 1.5rem;
  color: #ff6f61; /* Akzentfarbe für Icons */
}

.info-item p {
  margin: 0;
  font-size: 1rem;
  color: #333;
}



.info-item a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-item a:hover {
  color: #ff6f61; /* Akzentfarbe beim Hover */
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #ff6f61;
  box-shadow: 0 0 8px rgba(255, 111, 97, 0.3);
  outline: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form .btn {
  width: 100%;
  padding: 12px;
  background: #ff6f61;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
}



/* Status-Panel */
/* Status-Panel */
.status-panel {
  position: fixed;
  left: 50%; /* Zentriert horizontal */
  bottom: 50px; /* Abstand vom unteren Rand */
  transform: translateX(-50%);
  background: #4caf50; /* Grün für Erfolg */
  color: white;
  padding: 10px 20px; /* Innenabstand */
  border-radius: 10px; /* Abgerundete Ecken */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Schatten */
  text-align: center;
  min-width: 200px; /* Mindestbreite */
  max-width: 300px; /* Maximale Breite */
  font-size: 1rem;
  z-index: 1000; /* Über allem anzeigen */
  display: flex; /* Zentriere den Text und den Button */
  justify-content: center;
  align-items: center;
}

.status-panel.error {
  background: #f44336; /* Rot für Fehler */
}

.status-panel .close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  margin-left: 10px;
}
textarea {
  resize: none;
  overflow: hidden;
}

/* Entfernt den Resize-Handler in Chrome */
textarea::-webkit-resizer {
  display: none;
}

textarea:focus {
  border-color: #ff6f61;
  box-shadow: 0 0 8px rgba(255, 111, 97, 0.3);
  outline: none;
}
.close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  margin-left: 20px;
}
form {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 0 auto;
}

.form-group input, 
.form-group textarea {
  border: 2px solid #e0e0e0;
  padding: 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #ff6f61;
  box-shadow: 0 4px 15px rgba(255,111,97,0.2);
}

form button {
  padding: 12px;
  background: #ff6f61;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

/*
.form-loader {
  width: 25px;
  height: 25px;
  border: 3px solid #fff;
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.5s;
  margin: 15px auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
*/


.logo {
  font-size: 1.5rem; /* Logo-Größe */
  font-weight: bold;
  text-decoration: none;
  color: #000;
  white-space: nowrap; /* Verhindert Umbrüche */
}

/* Logo-Stil */





/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background: #ff6f61;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}







/* Footer */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

footer p {
  margin: 0;
}

footer .social-media a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
}

footer .social-media a:hover {
  color: #ff6f61;
}

.menu-toggle {
  display: none; /* Standardmäßig ausblenden */
  font-size: 1.5rem;
  cursor: pointer;
}


.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255,111,97,0.3), rgba(0,0,0,0.6));
  z-index: 0;
}




.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  transition: all 0.3s ease;
}



@media only screen and (max-device-width: 768px) and (min-width:769px) {
  /* Deine Anpassungen für mobile Geräte, auch im Desktop-Modus */

  .section-home {
    /* Beispiel: Bei mobilen Geräten soll das fixed Background-Image nicht fixiert sein */
    background-attachment: scroll;
    width:110vw;
    /* Eventuell weitere Anpassungen, damit dein Layout korrekt dargestellt wird */
  }
  
  /* Weitere Styles, die du speziell für mobile Geräte anwenden möchtest */
}

/* Mobile-Geräte: Hover deaktivieren, Active-State stylen */
@media (hover: hover) and (pointer:fine) {
  .btn:hover {
    background: #ff4a3d;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    
  }
  .contact-form .btn:hover {
    background: #ff4a3d;
    transform: translateY(-2px);
  }
  .section-home .btn:hover {
    background: #ff4a3d;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px); /* Leichter Hover-Effekt */
  }

  .btn-outline:hover {
    background: #fff;
    color: #ff6f61;
  
  }
  form button:hover {
    background: #ff4a3d;
  }
  

  .button:active {
    background: #ff4a3d; /* Tap-Feedback */
    filter: brightness(0.9);
  }
}

/* Responsive Design */
@media (min-width:320px) and (max-width: 374px) {

  .nav-links {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 250px;
    background: rgba(255, 255, 255, 0.95);
    height: calc(100vh - 60px);
    flex-direction: column;

    padding: 20px;
    transition: left 0.3s ease;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  nav .logo {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333; /* Dunkelgrau */
    text-decoration: none;
  }
  

  .nav-links.active {
    left: 0;

  }
  nav .menu-toggle {
    display: block; /* Hamburger-Menü anzeigen */
    font-size: 1.5rem;
    cursor: pointer;
  }

  .section-home {
 
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    width:120vw;
   
    align-items: flex-start; 
    padding: 60px 20px 40px;
    
  }

  .section-home h1 {
    font-size: 10vw; /* Größere Schrift für kleine Bildschirme */
    
  }

  .section-home p {
    font-size: 5vw; /* Größere Schrift für kleine Bildschirme */
  }

  .btn-group {
    flex-direction: column; /* Buttons untereinander auf mobilen Geräten */
    gap: 15px;
  }

  .btn-group .btn {
    width: 100%; /* Buttons nehmen die volle Breite ein */
  }

  .scroll-indicator {
    bottom: -60px; /* Weniger Abstand auf mobilen Geräten */
    left:48%;
  }

  .scroll-indicator i {
    font-size: 1.5rem; /* Kleinere Größe für mobile Geräte */
  }
  .overlay {
    display: none; /* Standardmäßig ausblenden */
    position: fixed;
    top: 60px; /* Beginnt unterhalb der Navbar */
    left: 0;
    width: 100%;
    height: calc(100vh - 60px); /* Deckt den gesamten Bildschirm ab, außer der Navbar */
    background: rgba(0, 0, 0, 0.5); /* Halbtransparenter schwarzer Hintergrund */
    z-index: 999; /* Über dem Seiteninhalt, aber unter der Sidebar */
    transition: opacity 0.3s ease; /* Sanfter Übergang */
  }
  
  .overlay.active {
    display: block; /* Overlay anzeigen, wenn die Sidebar geöffnet ist */
  }

.section-services
{
  width:118vw;
}
  /* Service-Items für bessere Darstellung */
  .service-list {
    grid-template-columns: 1fr; /* Eine Spalte */
    gap: 20px;
  }

  .service-item {
    flex: 1 1 100%;
    margin: 10px 0;
  }

  .trust-badges {
    background: #fff;
    padding: 80px 20px;
    text-align: center;
    box-shadow: 0 0px 0px rgba(0,0,0,0.1);
    width:118vw;
    
  }

  /* Trust Badges zentrieren */
  .trust-badges .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .section-contact {
    width:118vw;
  }

  /* Footer anpassen */
  footer {
    text-align: center;
    padding: 20px 10px;
    width:118vw;
  }




  .logo {
    text-align: center; /* Zentriere das Logo */
    font-size: 5vw;
    width: 100%; /* Logo füllt die volle Breite */
  }

}

/* Responsive Design */
@media (min-width:375px) and (max-width: 424px) {

  .nav-links {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 250px;
    background: rgba(255, 255, 255, 0.95);
    height: calc(100vh - 60px);
    flex-direction: column;

    padding: 20px;
    transition: left 0.3s ease;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  nav .logo {
    font-size: 1.4rem;
    font-weight: bold;
    color: #333; /* Dunkelgrau */
    text-decoration: none;
  }
  

  .nav-links.active {
    left: 0;

  }
  nav .menu-toggle {
    display: block; /* Hamburger-Menü anzeigen */
    font-size: 1.5rem;
    cursor: pointer;
  }

  .section-home {
 
    background-size: cover;
    background-position: center;
    background-attachment: scroll;

    align-items: flex-start; 
    padding: 60px 20px 40px;
  }

  .section-home h1 {
    font-size: 10vw; /* Größere Schrift für kleine Bildschirme */
    
  }

  .section-home p {
    font-size: 5vw; /* Größere Schrift für kleine Bildschirme */
  }

  .btn-group {
    flex-direction: column; /* Buttons untereinander auf mobilen Geräten */
    gap: 15px;
  }

  .btn-group .btn {
    width: 100%; /* Buttons nehmen die volle Breite ein */
  }

  .scroll-indicator {
    bottom: -60px; /* Weniger Abstand auf mobilen Geräten */
    left:48%;
  }

  .scroll-indicator i {
    font-size: 1.5rem; /* Kleinere Größe für mobile Geräte */
  }
  .overlay {
    display: none; /* Standardmäßig ausblenden */
    position: fixed;
    top: 60px; /* Beginnt unterhalb der Navbar */
    left: 0;
    width: 100%;
    height: calc(100vh - 60px); /* Deckt den gesamten Bildschirm ab, außer der Navbar */
    background: rgba(0, 0, 0, 0.5); /* Halbtransparenter schwarzer Hintergrund */
    z-index: 999; /* Über dem Seiteninhalt, aber unter der Sidebar */
    transition: opacity 0.3s ease; /* Sanfter Übergang */
  }
  
  .overlay.active {
    display: block; /* Overlay anzeigen, wenn die Sidebar geöffnet ist */
  }


  /* Service-Items für bessere Darstellung */
  .service-list {
    grid-template-columns: 1fr; /* Eine Spalte */
    gap: 20px;
  }

  .service-item {
    flex: 1 1 100%;
    margin: 10px 0;
  }

  /* Trust Badges zentrieren */
  .trust-badges .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }



  /* Footer anpassen */
  footer {
    text-align: center;
    padding: 20px 10px;
  }




  .logo {
    text-align: center; /* Zentriere das Logo */
    font-size: 5vw;
    width: 100%; /* Logo füllt die volle Breite */
  }

}



/* Responsive Design */
@media (min-width:425px) and (max-width: 768px) {

  .nav-links {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 250px;
    background: rgba(255, 255, 255, 0.95);
    height: calc(100vh - 60px);
    flex-direction: column;
    padding: 20px;
    transition: left 0.3s ease;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-links.active {
    left: 0;

  }
  nav .menu-toggle {
    display: block; /* Hamburger-Menü anzeigen */
    font-size: 1.5rem;
    cursor: pointer;
  }

  .section-home {
 
    background-size: cover;
    background-position: center;
    background-attachment: scroll;

    align-items: flex-start; 
    padding: 60px 20px 40px;
  }

  .section-home h1 {
    font-size: 10vw; /* Größere Schrift für kleine Bildschirme */
    
  }

  .section-home p {
    font-size: 5vw; /* Größere Schrift für kleine Bildschirme */
  }

  .btn-group {
    flex-direction: column; /* Buttons untereinander auf mobilen Geräten */
    gap: 15px;
  }

  .btn-group .btn {
    width: 100%; /* Buttons nehmen die volle Breite ein */
  }

  .scroll-indicator {
    bottom: -60px; /* Weniger Abstand auf mobilen Geräten */
    left:48%;
  }

  .scroll-indicator i {
    font-size: 1.5rem; /* Kleinere Größe für mobile Geräte */
  }
  .overlay {
    display: none; /* Standardmäßig ausblenden */
    position: fixed;
    top: 60px; /* Beginnt unterhalb der Navbar */
    left: 0;
    width: 100%;
    height: calc(100vh - 60px); /* Deckt den gesamten Bildschirm ab, außer der Navbar */
    background: rgba(0, 0, 0, 0.5); /* Halbtransparenter schwarzer Hintergrund */
    z-index: 999; /* Über dem Seiteninhalt, aber unter der Sidebar */
    transition: opacity 0.3s ease; /* Sanfter Übergang */
  }
  
  .overlay.active {
    display: block; /* Overlay anzeigen, wenn die Sidebar geöffnet ist */
  }


  /* Service-Items für bessere Darstellung */
  .service-list {
    grid-template-columns: 1fr; /* Eine Spalte */
    gap: 20px;
  }

  .service-item {
    flex: 1 1 100%;
    margin: 10px 0;
  }

  /* Trust Badges zentrieren */
  .trust-badges .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }



  /* Footer anpassen */
  footer {
    text-align: center;
    padding: 20px 10px;
  }




  .logo {
    text-align: center; /* Zentriere das Logo */
    font-size: 5vw;
    width: 100%; /* Logo füllt die volle Breite */
  }

}
