*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body{
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}
/* Anpassung für kleine Bildschirme */
@media (max-width: 768px) {
    body {
    }
}
/* Navigation für PC*/
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  padding: 10px 100px; /* Standard-Padding für größere Bildschirme */
  box-sizing: border-box;
  background-color: #DD5100;
  z-index: 999;
  transition: .32s;
}

nav.black {
  background: rgba(0, 0, 0, 0.8); /* Schwarzer Hintergrund bei Scrollen */
  height: 80px;
  padding: 10px 50px;
}

nav .logo {
  float: left;
}

nav .logo img {
  height: 80px;
  content: url('logo_fullwhite.png');
  transition: .5s;
}

nav.black .logo img {
  content: url('logo_full.png');
  height: 60px;
}

nav ul {
  float: right;
  margin: 0;
  padding: 0;
  display: flex;
}

nav ul li {
  list-style: none;
  display: inline-block;
}

nav ul li a {
  line-height: 80px;
  color: #fff; /* Weißer Text */
  padding: 5px 20px;
  text-decoration: none;
  text-transform: uppercase;
  transition: .5s;
  display: inline-block;
  position: relative;
  margin: 0 5px;
}

nav ul li a::after {
  content: "";
  position: absolute;
  width: 0%;
  background: #fff;
  height: 2px;
  bottom: -1px;
  left: 0;
  transition: 0.5s;
}

nav ul li a:hover::after {
  width: 100%;
}

nav.black ul li a {
  line-height: 60px;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
  float: right;
  margin-top: 30px;
}

.nav-list {
  display: flex;
  flex-direction: row;
}
/* Navigation für Tablets und Handys*/
@media (max-width: 1077px) {
  /* Keine Änderung der Hintergrundfarbe beim Scrollen */
  nav.black {
    background: #DD5100; /* Setzt den Hintergrund für mobiles Menü zurück */
  }

  /* Zusätzliche Anpassungen für andere mobile spezifische Styles */
  nav {
    padding: 10px 20px;
  }

  nav .logo img {
    height: 80px;
  }

  .menu-toggle {
    display: block;
  }

  /* Verstecke das Menü standardmäßig */
  .nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    background-color: #DD5100;
    z-index: 998;
  }

  /* Zeige das Menü, wenn es aktiv ist */
  .nav-list.active {
    display: flex;
  }

  /* Li-Elemente im mobilen Menü */
  .nav-list li {
    text-align: center;
    margin: 10px 0;
  }

  .nav-list li a {
    line-height: 40px;
    padding: 10px;
  }
}
/* IMPRESSUM */
.impressumcontent {
  overflow-x: hidden;
  margin-top: 120px;
  font-size: 30px;
  width: 100%;
  text-align: left;
  top: 10%;
  transform: rotateY(-50%);
  color: #fff;
}

.impressumcontent p {
  margin-left: 96px;
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
}

.impressumcontent h1,
.impressumcontent h2,
.impressumcontent h3 {
  margin-left: 96px;
  font-size: 2.5rem;
  color: #DD5100;
  margin-top: 24px;
  margin-bottom: 10px;
}

