*{
    padding: 0;
    margin: 0;
    font-family: 'Poppins',sans-serif;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

body{
    background: black;
    z-index: -2;
}



.topbar{
    height: 30px;
    background: #ed7821;
    width: 100%;
}

.topbar .text{
    color: white;
    height: 100%;
    display: flex;
    align-items: center;
    margin-left: 85px;
}

.topbar .text p,a{
    padding-right: 50px;
    color: white;
}

.topbar .text i{
    padding-right: 5px;
}

.topbar, header{
    position: fixed;
    z-index: 999;
}

header{
    margin-top: 26px;
}
#Startseite{
    background: url(Bilder/Dunkel.png) center center / cover no-repeat;;
    min-height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

header{
    width: 100%;
    height: 70px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 75px;
}

.logo{
    font-size: 24px;
    font-weight: bold;
    color: black;
    text-transform: uppercase;
    align-items: center;
}

.logocontainer{
    display: flex;
    align-items: center;
    margin-left: -25px;
    gap: -4px;
}

.hamburger{
    display: none;
}

.navbar ul{
    display: flex;
}


.navbar ul li a{
    display: block;
    color: black;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 50px;
    transition: .5s;
    margin: 0 5px;
    text-wrap: none;
    text-wrap-mode: nowrap;
}


.navbar ul li a:hover{
    color: white;
    background-color: #ed7821;
}

.navbar ul li a.active{
    color: rgb(237, 120, 33);
}

.navbar ul li a.active:hover{
    color: white;
}

.brandbar {
    width: 100%;
    padding: 5px 0;
    background-color: black;
    position: fixed;
    top: 95px; /* 30px Topbar + 70px Header */
    z-index: 998;
  }
  
  .brandbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 100px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    color: #ffffffa3;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
  }
  
  .brandbar-inner span {
    white-space: nowrap;
  }
  
  /* Responsive */
  @media (max-width: 900px) {
    .brandbar-inner {
      padding: 0 20px;
      justify-content: center;
      text-align: center;
      gap: 15px;
    }

    .brandbar{
        background-color: black;
    }
  }

  .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
    position: relative;
    z-index: 1;
  }
  
  .textlinks {
    color: white;
    text-transform: uppercase;
    font-size: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 100%;
    margin: 0 auto;
    padding-top: 75px;
    margin-bottom: 100px;
    margin-top: 50px;
  }
  
  .textlinks h1,
  .textlinks h2 {
    font-size: 2rem;
    line-height: 1.3;
    padding: 4px 0;
  }
  
  .textlinks span {
    color: #ed7821;
  }
  
  .textlinks .Stapler {
    font-size: 24px;
    background: #ed7821;
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    margin-top: 20px;
    transition: 0.5s;
    font-weight: 600;
    text-transform: none;
    display: inline-block;
    width: fit-content;
    max-width: 100%;
  }
  
  .textlinks .Stapler:hover {
    transform: scale(1.1);
    color: #ed7821;
    background: white;
  }

  .container-bottom {

    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
  }
  
  .text-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    width: 120%;
    max-width: 1000px;
    gap: 25px;
  }
  
  .text-bottom .item {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    min-width: 200px;
  }
  
  .text-bottom .item span {
    color: white;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
  }
  
  .text-bottom i {
    color: #ed7821;
    font-size: 40px;
    margin-right: 8px;
  }
  
  .text-bottom p {
    margin: 0;
    color: white;
    font-weight: 500;
    font-size: 30px;
    flex-wrap: nowrap;
  }


#about{
    background: url(Bilder/Dunkel.png) center center / cover no-repeat;
    min-height: 100vh;
    height: auto;
    z-index: -1;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
    z-index: 1;
}

#about::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  z-index: -1;
}


