html{
    scroll-behavior: smooth;
}
*{
    margin: 0;
   padding: 0;  
  }
  
  body{
    height: 100%;
    background-color: rgb(42, 52, 61);
    color: white;
    font-family: sans-serif, Arial, Helvetica;
    box-sizing: border-box;
  }
  .navbar{
    background-color: rgb(42, 52, 61);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);;
    z-index: 1000;
    width: 100%;
    padding-top: 10px 20px;
}
.navbar img{
    width: 130px;
    margin-left: 50px;
}
.navbar ul{
    display: flex;
    gap: 80px;
    list-style: none;
}
.navbar a{
    display: inline-block;
    text-decoration: 0;
    font-size: 30px;
    color: white;
    margin-right: 80px;
    transition: transform 0.3s ease, color 0.3s ease;
}
.navbar a:hover{
    transform: scale(1.2);
}
.hamburger-menu{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
}
.hamburger-menu span{
    display: none;
    width: 100%;
    height: 4px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s;
}
.hamburger-menu.active span:nth-child(1){
    transform: rotate(45deg) translateY(6px);
}
.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-6px);
  }
.menu{
    display: flex; 
    flex-direction: row; 
    justify-content: flex-end;
    background-color: transparent;
    position: static; 
    width: auto;
    padding: 0;
}
.menu.active{
    display: block;
}
.startseite{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 100vh;
}
.startseite img{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
 }
.title{
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
 }
 .title h1, h2, p{
    color: #ffffff;
    text-align: center;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
 }
 .title h1{
    font-size: 5rem;
    font-weight: bold;
 }
 .title h2{
    font-size: 3rem;
    font-weight: normal;
 }
 .title p{
    font-size: 2rem;
    font-weight: 300;
 }
 .über-uns{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(180deg, #06488a 50%, #8198aa 100%);
 }
 .über-title{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 500px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    height: 100%;
    gap: 20px;
 }
 .über-title h2{
    margin-top: 80px;
    font-size: 3rem;
    font-weight: bold;
 }
 .über-uns p{
    font-size: 1.7rem;  
 }
 .über-uns h3{
    margin-top: 20px;
    font-size: 2.2rem;
 }
 .über-uns ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
 }
 .über-uns li{
    font-size: 1.5rem;
    list-style: none;
 }
 .leistungen{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    gap: 30px;
    background: linear-gradient(180deg, #06488a 50%, #8198aa 100%);
 }
 .gebäudereinigung{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 400px;
 }
 .gebäudereinigung h2{
    font-size: 2.5rem;
    margin-right: 50px;
 }
 .gebäudereinigung ul{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    text-align: start;
    gap: 10px;
 }
 .gebäudereinigung li{
    font-size: 1.7rem;
    list-style: none;
 }
 .hausmeisterservice{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 400px;
    margin-bottom: 70px;
 }
 .hausmeisterservice h2{
    font-size: 2.5rem;
    margin-left: 40px;
 }
 .hausmeisterservice ul{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    text-align: start;
    gap: 10px;
 }
 .hausmeisterservice li{
    font-size: 1.7rem;
    list-style: none;
 }
 .kontakt{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    gap: 50px;
    background: linear-gradient(180deg, #06488a 50%, #8198aa 100%);
}
.kontakt h2{
    font-size: 4rem;
}
.kontakt p{
    font-size: 2rem;
}
.kontakt strong{
    font-size: 2rem;
    margin-right: 10px;
}
.kontakt a{
    color: white;
    text-decoration: none;
    transition: 0.3s
}
.kontakt a:hover{
    color: #80868d;
}
.footer{
    display: flex;
    justify-content: center;
    align-items: center;
    height:60px;
}
.footer p{
    margin-left: 20px;
    font-size: 1.2rem;
}
.dat-imp{
    display: flex;
    gap: 40px;
    margin-right: 60px;
}
.dat-imp a{
    font-size: 1.2rem;
    text-decoration: none;
    color: white;
}
.datenschutz{
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}
.datenschutz a{
    color: white;
}
.impressum{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    margin: 10px;
    height: 100vh;
}
.impressum a{
    color: white;
}

@media(max-width:768px){
.hamburger-menu{
    display: flex;
    margin-right: 30px;
}
.hamburger-menu span{
    display: flex;
}
.menu{
    display: none;
    flex-direction: column;
    background-color: rgb(42, 52, 61);
   position: absolute;
   top: 100%;
   right: 0;
   width: 50%;
  padding: 1rem;
}
.menu.active{
    display: block;
}
.menu ul{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu ul li a{
    text-decoration: none;
    color: white;
    font-size: 1.3rem;
    transition: color 0.3s;
    
}
.startseite{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin-top: 40px;
}

.title{
    max-width: 400px;

}
.title h1{
    font-size: 3.5rem;
    margin: 0 20px;
}
.title h2{
    font-size: 2.7rem;
}
.title p{
    font-size: 2.5rem;
}
.über-title{
    display: flex;
    gap: 20px;
    margin: 0 30px;
}

.über-title h2{
    margin: 0;
}
.leistungen{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.leistungen h2{
    font-size: 2rem;
}
.gebäudereinigung{
    margin-top: 120px;
display: flex;
gap: 10px;
}

.gebäudereinigung ul{
    display: flex;
   margin-left: 40px;
    
}
.hausmeisterservice{
    display: flex;
    gap: 10px;
}
.hausmeisterservice h2{
    margin-right: 70px;
}
.navbar{
    height: 10vh;
}
.navbar img{
    width: 100px;
}

.kontakt p{
    font-size: 1.6rem;
    margin: 0 20px;
}
.kontakt a{
  font-size: 1.6rem;  
    
}
.kontakt strong{
    font-size: 1.6rem;
}
.impressum{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    gap: 20px;
}
.datenschutz{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
}

@media(max-width:576px){
    
  .title h1{
      font-size: 3rem;
    }
    .title h2{
        font-size: 2rem;
    }
    .über-title{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        max-width: 400px;
    }
   .über-title h2{
    font-size: 2rem;
    margin-top: 10px;
   }
   .über-title h3{
    font-size: 1.7rem;
   }
   .über-title p{
    font-size: 1.3rem;
   }
  .über-title li{
    font-size: 1.3rem;
  }
 .leistungen{
    display: flex;
    justify-content: center;
    align-items: center;
 }
  .gebäudereinigung h2{
    font-size: 2rem;
  }
  .gebäudereinigung li{
    font-size: 1.3rem;
  }
  .hausmeisterservice h2{
    font-size: 2rem;
  }
  .hausmeisterservice li{
    font-size: 1.3rem;
    margin-right: 60px;
  }
  .kontakt h2{
    font-size: 2rem;
  }
  .kontakt strong{
    font-size: 1.3rem;
  }
  .kontakt p{
    font-size: 1.3rem;
  }
  .kontakt a{
    font-size: 1.3rem;
  }
}