 <style>
       body {
            margin: 0;
            padding: 0;
            background-color: #f5f5f7;
            color: #333;
           font-family: "fonts", Roboto-Light;
        }

    @font-face {
  font-family: "fonts";
  src: url("/fonts/Roboto-Light.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

body {
  font-family: "fonts", Roboto-Light;
     margin: 0;
            padding: 0;
}


 header {
position: fixed;
top: 0;
left: 0;
right: 0;
margin: 0 0;

padding: 12px 20px;
border-radius: 20px;

background: linear-gradient(
  to bottom,
  rgba(255,255,255,0.25),
  rgba(255,255,255,0.10)
);
backdrop-filter: blur(10px) saturate(160%);
-webkit-backdrop-filter: blur(10px) saturate(160%);

box-shadow:
  0 4px 14px rgba(0,0,0,0.25),
  0 1px 1px rgba(255,255,255,0.25) inset;

z-index: 1000;
box-sizing: border-box;
text-align: right;
    }

    header h1 {
        margin: 0;
        font-size: 1.5em;
    }

    main {
        margin-top: 60px; /* Platz für den fixierten Header */
        padding: 20px;
    }

    h2 {
        margin-top: 1.5em;
    }


        header h1 {
            margin: 0;
            font-size: 24px;
        }
        nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
        }
        nav ul li {
            margin: 0 15px;
        }
        nav ul li a {
            text-decoration: none;
            color: #000;
            font-size: 25px;
        }
        nav ul li a:hover {
            text-decoration: underline;
        }
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        .menu-toggle span {
            background: black;
            height: 3px;
            margin: 4px 0;
            width: 25px;
        }
        .nav-links {
            display: flex;
        }
        @media (max-width: 768px) {
            header {
                flex-direction: column;
                text-align: center;
            }
            .menu-toggle {
                display: flex;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 10px 0;
            }
            .nav-links.active {
                display: flex;
            }
            nav ul li {
                margin: 10px 0;
            }
        }
       
.hero {
    /*background-image: url('public2/Banner1.png');*/
    background-size: cover;
    background-position: center;
    background-color: #b6c8c8;
    height: 600px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    text-align: center;
    font-size: 60px;

    /* Animation fürs Hintergrundbild */
    /*animation: bgmove 15s ease-in-out infinite alternate;*/
}

.hero h2 {
    font-size: 48px;
    margin: 0;
}

.hero p {
    font-size: 18px;
    margin-top: 10px;
}
/*
@keyframes bgmove {
    0% {
        background-position: 50% 0%;
    }
    50% {
        background-position: 70% 60%; 
    }
    100% {
        background-position: 50% 0%;
    }
}
*/





  .slider-container {
      overflow: hidden;
      width: 100%;
      max-width: 1800px;
      margin: 40px auto;
      position: relative;
    }

    .slider-track {
      display: flex;
      gap: 10px;
      align-items: center;
      will-change: transform;
    }

    .slider-track.is-animated {
      animation: scroll linear infinite;
      animation-duration: var(--scroll-duration, 40s);
    }

    @keyframes scroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .slide {
      flex: 0 0 380px;
      display: block;
      text-decoration: none;
    }

    .slide img {
      display: block;
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 0px;
      -webkit-user-drag: none;
      user-drag: none;
    }
        .container {
            width: 85%;
            max-width: 1800px;
            margin: 40px auto;
            padding: 0 10px;
            
        }

.container h2 {
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
    text-decoration: none;
}

.container a {
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
    text-decoration: none;
    color: #000;
}

.container h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #b6c8c8;
  margin-top: 8px;
  border-radius: 2px;
}

        .container-blog {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 10px;
            background: white;
        }
        .categories {
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            padding-top: 20px;   /* Innenabstand oben */
            padding-bottom:0px;
            justify-content: center; /* horizontal zentrieren */
            align-items: center;
           
        }

        .category {
          background-color: #fff;
    border: 0px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

    flex: 1 1 calc(25% - 20px);
    max-width: calc(33.33% - 40px);
    min-height: 650px;
    max-height: 650px;
    

    display: flex;             /* Flexbox aktivieren */
    flex-direction: column;    /* Inhalt untereinander */
    justify-content: flex-start; /* Alles nach oben ausrichten */
    align-items: center;       /* Horizontal mittig */

    text-align: center;
    transition: transform 0.3s;
            
}

        .category img {
            width: 100%;
            height: 300px;
            width: 500px;
            object-fit: fill;
        }