.about {
  width: 100%;
  min-height: 100vh;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about .content img{
    height: 500px;
    max-width: 100%;
    border: #ed7821 5px solid;
}

.about .content .text{
    width: 750px;
    max-width: 100%;
    padding: 0 10px;
    text-align: center;
}

.about .content{
    width: 1280px;
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    padding-top: 5%;
}

.about .content .text h1{
    color: white;
    font-size: 55px;
    margin-bottom: 6px;
    text-transform: capitalize;
}

.about .content .text h5{
    color: #ed7821;
    font-size: 25px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.about .button {
    background-color: #ed7821;
    color: white;
    border: transparent 2px solid;
    text-decoration: none;
    padding: 12px 35px;
    border-radius: 30px;
    font-size: 19px;
    font-weight: bold;
    display: inline-block;
    transition: 0.5s ease;
}

.about .button:hover{
    transform: scale(1.1);
}


.about .content .text p{
    color: white;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 1px;
    margin-bottom: 35px;
}




#service{
    width: 100%;
    min-height: 100vh;
    height: 100%;
}



#service{
    background: url(Bilder/Dunkel.png) center center / cover no-repeat;
    height: auto;
    min-height: 100vh;
    z-index: -1;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    padding-bottom: 0;
    z-index: 1;
}


#service::before{
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
backdrop-filter: blur(5px);
z-index: -1;
}



#service h1{
    color: white;
    font-size: 40px;
    text-align: center;
    margin-bottom: 35px;
    padding-top: 130px;
}

#service i{
    font-size: 35px;
    margin-bottom: 5px;
}


#service .container-service .row{
    display: flex;
    display: -ms-flexbox;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.item{
    padding-left: 25px;
    padding-right: 25px;
    display: flex;
    display: -ms-flexbox;
    max-width: 50%;
    flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    color: white;
    text-align: center;
    margin-bottom: 35px;
}

.box{
    border: 1px solid rgba(37,36,36,0.2);
    position: relative;
    height: 350px;
    width: 100%;
}

.box h3{
    color: #ed7821;
}

.box .inner p{
    font-size: .9rem;
    line-height: 22px;
    opacity: .8;
}

.box .inner .icon{
    height: 60px;
    width: 60px;
    display: block;
    margin: 0 auto 5px auto;
}

.box .inner{
    background-color: rgba(0,0,0,0.25);
    height: 100%;
}

.box::before{
    content: '';
    position: absolute;
    border-left: 3px solid #ed7821;
    border-top: 3px solid #ed7821;
    top: 0;
    left: 0;
    width: 50px;
    height: 30px;
}


.box::after{
    content: '';
    position: absolute;
    border-right: 3px solid #ed7821;
    border-bottom: 3px solid #ed7821;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 30px;
}

#service .box .inner{
    padding: 30px;
    transition: all 0.4s ease;
}

#service .box .inner .icon{
    transition: 0.5s ease;
}

#service .box .inner:hover{
    background-color: rgba(254, 225, 216, 0.1);
}

#service .box .inner:hover .icon{
  transform: scale(1.2);
}


@media only screen and (max-width: 1320px) {
    header{
        padding: 0 50px;
    }

    #contact .background{
        height: 115%;
    }
}

@media only screen and (max-width: 1320px) {
    .TOP .topbar .text {
        margin-left: 50px;
    }
    header .logo{
        font-size: 22px;
    }

    header .navbar ul li a{
        font-size: 14px;
    }

   #contact{
    padding-top: 55px;
   }
}

@media only screen and (max-width: 1180px) {
    header {
        padding: 0 20px;
    }

    .about{
        width: 100%;
        height: auto;
        padding: 100px 0px;
    }


    .item{
        max-width: 50%;
        flex: 0 0 50%;
        -ms-flex: 0 0 50%;
    }

    .box{
      height: 400px;
    }

  
    
}

@media only screen and (max-width: 1180px) {
    .TOP .topbar .text {
        margin-left: 20px;
        font-size: 12px;
    }
  }

