 <style>
       body {
            font-family: 'Arial', sans-serif;
            margin: 0;
  padding: 0;
  background-image: url("public2/backgroundstone.jpg");
  background-repeat: repeat-x;   /* nur horizontal */
  background-size: auto 100%;    /* passt sich in der Höhe an */
  background-position: top;  
        }

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


 header {
       position: fixed;
top: 0;
left: 0;
width: 98%;
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: right;
backdrop-filter: blur(6px);        /* Glass-Effect optional */
-webkit-backdrop-filter: blur(6px);/* Für Safari */
    }

    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: #fff;
            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;
                color: #fff;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                text-align: left;
                padding: 10px 0;
                color: #fff;
            }

        
            .nav-links.active {
                display: flex;
            }
            nav ul li {
                margin: 10px 0;
            }
        }
       
.hero {
    height: 500px;
    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%;
    }
}
*/

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

  max-width: 350px; /* Bild nie breiter als der Container */
  max-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;

}

        .container {
            width: 90%;
            max-width: 1800px;
            margin: 40px auto;
            padding: 20px 10px;

        }

        .container-blog {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 10px;
            background: #000;
        }
        .categories {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .category {
           background-image: url("public2/conatiner-bg.jpg");
    border: 2px solid rgba(166, 141, 92, 0.8); /* Randfarbe angepasst */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(166, 141, 92, 0.1);
    flex: 1 1 calc(25% - 20px);
    max-width: calc(50% - 20px);
    text-align: center;
    transition: transform 0.3s;
            
}

.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 img {
            width: 100%;
            height: 200px;
            width: 180px;
            object-fit: fill;
        }
        .category-content {
            padding: 20px;
        }
        .category-content h3 {
            margin: 0 0 10px;
            font-size: 25px;
            font-weight: 700;
            color: #af9253;
        }
        .category-content p {
            margin: 0;
            font-size: 20px;
            color: #af9253;
            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: #fff;
            padding: 20px 10%;
            margin-top: 40px;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }
        .footer-links a {
            color: #fff;
            text-decoration: none;
            font-size: 14px;
        }
        .footer-links a:hover {
            text-decoration: underline;
        }
        
           .nice-button {
            background-color: #ff7e2c; /* Antazit */
            border: none;
            color: white;
            padding: 15px 30px;
            text-align: center;
            text-decoration: none;
            display: inline-block;
            font-size: 16px;
            margin: 10px 0;
            cursor: pointer;
            border-radius: 8px; /* Abgerundete Ecken */
            box-shadow: 0 4px #242424; /* Schatten */
            transition: all 0.3s ease;
        }

        .nice-button:hover {
            background-color: #3f3f3f; /* Etwas helleres Grün */
            box-shadow: 0 6px #242424;
            transform: translateY(-2px);
        }

        .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: #fff;
    text-decoration: none;
    background: linear-gradient(#af9253, #333);
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    min-width: 300px;
    overflow: hidden;
}



.animated-button:hover {
    background: linear-gradient(#333, #af9253);
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

.animated-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-45deg);
    transition: left 0.4s ease;
    z-index: 1;
}

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


.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;
    max-height: 800px;
  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: 80px 20px;
    background-image: url("public2/speisekarte.jpg");
     background-repeat: no-repeat;       /* Bild wird nicht wiederholt */
    background-size: cover;             /* Bild füllt den Container immer komplett aus */
    background-position: center; 
}

.about-container {
  display: flex;
  flex-wrap: wrap; /* für Mobile */
  align-items: center;
  max-width: 1200px;
    max-height: 400px;
  margin: 0 auto;
    text-align: center;
    
    
}

.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 10px;
}

.about-text h2 {
     margin-top: 0;       /* entfernt den Standard-Abstand nach oben */
  padding-top: 0; 
  font-size: 45px;
  position: center;
    color: #af9253;
    
}


.about-text p {
  font-size: 27px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #af9253;
  align-content: justify;
}

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


.contact {
  background-color: #0e100b;
  padding: 80px 20px;
  text-align: center;
}

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

.contact h2 {
  font-size: 40px;
  margin-bottom: 20px;
  position: relative;
    color: #af9253;
}

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

.contact p {
  font-size: 27px;
  margin-bottom: 40px;
  color: #af9253;;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

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

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

/* 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: #f9f9f9;
  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: #ff7e2c;
  margin-top: 8px;
  border-radius: 2px;
}

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

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

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

/* Mobile */
@media (max-width: 768px) {
  .impressum h2 {
    font-size: 24px;
  }
  .impressum p {
    font-size: 14px;
  }
}
 
.web-development {
  background-color: #f9f9f9;
  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 {
  flex: 1 1 500px;
}

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

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

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

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

.buttons img {
  display: block;
  margin: 1rem auto 1rem 0; /* links kein auto, dadurch rutscht’s nach rechts */
}

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

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

.web-development .btn-outline {
  background-color: transparent;
  border: 2px solid #ff7a59;
  color: #ff7a59;
}

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

.web-development .text-box {
  flex: 1 1 400px;
  background-color: #ff7e2c;
  color: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  font-size: 16px;
  line-height: 1.6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.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: 28px;
  }
  .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: 70vh; /* oder was du brauchst */
  overflow: hidden;
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1; /* hinter den Content legen */
}


.order {
    background-image: url("public2/onlinebestellung.jpg");
     background-repeat: no-repeat;       /* Bild wird nicht wiederholt */
    background-size: cover;             /* Bild füllt den Container immer komplett aus */
    background-position: center; 
}

.order-container {
  display: flex;
  flex-wrap: wrap; /* für Mobile */
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
    text-align: center;
    
    
}

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

.order-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;
}

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

.order-text {
  flex: 2 1;
}

.order-text h2 {
  font-size: 45px;
  position: center;
    color: #af9253;
    
}


.order-text p {
  font-size: 27px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #af9253;
  align-content: justify;
}

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


.liefer {
    background-image: url("public2/lieferservice.jpg");
     background-repeat: no-repeat;       /* Bild wird nicht wiederholt */
    background-size: cover;             /* Bild füllt den Container immer komplett aus */
    background-position: center; 
}

.liefer-container {
  display: flex;
  flex-wrap: wrap; /* für Mobile */
  align-items: center;
  max-width: 1200px;
    min-height: 500px;
  margin: 0 auto;
    text-align: center;
    
    
}

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

.liefer-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;
}

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

.liefer-text {
  flex: 2 1;
}

.liefer-text h2 {
  font-size: 45px;
  position: center;
    color: #af9253;
    
}


.liefer-text p {
  font-size: 27px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #af9253;
  align-content: justify;
}

/* Mobile */
@media (max-width: 768px) {
  .liefercontainer {
    flex-direction: column;
  }
  .liefer-text h2 {
    font-size: 40px;
  }
  .liefer-text p {
    font-size: 20px;
  }
}




       
    </style>