.category:hover {
    transform: translateY(-10px);
}

        @media (max-width: 768px) {
            .categories {
                flex-direction: column;
                align-items: center;
            }
            .category {
                flex: 1 1 100%;
                max-width: 100%;
            }
            

   }

        .category-content {
            padding: 20px;
            max-height: 170px;
            min-height: 180px;
        }
        .category-content h3 {
            margin: 0 0 10px;
            font-size: 25px;
        }
        .category-content p {
            margin: 0;
            font-size: 20px;
            color: #666;
            text-align: justify
        }
        .additional-section {
            margin: 40px 0;
            padding: 20px;
            background-color: #eaeaea;
            border-radius: 8px;
            text-align: justify
        }
        .additional-section h2 {
            margin-top: 0;
        }



        footer {
            background-color: rgba(255, 255, 255, 0.15); /* Orange mit 80% Deckkraft */
padding: 10px 20px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
z-index: 1000;
text-align: center;
backdrop-filter: blur(6px);        /* Glass-Effect optional */
-webkit-backdrop-filter: blur(6px);
            color: black;
        
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }
        .footer-links a {
            color: black;
            text-decoration: none;
            font-size: 14px;
        }
        .footer-links a:hover {
            text-decoration: underline;
        }
        
           .nice-button {
        background-color: transparent;
  border: 2px solid #a7b2b8;
  color: #a7b2b8;
  font-size: 14px;     /* kleinere Schrift */
  padding: 12px 24px;   /* weniger Abstand innen */
  border-radius: 6px;  /* optional: kleinere, rundere Ecken */
        }

        .nice-button:hover {
  background-color: #b6c8c8;
  color: #fff;
  transform: translateY(-3px);
        }

        .nice-button:active {
            box-shadow: 0 2px #242424;
            transform: translateY(2px);
        }

 .shop-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            padding: 20px;
        }
        .shop-item {
            background-color: white;
            border: 1px solid #ddd;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            max-width: 300px;
            text-align: center;
            padding: 15px;
        }
        .shop-item img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }
        .shop-item h3 {
            font-size: 1.5em;
            margin: 10px 0;
        }
        .shop-item p {
            color: #555;
            font-size: 1em;
            margin: 10px 0 20px;
        }
        .buy-button {
            background-color: #4CAF50;
            color: white;
            border: none;
            padding: 10px 20px;
            font-size: 16px;
            cursor: pointer;
            border-radius: 8px;
            transition: background-color 0.3s;
        }
        .buy-button:hover {
            background-color: #45a049;
        }

html {
    scroll-behavior: smooth;
}