@media only screen and (max-width: 1050px) {
    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger .line{
        width: 30px;
        height: 3px;
        background: black;
        margin: 6px 0;
    }

    header .navbar {
        position: absolute;
        height: 0;
        top: 70px;
        left: 0;
        right: 0;
        width: 100vw;
        background: rgba(0,0,0,0.99);
        color: #ed7821;
        transition: 0.2s;
        overflow: hidden;
    }

    .navbar.active{
        height: 480px
    }

    .navbar ul {
        display: block;
        width: fit-content;
        margin: 80px auto 0 auto;
        text-align: center;
        transition: 0.5s;
        opacity: 0;
    }
    .navbar.active ul{
        opacity: 1;
    }

    .navbar ul li a{
        color: white;
        margin-bottom: 12px;
    }


    header .logo{
        font-size: 18px;
    }

    .topbar{
        display: none;
    }

    header{
        margin-top: 0
        ;
    }

    header .navbar ul li a{
        font-size: 22px;
    }

    .brandbar{
        margin-top: -26px;
    }


    #contact .background{
        height: 125%;
        background-position: center center;
       }
    
       #about .background{
        height: 125%;
        background-position: center center;
       }

       #service .background{
        height: 125%;
        background-position: center center;
       }

}

@media only screen and (max-width: 770px) {
    
    .about .content img{
        margin-bottom: 10px;
    }
    .about .content .text h1{
        font-size: 40px;
        margin-bottom: 10px;
    }

    .item{
       
        max-width: 100%;
        flex: 0 0 100%;
        -ms-flex: 0 0 100%;   
    }
  
    .item .inner{
      background: rgba(133, 133, 133, 0.175);
    }

  
   #contact .background{
    background: black;

   }

   #about .background{
    background: black;
    
   }

   #service .background{
    background: black;
  
   }
    }

    @media (max-width:991px){
       #contact{
        padding-top: 100px;
       }
        
        .container2{
            flex-direction: column;
        }
        .container2 .contactInfo,
        .contactForm{
            margin-bottom: 40px;
            width: 100%;
        }

    }

    /* ===== Formular-Sektion (Langhans Style) ===== */
#contact{
    background: url(Bilder/Dunkel.png) center center / cover no-repeat;
    min-height: 100vh;
    height: auto;
    position: relative;
    overflow: hidden;
    z-index: 1;
}


#contact::before{
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
backdrop-filter: blur(5px);
z-index: -1;
}


