body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #333;
}

.site-header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #fff; /* Replace with the exact color of your header background */
    padding: 20px 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,.1); /* Optional: adds a slight shadow for depth */
}

.logo {
  width: 200px;
}

.logo img {
    height: 50px; /* Adjust as needed */
}

.site-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.site-nav li {
    margin-left: 20px;
}

.site-nav a {
    text-decoration: none;
    color: #000; /* Replace with the exact color of your menu text */
    font-weight: bold;
    transition: color 0.3s ease;
}

.site-nav a:hover {
    color: #c00; /* Replace with the hover color for your menu text */
}

.dropdown-icon {
  display: inline-block;
  margin-left: 5px;
  /* Pfeil nach unten */
}

.site-nav ul.submenu {
  display: none;
  position: absolute; /* positioniert das Untermenü im Verhältnis zum Elternelement */
  background: #FFFFFF;
  white-space: nowrap; /* Stellt sicher, dass die Untermenüelemente nicht umbrechen */
  z-index: 100; /* Stellt sicher, dass das Untermenü über anderen Elementen liegt */
  /* Restliche Stile, um das Untermenü zu gestalten, wie Farben, Schatten etc. */
  border-radius: 5px;
}

/* Stile für die Liste im Untermenü */
.site-nav ul.submenu li {
  padding: 10px; /* Oder eine andere passende Polsterung */
  text-align: left;
  margin-left: 0;
}

/* Stiländerungen für das Untermenü beim Hover des übergeordneten Listenelements */
.site-nav li:hover > .submenu,
.site-nav li:focus-within > .submenu {
  display: block; /* Zeigt das Untermenü beim Hover */
}

.hamburger {
    display: none; /* Hide the hamburger by default */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 3px;
    background-color: #333; /* Hamburger icon color */
    border-radius: 3px;
}

.site-nav {
    transition: transform 0.3s ease;
}

.close-btn {
    display: none;
}

.language-selector {
  width: 200px;
  text-align: right;
}

.language-selector img {
  width: 30px; /* Anpassung der Breite */
  height: auto; /* Höhe wird automatisch angepasst */
  margin-left: 2px;
}

.slider {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    width: 100%;
    height: calc(100vh - 220px); /* Adjust height as needed */
    flex-shrink: 0; /* Prevents the slide from shrinking */
    background-size: cover;
    background-position: center;
    position: relative;
}

.slide-extra {
  width: 100%;
  height: calc(100vh - 400px); /* Adjust height as needed */
  flex-shrink: 0; /* Prevents the slide from shrinking */
  background-size: cover;
  background-position: center;
  position: relative;
}

.slide-box {
    background: rgba(255, 255, 255, 0.9);
    position: absolute;
    color: #6A818E; /* Adjust text color as needed */
    text-align: left;    
    max-width: 600px; /* Adjust width as needed */
    padding: 20px;
    box-sizing: border-box;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 60px;
    color: #ffffff; /* Arrow color */
    z-index: 10;
    background: none;
    border: none;
    cursor: pointer;
}
@media (max-width: 480px) {
  .slide-box {
    top: 0;
    left: 0;
    transform: translate(0%, 0%);
  }

  .slide-arrow {
    transform: translateY(0%);;
  }
}

.prev {
    left: 25px;
}

.next {
    right: 25px;
}

/* Set background images for slides */
#slide-1 {
    background-image: url('../img/slider/q1tETGP1.jpeg');
}

/* Additional slides' background images would be set here */

#slide-wood-1 {
  background-image: url('../img/IMG_1155.jpg');
}

#slide-glas-1 {
  background-image: url('../img/window-354617.jpg');
}

#slide-tiles-1 {
  background-image: url('../img/tiles-454961.jpg');
}

#slide-naturestone-1 {
  background-image: url('../img/pathway-2289978.jpg');
}

.icon-list {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.icon-item {
    text-align: center;
}

.icon-item img {
    width: 60px; /* Adjust size as needed */
    margin-bottom: 10px;
}

.icon-item p {
    font-size: 14px;
    margin: 0;
    color: #333; /* Adjust color as needed */
}

.content-wrapper {
    max-width: 900px; /* Adjust max-width as needed */
    margin: auto; /* Centers the container */
    box-sizing: border-box;
    margin-bottom: 50px;
    background-color: #f0f0f0;
}

.cta-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px; /* Adjust top and bottom padding as needed */
}

.text-area {
    flex-basis: 50%; /* Adjust width as needed */
}

.image-area {
    flex-basis: 50%; /* Adjust width as needed */
    text-align: right; /* Aligns the image to the right */
}

.image-area img {
    max-width: 100%; /* Ensures the image is responsive */
    height: auto; /* Maintains the aspect ratio of the image */
}

.more-btn {
    padding: 10px 20px; /* Adjust padding as needed */
    background-color: #000; /* Adjust background color as needed */
    color: #fff; /* Adjust text color as needed */
    border: none;
    cursor: pointer;
    font-size: 16px; /* Adjust font size as needed */
    border-radius: 5px; /* Optional: for rounded corners */
    margin-top: 20px; /* Adjust margin as needed */
}