.box {
    width: 200px;
    height: 100px;
    background-color: white;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.widthbanner {
            display: flex;
            background-color: white;
            border: 1px solid #ddd;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            width: calc(283px);
            height: calc(150px);
            text-align: center;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s;
            
        }

.widthbanner:hover {
    transform: translateY(-10px);
}


.space1 {
            background-color: #f5f5f7;
            border: 1px solid #f5f5f7;
            overflow: hidden;
            flex: 1 1 calc(10.00% - 20px);
            max-width: calc(30px);
            max-height: calc(5px);
            text-align: center;
        }

.blog-section {
    padding: 40px 20px;
    background-color: #f5f5f5;
    text-align: center;
}

.blog-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

.blog-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.blog-post {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    min-width: 350px;
    max-width: 350px;
    max-height: 500px;
    min-height: 500px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.blog-post:hover {
    transform: translateY(-10px);
}

.blog-post img {
    width: 350px;
    height: 250px;
    display: block;
}

.blog-post h3 {
    font-size: 1.5em;
    margin: 15px;
    color: #333;
}

.blog-post p {
    font-size: 1em;
    margin: 0 15px 15px;
    color: #666;
    text-align: justify;
}

.blog-post .read-more {
    display: inline-block;
    margin: 10px 15px 15px;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.blog-post .read-more:hover {
    background-color: #0056b3;
}


.shop-container2 {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            padding: 20px;
        }
        .shop-item2 {
            background-color: white;
            border: 1px solid #ddd;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            max-width: 300px;
            max-height: 350px;
            text-align: center; 
            padding: 15px;
        }
        .shop-item img2 {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }
        .shop-item h32 {
            font-size: 1.5em;
            margin: 10px 0;
            
        }
        .shop-item p2 {
            color: white;
            font-size: 1em;
            margin: 10px 0 20px;
        }
        .buy-button2 {
            background-color: #4CAF50;
            color: white;
            border: none;
            padding: 10px 20px;
            font-size: 16px;
            cursor: pointer;
            border-radius: 8px;
            transition: background-color 0.3s;
        }
        .buy-button2:hover {
            background-color: #0058b7;
        }

.beitraege {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 10px;
            background: #f5f5f5;
    text-align: justify;
        }

.podcast-container {
  margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0px;
    background: #efebe3;
    max-width: 900px;
    min-width: 350px;
    max-height: 800px;
    min-height: 250px;
    border: 1px solid;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.podcast-container:hover {
    transform: translateY(-10px);
}

.podcast-post {
    background: #efebe3;
    border: 0px solid;
    border-radius: 0px;
    overflow: hidden;
    min-width: 350px;
    max-width: 500px;
    max-height: 500px;
    min-height: 250px;

}

.podcast-post h3 {
    font-size: 1.5em;
    margin: 15px;
    color: #333;
}

.podcast-post p {
    font-size: 1em;
    margin: 0 15px 15px;
    color: #666;
    text-align: justify;
}


.animated-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 25px;
    color: #000;
    text-decoration: none;

    /* Glass + Gloss */
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.35),
        rgba(255, 255, 255, 0.12)
    );
    border-radius: 50px;

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    transition: all 0.35s ease;
    position: relative;
    min-width: 300px;
    overflow: hidden;

    /* 3D Tiefenschatten */
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.25),  /* starker outer depth */
        0 2px 4px rgba(255, 255, 255, 0.4) inset; /* inner highlight */
}

/* Hover: stärkerer Lift + mehr Shine */
.animated-button:hover {
    transform: translateY(-5px);

    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.45),
        rgba(255, 255, 255, 0.18)
    );

    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.35),
        0 3px 6px rgba(255, 255, 255, 0.4) inset;
}

/* Shine-Effect */
.animated-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;

    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.0) 0%,
        rgba(255, 255, 255, 0.35) 50%,
        rgba(255, 255, 255, 0.0) 100%
    );

    transform: skewX(-25deg);
    transition: left 0.5s ease;
    z-index: 1;
}

.animated-button:hover:before {
    left: 120%;
}

.animated-button span {
    position: relative;
    z-index: 2;
}










.portfolio {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* statt 250px jetzt 350px */
  gap: 20px;
  padding: 0px 0px;
  max-width: 1400px;
  margin: 0 auto;
}


  .portfolio-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

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

  .portfolio-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }

  .portfolio-item-content {
    padding: 20px;
  }

  .portfolio-item-content h3 {
    margin-top: 0;
    font-size: 1.5rem;
  }

  .portfolio-item-content p {
    margin: 10px 0 0;
    font-size: 1rem;
    color: #555;
  }

  @media (max-width: 600px) {
    header h1 {
      font-size: 2rem;
    }
    header p {
      font-size: 1rem;
    }


 }

.about-me {
  padding: 40px 20px;
  background-color: #fff; /* helles, freundliches Hintergrund */
}

.about-container {
  display: flex;
  flex-wrap: wrap; /* für Mobile */
  align-items: center;
  width: 85%;
  margin: 0 auto;
  gap: 40px;
}

.about-image {
  flex: 1 1 100px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15); /* leichter Schatten */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.05); /* sanftes Zoomen beim Hover */
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.about-text {
  flex: 2 1 400px;
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
    
}

.about-text h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #b6c8c8;
  margin-top: 8px;
  border-radius: 2px;
}

.about-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #333;
  text-align: justify;
}

/* Mobile */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    gap: 20px;
  }
  .about-text h2 {
    font-size: 28px;
  }
  .about-text p {
    font-size: 16px;
  }
}


