
    /* Smooth scrolling */
    html {
      scroll-behavior: smooth;
    }
    /* Reset & Basis */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Roboto', sans-serif;
      background: #e4e2dd;
      color: #333;
      line-height: 1.6;
    }
    a {
      color: inherit;
      text-decoration: none;
    }
    /* Navigation */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: rgba(228, 226, 221, 0.8);
      backdrop-filter: blur(5px);
      z-index: 1000;
      padding: 10px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    /* Container für Logo und Menü */
    .nav-container {
      width: 100%;
      max-width: 1200px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    /* Logo in der Navigation */
    .nav-logo {
      height: 40px; /* gewünschte Höhe anpassen */
      width: auto;
      display: block;
    }
    /* Menü */
    .nav-menu {
      list-style: none;
      display: flex;
      align-items: center;
    }
    .nav-menu li {
      margin: 0 15px;
    }
    .nav-menu li a {
      font-weight: bold;
      transition: color 0.3s;
    }
    .nav-menu li a:hover {
      color: #bcbbb8;
    }
    /* Burger Icon (sichtbar auf mobilen Geräten) */
    .burger {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }
    .burger .bar {
      width: 25px;
      height: 3px;
      background-color: #333;
      margin: 4px 0;
      transition: 0.3s;
    }
    /* Header */
    header {
      position: relative;
      width: 100%;
      min-height: 100vh; /* Volle Höhe des Viewports */
      background: url('zorica1.jpeg') no-repeat center center/cover;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      padding-top: 60px; /* Platz für die Navigation */
    }
    header::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom right, #e4e2dd, #bcbbb8);
      opacity: 0.5;
      z-index: 1;
    }
    .header-content {
      position: relative;
      z-index: 2;
      max-width: 600px;
      padding: 20px;
    }
    .header-content h1 {
      font-size: 2.5rem;
      color: #333;
    }
    @media (min-width: 768px) {
      .header-content h1 {
        font-size: 3.5rem;
      }
    }
    /* Allgemeine Sektionen */
    section li {
      padding-left: 1.0em;
      text-indent: -1.4em;
    }
    .section {
      padding: 60px 20px;
    }
    .section-container {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
    }
    /* Reihenfolge umkehren */
    .section-container.reverse {
      flex-direction: row-reverse;
    }
    .section-text, .section-image {
      flex: 1 1 500px;
      padding: 20px;
    }
    .section h2 {
      font-size: 2rem;
      margin-bottom: 20px;
    }
    .section p, .section ul, .section blockquote {
      font-size: 1.1rem;
      margin-bottom: 10px;
    }
    .section ul {
      list-style: disc inside;
      margin-left: 20px;
    }
    .section blockquote {
      font-style: italic;
      padding-left: 20px;
      border-left: 3px solid #bcbbb8;
      margin: 20px 0;
    }
    .section-image img {
      width: 100%;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    /* Kontakt-Icons als Emojis */
    .contact-item {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
      font-size: 1.1rem;
    }
    .contact-item span {
      margin-right: 10px;
    }
    /* Moderne Angebot-Karten */
    .cards-section {
      background: #f9f9f9;
      padding: 60px 20px;
      text-align: center;
    }
    .cards-section h2 {
      margin-bottom: 40px;
      font-size: 2.2rem;
    }
    .cards-container {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .card {      
      border: 1px solid #bcbbb8;
      border-radius: 10px;
      box-shadow: 0 6px 12px rgba(0,0,0,0.1);
      padding: 30px 20px;
      flex: 1 1 300px;
      max-width: 350px;
      transition: transform 0.3s, box-shadow 0.3s;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 400px;
    }
    .cardWrapper {
      z-index: 10;
    }
    .cardBackground {
      position: relative;      
      background-size: 100%;
      background-position: center;
      background-repeat: no-repeat;
    }
    .cardBackground::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom right, #ffffff, #eeeeec);
      opacity: 0.7;
      z-index: 1;
      border-radius: 10px;
    }
    .card1 {
      background-image: url(zorica6.jpeg);
      background-size: 100% auto;
      background-position: top;
    }
    .card2 {
      background-image: url(zorica7.jpeg);
    }
    .card3 {
      background-image: url(zorica8.jpeg);
      background-position: center;
    }
    .card h3 {
      margin-bottom: 15px;
      font-size: 1.6rem;
      color: #333;
    }
    .card p {
      font-size: 1.1rem;
      color: #555;
      line-height: 1.4;
    }
    /* Neuer Block für Preis, damit er eigenständig steht */
    .price {
      font-size: 1.5rem;
      color: #000;
      margin-top: 15px;
      font-weight: bold;
      text-align: center;
    }
    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    }
    .logo {
      max-width: 100%;
    }
    /* Nach oben scroll Button */
    #scrollTopBtn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: #bcbbb8;
      color: #fff;
      border: none;
      padding: 10px 12px;
      border-radius: 50%;
      font-size: 1.5rem;
      cursor: pointer;
      display: none;
      z-index: 1000;
      transition: opacity 0.3s;
    }

    .mySwiper {
      width: 100%;
      height: 500px;
      position: relative;
    }

    .swiper-container {
      width: 90vw;
      overflow: hidden;
    }    

    .swiper-slide {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .swiper-slide img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    /* Navigationspfeile anpassen */
    .swiper-button-next,
    .swiper-button-prev {
      color: #000;
      width: 10px;
      height: 10px;
      top: 50%;
      transform: translateY(-50%);
    }

    .swiper-button-next {
      right: 10px;
    }

    .swiper-button-prev {
      left: 10px;
    }

    /* Pagination zentrieren */
    .swiper-pagination {
      bottom: 15px;
      text-align: center;
    }


    /* Responsive: Mobile Navigation */
    @media (max-width: 768px) {
      .nav-menu {
        position: absolute;
        top: 60px;
        right: 0;
        background: rgba(228, 226, 221, 0.95);
        flex-direction: column;
        width: 100%;
        display: none;
      }
      .nav-menu.active {
        display: flex;
      }
      .nav-menu li {
        margin: 10px 0;
        text-align: center;
      }
      .burger {
        display: flex;
      }
      .nav-container {
        justify-content: space-between;
      }
      /* Header-Content unten positionieren */
      header {
        flex-direction: column;
        justify-content: flex-end;
      }
      .header-content {
        width: 100%;
        text-align: center;
        padding: 20px;
        margin-bottom: 20px;
      }
    }
  