footer {
    background-color: #F8F8F8;
    color: #6A818E;
    padding: 20px;
  }
  
  .footer-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
  }
  
  .column {
    flex: 1;
    margin: 10px;
  }
  
  h2 {
    margin-top: 0;
    margin-bottom: 10px;
  }
  
  p {
    margin-bottom: 5px;
  }
  
  ul {
    list-style: none;
    padding: 0;
  }
  
  li {
    margin-bottom: 5px;
  }
  
  a {
    color: #6A818E;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }

  .content-box {
    position: relative;
    max-width: 900px; /* Adjust the width as needed */
    margin: 50px auto; /* Spacing before and after the content box */
    background-image: url('../img/IMG_1153.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden; /* Ensure the background image doesn't spill out */
    box-sizing: border-box; /* Include padding in the width and height calculations */
    margin-bottom: 50px;
    }
    
    .content-box2 {
        position: relative;
        max-width: 900px; /* Adjust the width as needed */
        margin: 50px auto; /* Spacing before and after the content box */
        background-image: url('../img/IMG_1154.jpg');
        background-size: cover;
        background-position: center;
        overflow: hidden; /* Ensure the background image doesn't spill out */
        box-sizing: border-box; /* Include padding in the width and height calculations */
        margin-bottom: 50px;
    }

.content {
    position: relative;
    color: white; /* Change text color as needed */
    text-align: left;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for better readability */
    border-radius: 8px; /* Optional: for rounded corners */
    padding: 120px;
}

/* Responsive adjustments */
@media (max-width: 768px) {

    .content-wrapper {
        padding: 0 20px; /* Smaller padding on smaller screens */
    }

    .cta-section {
        flex-direction: column;
        text-align: center;
    }

    .image-area {
        order: -1; /* Image goes above text on smaller screens */
        text-align: center; /* Center-align the image */
    }

    .text-area, .image-area {
        flex-basis: 100%; /* Full width on smaller screens */
    }

    .hamburger {
        display: flex;
    }

    .site-nav {
        display: none;
        position: fixed; /* Changed to fixed */
        top: 0;
        left: 0; /* Added to cover the entire viewport */
        right: 0; /* Added to cover the entire viewport */
        bottom: 0; /* Added to cover the entire viewport */
        width: 100%;
        height: 100vh; /* Full viewport height */
        background-color: rgba(255,255,255,0.95); /* Slightly transparent white */
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        flex-direction: column;
        justify-content: center; /* Center items vertically */
        align-items: center; /* Center items horizontally */
        z-index: 1000; /* Ensure it's above other content */
    }

    .site-nav ul {
        width: 100%; /* Full width */
        flex-direction: column;
    }

    .site-nav li {
        width: 100%; /* Full width */
        text-align: center;
        padding: 10px 0;
        border-bottom: 1px solid #ccc; /* Optional: adds a line between items */
        margin-left: 0;
    }

    .site-nav li:last-child {
        border-bottom: none; /* Removes bottom border for the last item */
    }

    .site-nav.expanded {
        display: flex;
        transform: translateX(0); /* Show the menu */
    }

    .site-nav a {
        display: block; /* Makes the entire area clickable */
        font-size: 1.5em; /* Larger text size */
        transition: background-color 0.3s ease;
        text-align: center;
    }

    .site-nav a:hover {
        background-color: #f8f8f8; /* Slight background on hover */
    }

    .close-btn.active{
        display: block;
        position: absolute;
        top: 20px;
        right: 60px;
        background: none;
        border: none;
        font-size: 3em;
        cursor: pointer;
    }

    .site-nav ul.submenu {
      display: none;
      position: absolute;
      left: 0;
      padding: 0;
      margin: 0;
      list-style: none;
      background-color: #fff; /* Hintergrundfarbe des Untermenüs */
      box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2); /* Optional: Schatten für das Untermenü */
  }
  
  .site-nav ul.submenu li {
      padding: 10px;
      width: auto;
  }
  
  .site-nav ul.submenu li a {
      color: #000; /* Textfarbe des Untermenüs */
      text-decoration: none;
      display: block;
  }
  
  .site-nav li:hover > .submenu {
      display: block; /* Zeigt das Untermenü beim Hover */
  }
    
    .icon-item {
        flex-basis: calc(50% - 40px); /* Each icon will take up half the container width minus the padding */
    }

    .icon-item img {
        width: 50px; /* Optionally adjust the size on smaller screens */
    }

}

@media (max-width: 480px) {

    .only-web {
      display: none;
    }

    .icon-item {
        flex-basis: 100%; /* Each icon will take up the full container width */
    }
    
    .icon-item p {
        font-size: 12px;
    }
}

@keyframes slideInFromRight {
    0% {
      transform: translateX(40%);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  /* Apply the animation to your cta-section */
  .cta-section {
    animation-name: slideInFromRight;
    animation-duration: 1.2s;
    animation-fill-mode: both;
    animation-delay: 0.5s; /* This delay allows the user to scroll to the element before it starts */
    visibility: hidden; /* Initially hide the content */
  }
  
  /* Ensure the element is visible when the animation starts */
  .cta-section.animate-in {
    visibility: visible;
  }


  .banner {
    background-image: url('../img/JUjJ4Dcu.jpeg'); /* Pfad zu Ihrem Bild */
    color: #fff;
    padding: 100px 0; /* Erhöhen Sie das Padding für eine größere Bannerhöhe */
    text-align: center;
    background-size: cover;
    background-position: center;
}

.contact-container {
    max-width: 600px;
    margin-top: 35px;
    margin-bottom: 35px;
    margin-left: auto;
    margin-right: auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    margin-top: 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

button {
    padding: 10px 20px; /* Adjust padding as needed */
    background-color: #000; /* Adjust background color as needed */
    color: #fff; /* Adjust text color as needed */
    border: none;
    cursor: pointer;
    font-size: 16px; /* Adjust font size as needed */
    border-radius: 5px;/* Adjust margin as needed */
}

button:hover {
    background: #7a8da0;
}

/* Responsive */
@media (max-width: 640px) {
    .contact-container {
        padding: 15px;
    }

    .form-group input,
    .form-group textarea {
        padding: 8px;
    }

    button {
        padding: 8px 16px;
    }
}

.product-container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
  }
  
  header h1 {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .product-display {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    align-items: center;
    background: #F0F0F0;
    padding: inherit;
  }
  
  .product-display img {
    width: 100%;
    height: auto;
    border-radius: 10px; /* Rounded corners for images */
  }
  
  .product-description h2 {
    color: #333;
    margin-bottom: 20px;
  }
  
  .product-description p {
    color: #555;
    line-height: 1.7;
  }
  
  @media (max-width: 768px) {
    header h1 {
      font-size: 24px;
    }
  
    .product-description h2 {
      font-size: 20px;
    }
  }

  .accordion {
    max-width: 600px; /* oder die gewünschte Breite */
    margin: auto;
  }
  
  .accordion-item {
    background: #f7f7f7; /* Hintergrundfarbe der Akkordeon-Elemente */
    border: 1px solid #ddd; /* Rahmenfarbe */
    margin-bottom: 10px; /* Abstand zwischen den Elementen */
    border-radius: 4px; /* Abgerundete Ecken */
  }
  
  .accordion-button {
    color: #000;
    width: 100%;
    padding: 15px 20px;
    text-align: left; /* Text linksbündig ausrichten */
    border: none; /* Standard-Border entfernen */
    outline: none; /* Outline entfernen */
    background: transparent; /* Transparenter Hintergrund */
    cursor: pointer; /* Cursor-Stil auf 'pointer' setzen */
    font-size: 16px; /* Schriftgröße */
    transition: background-color 0.3s ease; /* Animation für Hover */
  }
  
  .accordion-button:hover,
  .accordion-button:focus {
    background-color: #e1e1e1; /* Hintergrundfarbe beim Hover */
  }
  
  /* Media Queries für Responsivität */
  @media (max-width: 768px) {
    .accordion-button {
      font-size: 14px; /* Kleinere Schriftgröße auf kleineren Bildschirmen */
    }
  }
  
  .impressum-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #eaeaea;
    border-radius: 5px;
  }
  
  .impressum-container h1, 
  .impressum-container h2, 
  .impressum-container h3 {
    color: #000;
  }
  
  .impressum-link {
    color: #007bff;
    text-decoration: none;
  }
  
  .impressum-link:hover {
    text-decoration: underline;
  }
  
  @media (max-width: 768px) {
    .impressum-container {
      padding: 10px;
    }
  }

  .datenschutz-container, .impressum-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #eaeaea;
    border-radius: 5px;
  }
  
  .datenschutz-container h1, .datenschutz-container h2, .datenschutz-container h3,
  .impressum-container h1, .impressum-container h2, .impressum-container h3 {
    color: #000;
  }
  
  @media (max-width: 768px) {
    .datenschutz-container, .impressum-container {
      padding: 10px;
    }
  }

  .agb-container, .datenschutz-container, .impressum-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #eaeaea;
    border-radius: 5px;
  }
  
  .agb-container h1, .agb-container h2, .agb-container h3,
  .datenschutz-container h1, .datenschutz-container h2, .datenschutz-container h3,
  .impressum-container h1, .impressum-container h2, .impressum-container h3 {
    color: #000;
  }
  
  @media (max-width: 768px) {
    .agb-container, .datenschutz-container, .impressum-container {
      padding: 10px;
    }
  }

  .copyright {
    text-align: center;
    padding: 20px;
    background-color: #f0f0f0; /* Hintergrundfarbe ändern, falls nötig */
    color: #333; /* Textfarbe ändern, falls nötig */
    font-size: 14px;
}

.features-list ul {
  list-style-type: none;
  padding: 0;
}

.features-list li {
  background: #e9ecef;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 5px;
}

.main-content {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  background: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Responsivität */
@media (max-width: 768px) {
  .main-content {
      margin: 10px;
      padding: 10px;
  }

  .features-list li {
      padding: 5px;
  }

  .language-selector {
    width: unset;
  }
}