.contact-container {
  background-color: #b6c8c8;
 display: flex;
    background-size: cover;
  margin: 0 auto;
  display: flex;           /* Flexbox aktivieren */
  flex-wrap: wrap;         /* Zeilenumbruch bei kleineren Bildschirmen */
    -webkit-backdrop-filter: blur(6px);
    color: #fff;
    text-align: center;
}

.contact-boxl {
    flex: 1 1 50%;         /* Zwei Divs pro Reihe, flexibel */
  background-color: rgba(100, 100, 100, 0.15);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  box-sizing: border-box;
    backdrop-filter: blur(6px);        /* Glass-Effect optional */
-webkit-backdrop-filter: blur(6px);
    color: #fff;
  
}

.contact-container h2 {
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
}

.contact-container h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #a7b2b8;
  margin: 8px auto 0;
  border-radius: 2px;
}

.contact-container p {
  font-size: 18px;
  margin-bottom: 40px;
  color: #fff;
}


.contact-button {
  display: inline-block;
  padding: 15px 25px;
  font-size: 16px;
  color: #000;
  background-color: #b6c8c8;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.contact-button:hover {
  transform: translateY(-3px);
  background-color: #b6c8c8;
}

.contact-zeiten {
   flex: 1 1 35%;           /* Zwei Divs pro Reihe, flexibel */
  padding: 20px;
}

/* Mobile */
@media (max-width: 768px) {
  .contact h2 {
    font-size: 28px;
  }
  .contact p {
    font-size: 16px;
  }
  .contact-button {
    font-size: 14px;
    padding: 12px 20px;
  }
}

.impressum {
  background-color: #fff;
  padding: 80px 20px;
  font-family: Arial, sans-serif;
  color: #333;
  text-align: left;
}

.impressum-container {
  max-width: 800px;
  margin: 0 auto;
}

.impressum h2 {
  font-size: 32px;
  margin-bottom: 30px;
  position: relative;
}

.impressum h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #b6c8c8;
  margin-top: 8px;
  border-radius: 2px;
}

.impressum p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.impressum a {
  color: #b6c8c8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.impressum a:hover {
  color: #b6c8c8;
}

/* Mobile */
@media (max-width: 768px) {
  .impressum h2 {
    font-size: 24px;
  }
  .impressum p {
    font-size: 14px;
  }
}
 
.web-development {
  background-color: #fff;
  padding: 80px 20px;
  font-family: Arial, sans-serif;
}

.web-development .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap; /* für Mobile */
  gap: 40px;
}

.web-development .content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* sorgt dafür, dass alles oben steht */
  flex: 1 1 500px;
}

.web-development h2 {
  font-size: 25px;
  margin-bottom: 20px;
  position: relative;
    color: #000;
    font-weight: 400;
}

.web-development h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #b6c8c8;
  margin-top: 8px;
  border-radius: 2px;
}

.web-development p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #000;
    text-align: justify;
}

.web-development .buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.web-development .btn {
  padding: 15px 30px;
  background-color: #b6c8c8;
  color: #000;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.web-development .btn:hover {
  transform: translateY(-3px);
  background-color: #b6c8c8;
}

.web-development .btn-outline {
  background-color: transparent;
  border: 2px solid #b6c8c8;
  color: #b6c8c8;
  font-size: 14px;     /* kleinere Schrift */
  padding: 12px 24px;   /* weniger Abstand innen */
  border-radius: 6px;  /* optional: kleinere, rundere Ecken */
}

.web-development .btn-outline:hover {
  background-color: #b6c8c8;
  color: #fff;
  transform: translateY(-3px);
}

.web-development .text-box {
  flex: 1 1 400px;
  background-color: #b6c8c8;
  color: #000;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  line-height: 1.6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 16px;
    text-align: justify;
    text-justify: inter-word; /* bessere Wortverteilung im Blocksatz */
}

.web-development .text-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}


/* Mobile */
@media (max-width: 768px) {
  .web-development .container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .web-development h2 {
    font-size: 25px;
      font-weight: 400;
  }
  .web-development p {
    font-size: 16px;
  }
  .web-development .btn {
    padding: 12px 25px;
    font-size: 14px;
  }
  .web-development .text-box {
    flex: 1 1 100%;
    padding: 20px;
  }
}