@media screen and (max-width: 1024px) {
  .impressumcontent {
    margin-top: 80px;
    font-size: 26px;
    text-align: left;
  }

  .impressumcontent p {
    margin-left: 30px;
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  .impressumcontent h1,
  .impressumcontent h2,
  .impressumcontent h3 {
    margin-left: 30px;
    font-size: 2rem;
    margin-top: 20px;
    margin-bottom: 8px;
  }
}

@media screen and (max-width: 768px) {
  .impressumcontent {
    margin-top: 80px;
    font-size: 22px;
    text-align: left;
  }

  .impressumcontent p {
    margin-left: 20px;
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .impressumcontent h1,
  .impressumcontent h2,
  .impressumcontent h3 {
    margin-left: 20px;
    font-size: 1.8rem;
    margin-top: 16px;
    margin-bottom: 6px;
  }
}

@media screen and (max-width: 480px) {
  .impressumcontent {
    margin-top: 90px;
    font-size: 20px;
    padding: 0 10px;
  }

  .impressumcontent p {
    margin-left: 0;
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  .impressumcontent h1,
  .impressumcontent h2,
  .impressumcontent h3 {
    margin-left: 0;
    font-size: 1.5rem;
    margin-top: 12px;
    margin-bottom: 4px;
  }
}
/* FOOTER */
  footer {
      background-color: #dd5100;
      color: #fff;
      padding: 20px 0;
      text-align: center;
      bottom: 0;
      width: 100%;
  }

  .footer-container {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 20px;
  }

  .footer-info p {
      margin: 5px 0;
  }

  .footer-nav {
      list-style-type: none;
      padding: 0;
      margin: 10px 0 0;
      display: flex;
      justify-content: center;
      gap: 15px;
  }

  .footer-nav li {
      margin: 0;
  }

  .footer-nav li a {
      color: #fff;
      text-decoration: none;
      transition: color 0.3s;
  }

  .footer-nav li a:hover {
      color: #f0f0f0;
  }

  .footer-info a {
      color: #fff;
      text-decoration: none;
      transition: color 0.3s;
  }

  .footer-info a:hover {
      color: #f0f0f0;
  }
/* KONTAKT PAGE */
  .contact-info {
    float: left;
    padding: 10px 20px;
      margin-top: 20px;
      font-size: 1.1em;
      line-height: 1.8;
  }

  .contact-info p {
      margin: 5px 0;
  }

  .contact-info ul {
      list-style-type: none;
      padding-left: 0;
  }

  .contact-info ul li {
      margin: 5px 0;
  }
.contact-container{
  padding: 225px;
  background: #f3f3f3;
  height: auto;
  align-items: center;
  display: flex;
  justify-content: center;
}
.contact-left{
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;

}
.contact-left-title{
  font-weight: 600;
  color: #dd5100;
  font-size: 40px;
  margin-bottom: 5px;
}
.contact-left-title hr{
  border: none;
  width: 480px;
  height: 5px;
  background-color: #dd5100;
  border-radius: 10px;
  margin-bottom: 10px;
}
.contact-inputs{
  width: 400px;
  height: 50px;
  border: none;
  outline: none;
  padding-left: 25px;
  font-weight: 500;
  color: #66666;
  border-radius: 50px;
}
.contact-left textarea{
  height: 140px;
  padding-top: 15px;
  border-radius: 20px;
}
.contact-inputs:focus{
  border: 2px solid #ff994f
}
.contact-inputs::placeholder{
  color: #a9a9a9
}
.contact-left button{
  display: flex;
  align-items: center;
  padding: 15px 30px;
  font-size: 16px;
  color: #fff;
  gap: 10px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(270deg, #ff994f, #dd5100);
  cursor: pointer;
}
.contact-left button img{
  height: 15px;
}
.karte-container {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.karte-placeholder {
  position: relative;
  width: 100%;
  height: 600px;
  background: url('images/google-maps-placeholder.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  font-weight: normal;
}

.karte-overlay {
  background: rgba(0, 0, 0, 0.6);
  margin-left: 35%;
  margin-right: 35%;
  padding: 20px;
  border-radius: 10px;
}
.karte-overlay p a {
  color: #dd5100; /* Farbe des Links */
  text-decoration: none; /* Entfernt die Unterstreichung */
  font-weight: bold; /* Macht den Link fett */
  transition: color 0.3s ease; /* Sanfter Übergang bei Hover */
}

.karte-overlay p a:hover {
  color: #bb4500; /* Farbe beim Hover-Effekt */
  text-decoration: underline; /* Unterstreichung beim Hover */
}
.karte-button {
  background: #dd5100;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 10px;
}

.karte-button:hover {
  background: #bb4500;
}
.karte-iframe {
  width: 100%;
  height: 400px;
  border: none;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 20px;
    }

    .contact-info {
      margin-top: 120px;
        padding-left: 10px;
        margin-right: 0;
        text-align: center;
    }

    .contact-info p, .contact-info ul {
        margin: 0 auto;
    }

    .contact-left {
        align-items: center;
        width: 100%;
    }

    .contact-left-title hr {
        width: 100%;
    }

    .contact-inputs {
        width: 90%;
        max-width: 400px;
    }

    .contact-left button {
        width: 90%;
        justify-content: center;
    }
    .karte-anfahrt{
      margin-top: 0px;
    }

}
.success-message {
    background-color: #d4edda;
    padding: 15px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.2em;
}
/* LEISTUNGEN PAGE */
.services {
    text-align: center;
    margin-top: 100px;
    padding-top: 60px;
    padding-bottom: 60px;

}

.services h1 {
    color: #DD5100;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.services p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

.service-grid {
  padding: 10 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.service-item:hover {
    transform: translateY(-10px); /* Anhebung bei Hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Schattierung bei Hover */
}

.service-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    transition: transform 0.3s ease; /* Sanfte Übergänge */
}

.service-item:hover img {
    transform: scale(1.05); /* Leichte Vergrößerung des Bildes bei Hover */
}

.service-item h2 {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: white;
    font-size: 1.2rem;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 5px 10px;
    border-radius: 5px;
    margin: 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.service-item:hover h2 {
    background-color: rgba(0, 0, 0, 0.8); /* Dunklerer Hintergrund */
    transform: translateY(-5px); /* Leichte Anhebung des Textes */
}

.service-item p {
    position: absolute;
    bottom: 50px;
    left: 10px;
    color: white;
    font-size: 1rem;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 5px 10px;
    padding-right: 5px;
    border-radius: 5px;
    margin: 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.service-item:hover p {
    background-color: rgba(0, 0, 0, 0.8); /* Dunklerer Hintergrund */
    transform: translateY(-5px); /* Leichte Anhebung der Beschreibung */
}
.interessekv {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
.interessekv h1{
  color: #DD5100;
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.interessekv p{
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
        padding: 10px 20px;
    }
}
.gallery {
    padding: 60px 20px;
    text-align: center;
    background-color: #f9f9f9;
    margin-top: 40px;
}

.gallery h2 {
    font-size: 2.5rem;
    color: #DD5100;
    margin-bottom: 10px;
}

.gallery p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

/* Galerie-Raster */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Galerie-Item */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px); /* Anhebung bei Hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Schattierung bei Hover */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    transition: transform 0.3s ease; /* Sanfte Übergänge */
}

.gallery-item:hover img {
    transform: scale(1.05); /* Leichte Vergrößerung des Bildes bei Hover */
}

.gallery-item h3 {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: white;
    font-size: 1.2rem;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 5px 10px;
    border-radius: 5px;
    margin: 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover h3 {
    background-color: rgba(0, 0, 0, 0.8); /* Dunklerer Hintergrund */
    transform: translateY(-5px); /* Leichte Anhebung des Textes */
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* Verhindert Scrollen im Modal */
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    box-sizing: border-box;
    display: flex; /* Flexbox für Zentrierung */
    justify-content: center;
    align-items: center; /* Vertikale und horizontale Zentrierung */
}

/* Modal-Bild */
.modal-content {
    display: block;
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 10px;
}

/* Bild-Beschriftung */
/* #modalCaption {
    text-align: center;
    color: white;
    font-size: 1.5rem;
    margin-top: 10px;
} /*

/* Schließen-Button */
.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #f44336;
}

/* Verhindern von Body-Scrollen, wenn Modal geöffnet ist */
body.modal-open {
    overflow: hidden;
}

/* Buttons für vorheriges und nächstes Bild */
.modal button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(221, 81, 0, 0.8); /* DD5100 mit Transparenz */
    color: white;
    border: none;
    padding: 15px 25px;
    cursor: pointer;
    z-index: 1000;
    font-size: 20px;
    border-radius: 10px;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.modal button.prev {
    left: 20px;
}

.modal button.next {
    right: 20px;
}

.modal button:hover {
    background: #DD5100; /* Vollere Farbe bei Hover */
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4);
}

.modal button:active {
    transform: translateY(-50%) scale(1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Responsive Anpassungen für kleinere Bildschirme */
@media (max-width: 768px) {
    .modal button {
        padding: 10px 15px;
        font-size: 16px;
    }

    .modal button.prev {
        left: 5px;
    }

    .modal button.next {
        right: 5px;
    }

    #modalCaption {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        max-width: 95%;
        max-height: 75%;
    }

    .modal button {
        padding: 8px 12px;
        font-size: 14px;
    }
}
.why-us {
    padding: 60px 20px;
    background-color: #f3f3f3;
    text-align: center;
}

.why-us h2 {
    font-size: 2.5rem;
    color: #DD5100;
    margin-bottom: 10px;
}

.why-us p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-us-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-us-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.why-us-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    fill: #DD5100 !important;

}

.why-us-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.why-us-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}
/* DATENSCHUTZ PAGE */
.datenschutzall {
  overflow-x: hidden;
  margin-top: 72px;
  padding: 48px;


}
.datenschutzall p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
}
.datenschutzall ul{
  color: #555;
}

.datenschutzall h1,
.datenschutzall h2 {
  font-size: 2.5rem;
  color: #DD5100;
  margin-top: 24px;
  margin-bottom: 10px;
}
.datenschutzall h3{
  font-size: 1.5rem;
}
/* HOMEPAGE BILDER */
.hero {
    position: relative;
    overflow: hidden;
    height: auto; /* Höhe passt sich dem Bildschirm an */
    padding-top: 100px;

}

.carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    width: 100%;
}

.carousel-images {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-images img {
    width: 100%;
    height: auto;
    object-fit: cover; /* Das Bild wird passend zum Container skaliert */
}

button1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    z-index: 10;
    font-size: 2rem;
}

button1.prev {
    left: 1rem;
}

button1.next {
    right: 1rem;
}

@media (max-width: 768px) {
    .hero {
      padding-top: 100px;
        height: auto; /* Weniger Höhe für kleinere Bildschirme */
    }

    .carousel-images img {
        object-fit: cover; /* Anpassung der Bilder bleibt erhalten */
    }

    button1 {
        font-size: 1.5rem; /* Kleinere Buttons auf kleinen Bildschirmen */
        padding: 0.8rem; /* Kleinere Button-Größe */
    }
}

@media (max-width: 480px) {
    .hero {
        height: auto; /* Noch kleinere Höhe für sehr kleine Bildschirme */
    }

    button1 {
        font-size: 1.2rem; /* Noch kleinere Buttons */
        padding: 0.6rem; /* Kleinere Buttons */
    }
}
section {
    padding: 3rem;
    text-align: center;
}

section h2 {
    color: #DD5100;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}


/* Leistungen HOMEPAGE */
.iservices {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.iservice {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 2rem;
    width: 320px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
}

.iservice h3 {
    color: #DD5100;
}
.servicemehr{
  justify-content: center;
  padding: 2rem;
}
.servicemehr h3{
  font-size: 1.5rem;
  color: #DD5100;
}
.servicemehr p{
  font-size: 1.5rem;
  color: #DD5100;
}
.servicemehr a {
    color: #666;
    transition: color 0.3s;
}

.servicemehr a:hover {
    color: #DD5100;
}
.karte-anfahrt{
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}
.karte-anfahrt iframe{
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  border: 0;
}
.ueber-uns{
  background-color: #f9f9f9;
}
.ueber-uns-text{
  padding-left: 15%;
  padding-right: 15%;
}
.ueber-uns-text p{
  font-size: 1.2rem;
}
.ikontakt{
  background-color: #f3f3f3;
}
.ikontakt p{
  font-size: 1.2rem;
}
.ikontakt h3{
  margin: 1%;
  font-size: 1.5rem;
}
/* KRANVERLEIH */
.krane-section {
    margin-top: 100;
    padding: 40px;
    background: #f3f3f3;
    text-align: center;
}

.krane-container {
    padding-top: 25px;
    padding-bottom: 25px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.kran-container h2{
  padding-top: 100px;
}

.kran-item {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 300px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.kran-item img {
    max-width: 100%;
    border-radius: 8px;
}
.kran-anfrage{
  padding-top: 25px;
  padding-bottom: 25px;
}
.kran-anfrage h3{
  color: #DD5100;
  font-size: 2rem;

}
.kran-anfrage p a{
  font-size: 1.2rem;
}