.stapler-suchformular {
    padding: 30px 10px;
    font-family: 'Poppins', sans-serif;
    color: #222;
    max-width: 1150px;
    margin: 0 auto;
    overflow-x: hidden;
    padding-top: 150px;
    margin-bottom: 100px;
  }
  
  .form-hinweis {
    grid-column: 1 / -1;
    margin-bottom: 16px;
    text-align: center;
    padding: 0 10px;
  }

  .form-hinweis h1{
    font-size: 35px;
    color: white;
    margin-bottom: 10px;
  }
  
  .form-hinweis h2 {
    font-size: 20px;
    font-weight: 700;
    color: #ed7821;
    margin-bottom: 5px;
  }
  
  .form-hinweis p {
    font-size: 14px;
    color: #fff;
    line-height: 1.4;
    margin: 3px 0;
  }
  
  .stapler-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
  }
  
  .step {
    flex: 1 1 22%;
    text-align: center;
  }
  
  .step .circle {
    width: 32px;
    height: 32px;
    border: 2px solid #ed7821;
    border-radius: 50%;
    color: #ed7821;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-size: 15px;
  }
  
  .step h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #ed7821;
  }
  
  .step p {
    font-size: 12px;
    color:#fff;
    line-height: 1.4;
  }
  
  .stapler-form {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    width: 100%;
    box-sizing: border-box;
  }
  
  .form-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }
  
  .full-width {
    grid-column: span 4;
  }
  
  .stapler-form input,
  .stapler-form select,
  .stapler-form textarea {
    padding: 7px 10px;
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 13px;
    background: #f9f9f9;
    outline: none;
    transition: 0.3s;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    width: 100%;
  }
  
  .stapler-form textarea {
    height: auto;
    min-height: 100px;
  }
  
  .stapler-form input:focus,
  .stapler-form select:focus,
  .stapler-form textarea:focus {
    border-color: #ed7821;
    background: #fff;
    box-shadow: 0 0 0 2px rgba(237, 120, 33, 0.2);
  }
  
  .stapler-form button {
    background-color: #ed7821;
    color: white;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 6px;
    font-family: 'Poppins', sans-serif;
  }
  
  .stapler-form button:hover {
    background-color: #d56917;
  }
  
  .stapler-form button:focus {
    outline: 2px solid #ed7821;
    outline-offset: 2px;
  }
  
  .stapler-form .form-group label {
    font-size: 13px;
    margin-bottom: 4px;
    color: #222;
    display: block;
  }
  
  .stapler-form .form-group textarea {
    resize: vertical;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    background: #f9f9f9;
    outline: none;
    box-sizing: border-box;
    resize: none;
  }
  
  .checkbox-inzahlungnahme,
  .checkbox-transport {
    display: flex;
    align-items: center;
    height: 40px;
    gap: 6px;
    width: 100%;
    flex-direction: row;
  }
  
  .checkbox-inzahlungnahme input,
  .checkbox-transport input {
    margin: 0;
    width: 16px;
    height: 16px;
  }
  
  .checkbox-inzahlungnahme label,
  .checkbox-transport label {
    font-size: 13px;
    color: #222;
    line-height: 1;
    margin: 0;
    padding-top: 5px;
    resize: none;
  }
  
  .textarea-row {
    grid-column: 1 / -1;
    width: 100%;
    resize: none;
  }
  
  .textarea-row textarea {
    width: 100%;
    min-height: 100px;
    padding: 10px;
    font-size: 13px;
    border-radius: 6px;
    border: 1px solid #ccc;
    background: #f9f9f9;
    resize: vertical;
    font-family: 'Poppins', sans-serif;
    outline: none;
    box-sizing: border-box;
    resize: none;
  }
  
  @media (max-width: 1024px) {
    .form-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 700px) {
    .form-grid {
      grid-template-columns: 1fr;
    }
  
    .form-group {
      grid-column: span 1 !important;
    }
  
    .form-hinweis h2 {
      font-size: 18px;
    }
  
    .form-hinweis p {
      font-size: 13px;
    }
  
    .step {
      flex: 1 1 100%;
    }
  
    .step p {
      font-size: 12px;
    }
  }

  .footer {
    background-color: #1a1a1a;
    color: white;
    padding: 40px 0 20px;
    font-family: 'Poppins', sans-serif;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 100px 0 200px;
    gap: 50px;
    box-sizing: border-box;
  }
  
  .footer-section {
    flex: 1 1 30%;
    min-width: 240px;
    box-sizing: border-box;
  }
  
  .footer-section h4 {
    font-size: 16px;
    color: #ed7821;
    margin-bottom: 15px;
    text-transform: uppercase;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 8px;
  }
  
  .footer-section ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
  }
  
  .footer-section ul li a:hover {
    color: #ed7821;
  }
  
  .footer-section p,
  .footer-section a {
    font-size: 14px;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 8px;
  }
  
  .footer-section i {
    margin-right: 8px;
    color: #ed7821;
  }
  
  .footer-bottom {
    text-align: center;
    display: flex;
    flex: row;
    margin-top: 30px;
    padding: 10px 0 0 0;
    font-size: 13px;
    color: #aaa;
    border-top: 1px solid #333;
    width: 100%;
    justify-content: center;
    gap: 20px;
  }

  .footer-bottom a{
    color: #aaa;
  }
  
  /* Responsive Footer */
  @media (max-width: 1024px) {
    .footer-container{
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 100px;
    }

    .footer-section h4,p,i,li,a{
        text-align: center;
        padding: 0 0;
        margin: 0 0;
    }

    .footer-section h4{
        margin-bottom: 10px;
    }

    .footer-bottom {
      text-align: center;
      margin-top: 30px;
      padding: 10px 0 0 0;
      font-size: 13px;
      color: #aaa;
      border-top: 1px solid #333;
      display: flex;
      flex-direction: column;
      gap: 0;
    }
  }
  
  @media (max-width: 768px) {
    .text-bottom {
      flex-direction: column;
      font-size: 14px;
      text-align: center;
    }

    .text-bottom .item{
      margin-bottom: 10px;
    }
  
    .text-bottom i {
      margin-right: 6px;
    }

    .textlinks{
      margin-top: 100px;
    }

    .form-hinweis h1{
      font-size: 27px;
    }

  
  }


  @media (max-width: 640px){
    .textlinks h1{
      font-size: 24px;
    }
  
    .textlinks .Stapler {
      font-size: 18px;
      font-weight: 700;
      background: #ed7821;
      color: white;
      padding: 8px 20px;
      border-radius: 50px;
      margin-top: 10px;
  }
  }

  @media (max-width: 490px){
    .textlinks h1{
      font-size: 18px;
    }

    .textlinks .Stapler {
      font-size: 16px;
      font-weight: 700;
      background: #ed7821;
      color: white;
      padding: 8px 20px;
      border-radius: 50px;
      margin-top: 10px;
  }
    .text-bottom {
      gap: 10px;
    }

    .text-bottom .item i{
      font-size: 24px;
    }

    .footer-container{
      padding: 10px 0;
    }
  }
  @media (max-width: 421px){
    .item .box{
      height: 475px;
    }

    .footer-container{
      text-align: center;
      margin: 10px auto 10px auto ;
      padding: 10px 0;
    }

    .container-bottom .text-bottom{
      gap: 25px;
    }

   

  .stapler-suchformular{
    padding-top: 40px;
    margin-top: 0;
  }

  #contact2 .contact-container{
    margin-top: 70px;
  }

  .about .content{
    padding-top: 50px;
  }

  .about .button {
    background-color: #ed7821;
    color: white;
    border: transparent 2px solid;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 30px;
    font-size: 16px;
  }
  
}