.video-background {
  position: relative;
  width: 100%;
  height: 100%; /* oder was du brauchst */
  overflow: hidden;
    
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1750px;   /* feste Breite */
  height: 900px;  /* feste Höhe */
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1; /* hinter den Content legen */

    /* Für mobile Geräte */
    /* Für Hochformat-Smartphones */
@media (max-width: 768px) and (orientation: portrait) {
  .video-background video {
    width: auto;
    height: 100vh;
    object-fit: cover;
  }
}
     }

.content2 {
  position: relative;
  z-index: 1;
  color: #000;
  text-align: center;
  padding-top: 20vh;
}

.content {
  position: relative;
  z-index: 1;
  color: #000;
  text-align: center;
  padding-top: 0vh;
}

.content3 {
  position: relative;
  z-index: 1;
  color: #000;
  text-align: center;
  padding-top: 35vh;
}


.herocontent {
  position: relative;
  z-index: 1;
  color: #000;
  text-align: center;
    max-width: 95%;
    padding-top: 10vh;
}

.herocontent h2 {
font-size: 45px;
    color: #fff;
    font-weight: 400;
    
}

.herocontent p {
font-size: 35px;    
    color: #fff;
}

.content img {
  position: relative;
  z-index: 1;
  color: #000;
  text-align: center;
  padding-top: 1vh;

  max-width: 85%; /* Bild nie breiter als der Container */
  height: auto;    /* Seitenverhältnis bleibt erhalten */
  display: block;  /* sorgt für sauberes Verhalten im Layout */
  margin: 0 auto;  /* optional: zentriert das Bild im Container */
  border-radius: 50px;

}


.welcome-container {
 background-color: #fff;
    max-height: 600px;
    max-width: 100%;
  color: #fff;
  text-align: center;
}

.welcome-boxl {
    margin: 0 auto;
    max-width: 85%;
    min-width: 300px;
 background-color: #fff;
    color: #000;
   
    
  
}

.welcome-container h2 {
  font-size: 35px;
    font-weight: normal;
  margin-bottom: 20px;
  position: relative;
}

.welcome-container h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #b6c8c8;
  margin: 8px auto 0;
  border-radius: 2px;
}

.welcome-container p {
    
  font-size: 22px;
  margin-bottom: 40px;
  color: #000;
    text-align: justify;
    padding-top: 2vh;
}


.welcome-container2 {
  /*background-image: url('./RAWDATA/head_black.png'); /* dein Bild */
     background-repeat: no-repeat;
 background-color: rgba(252, 249, 244, 0.6);
  background-size: 10%;     /* Bild füllt den Container */
  background-position: center;/* zentriert das Bild */
  display: flex;              /* Flexbox aktivieren */
  flex-wrap: wrap;            /* Zeilenumbruch bei kleineren Bildschirmen */
  min-height: 150px;
    max-height: 150px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
}

.welcome-logo2 {
  width: 300px;           /* oder was du brauchst */
  height: 300px;
  background-image: url('./RAWDATA/head_black.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;   /* hier verkleinerst du das Bild auf 50% */
}

.welcome-boxl2 {
    margin: 0 auto;
    max-width: 900px;
    min-width: 300px;
  padding: 20px;
 background-color: rgba(252, 249, 244, 0.6);
  box-sizing: border-box;
    color: #000;
  
}

.welcome-container2 h2 {
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
}

.welcome-container2 h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #b6c8c8;
  margin: 8px auto 0;
  border-radius: 2px;
}

.welcome-container2 p {
  font-size: 22px;
  margin-bottom: 40px;
  color: #000;
    text-align: justify;
}



.welcome-button {
  display: inline-block;
  padding: 15px 25px;
  font-size: 16px;
  color: #b6c8c8;
  background-color:#b6c8c8;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.welcome-button:hover {
  transform: translateY(-3px);
  background-color: #b6c8c8;
}

.welcome-zeiten {
   flex: 1 1 35%;           /* Zwei Divs pro Reihe, flexibel */
  padding: 20px;
}



       
    </style>