/* ===== ANGEPASSTER KONTAKTBEREICH ===== */
.contact-section {
  position: relative;
  min-height: 100vh;
  height: auto;
  background: url(Bilder/Dunkel.png) center center / cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  z-index: 1;
}

.contact-section .contact-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  max-width: 1200px;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
  flex-wrap: wrap;
}

.contact-section .contact-map {
  flex: 2;
  min-height: 500px;
  order: 2;
}

.contact-section .contact-info {
  flex: 1;
  min-height: 500px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  order: 1;
}

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

.contact-section .contact-info h2 {
  color: #ed7821;
  font-size: 28px;
  margin-bottom: 20px;
  text-align: left;
}

.contact-section .contact-info p,
.contact-section .contact-info a {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
}

.contact-section .contact-info i {
  margin-right: 10px;
  color: #ed7821;
}

@media (max-width: 768px) {
  .contact-section{
    padding-top: 100px;
  }
  .contact-section .contact-container {
    flex-direction: column;
  }
  .contact-section .contact-map,
  .contact-section .contact-info {
    width: 100%;
    min-height: auto;
  }
  .contact-section .contact-map {
    order: 2;
  }
  .contact-section .contact-info {
    order: 1;
    text-align: center;
    align-items: center;
  }
  .contact-section .contact-info h2 {
    text-align: center;
  }
  .contact-section .contact-map iframe {
    height: 450px;
  }
}


  .contact-section .contact-info h2{
    text-align: center;
  }
