/* /Layout/MainLayout.razor.rz.scp.css */
/* ============================================
   Layout-Container & Hintergrund
   ============================================ */
   .page[b-ce2i2kb5zd] {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: rgb(63, 63, 63);
    min-height: 100vh;
    background-image:
      linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)),
      url("/images/bg2.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    background-blend-mode: multiply;
    transition: background-size 0.3s ease;
  }
  
  /* ============================================
     Header-Bereich (Top-Row)
     ============================================ */
  .top-row[b-ce2i2kb5zd] {
    background-color: transparent;
    border-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 20rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 2rem;
    transition: height 0.3s ease, padding 0.3s ease;
  }
  
  /* Nav-Links im Header */
  .top-row[b-ce2i2kb5zd]  .nav .btn-goldblack {
    margin-left: 1rem;
  }
  
  /* ============================================
     Footer-Styles
     ============================================ */
  .footer[b-ce2i2kb5zd] {
    background: transparent;
    color: #fff;
  }
  .footer-box[b-ce2i2kb5zd] {
    background: #000;
    border: 1px solid #444;
    border-radius: 1rem;
    height: 100%;
  }
  .footer-link[b-ce2i2kb5zd] {
    color: #d4af37;
    text-decoration: none;
  }
  .footer-link:hover[b-ce2i2kb5zd],
  .footer-link:focus[b-ce2i2kb5zd] {
    text-decoration: underline;
  }
  
/* WhatsApp Floating Badge */
.whatsapp-container[b-ce2i2kb5zd] {
  position: fixed;
  bottom: 20px;
  right: 20px;
  pointer-events: none; /* Klicks gehen direkt zum Badge durch */
  z-index: 1000;
}

.whatsapp-container .whatsapp-badge[b-ce2i2kb5zd] {
  pointer-events: auto; /* Badge weiterhin klickbar */
}

/* Badge-Grundstyle */
.whatsapp-badge[b-ce2i2kb5zd] {
  position: fixed;
  bottom: 0px;
  right: 110px;
  width: 100px;
  height: 100px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  transition: transform 0.2s ease;
  z-index: 1000;
}

.whatsapp-badge:hover[b-ce2i2kb5zd] {
  transform: scale(1.1);
}

/* Clippy statisch über dem Badge */
.clippy[b-ce2i2kb5zd] {
  position: absolute;
  bottom: 200px; /* Abstand von unten – justiere nach Belieben */
  right: 250px;  /* Abstand von rechts – justiere nach Belieben */
  width: 90px;
  height: 150px;
  opacity: 0;
  animation: clippyPop-b-ce2i2kb5zd 10s ease-out forwards 1.5s;
  }
  
  @keyframes clippyPop-b-ce2i2kb5zd {
    0%   { transform: scale(1.0) translateY(40px); opacity: 0; }
    60%  { transform: scale(1.0) translateY(-10px); opacity: 1; }
    100% { transform: scale(1.0) translateY(0); }
  }

/* Sprechblase */
.speech[b-ce2i2kb5zd] {
  position: absolute;
  top: 0;         /* über Clippy */
  right: -100px;  /* passt sich Clippy an */
  background: rgba(255,255,255,0.9);
  color: #000;
  font-weight: bold;
  font-style: oblique;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  white-space: nowrap;
  height: 40px;
  width: 250px;
}

/* Dreieck unten links an der Sprechblase */
.speech-tail[b-ce2i2kb5zd] {
  position: absolute;
  bottom: -0.5rem;
  left: 200px; /* setzt sich zur Breite der Sprechblase */
  width: 0;
  height: 0;
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-top: 0.5rem solid rgba(255,255,255,0.9);
}
  
  /* ============================================
     Responsive Breakpoints für Header & Layout
     ============================================ */
  /* Kleine Handys (bis 320px) */
  @media (max-width: 320px) {
    .top-row[b-ce2i2kb5zd] {
      flex-direction: column;
      align-items: flex-start;
      height: auto;
      padding: 0.5rem 1rem;
    }
    .top-row[b-ce2i2kb5zd]  .nav {
      width: 100%;
      justify-content: space-around;
      flex-wrap: wrap;
    }
  }
  
  /* Smartphones Hochformat (bis 480px) */
  @media (max-width: 480px) {
    .page[b-ce2i2kb5zd] {
      background-size: cover;
      background-position: top center;
    }
    .top-row[b-ce2i2kb5zd] {
      height: auto;
      padding: 0.75rem 1rem;
    }
    .top-row[b-ce2i2kb5zd]  .nav .btn-goldblack {
      margin: 0.5rem 0;
      min-width: 6rem;
      height: 2.5rem;
      font-size: 0.9rem;
    }
  }
  
  /* Smartphones Querformat & kleine Tablets (bis 768px) */
  @media (max-width: 768px) {
    .page[b-ce2i2kb5zd] {
      background-position: top center;
    }
    .top-row[b-ce2i2kb5zd] {
      padding: 1rem;
    }
    .top-row[b-ce2i2kb5zd]  .nav .btn-goldblack {
      min-width: 7rem;
      height: 2.75rem;
      font-size: 0.95rem;
    }
  }
  
  /* Tablets & kleine Laptops (bis 1024px) */
  @media (max-width: 1024px) {
    .top-row[b-ce2i2kb5zd] {
      padding: 1.5rem 2rem;
      height: 15rem;
    }
    .top-row[b-ce2i2kb5zd]  .nav .btn-goldblack {
      min-width: 8rem;
      height: 3rem;
      font-size: 1rem;
    }
  }
  
  /* Desktop (ab 1025px) */
  @media (min-width: 1025px) {
    .page[b-ce2i2kb5zd] {
      background-size: 100% auto;
    }
    .top-row[b-ce2i2kb5zd] {
      height: 20rem;
      padding: 2rem 3rem;
    }
  /* ─────────────────────────────────────────────────────────── */
/* RESPONSIVE ANPASSUNGEN                                   */
/* ─────────────────────────────────────────────────────────── */

/* Tablets & große Smartphones (bis 1024px) */
@media (max-width: 1024px) {
  .whatsapp-badge[b-ce2i2kb5zd] {
    width: 80px;
    height: 80px;
    right: 80px;
  }
  .clippy[b-ce2i2kb5zd] {
    bottom: 160px;
    right: 200px;
    width: 70px;
    height: 120px;
  }
  .speech[b-ce2i2kb5zd] {
    width: 200px;
    height: 35px;
    right: -80px;
    font-size: 0.8rem;
  }
  .speech-tail[b-ce2i2kb5zd] {
    left: 160px;
  }
}

/* Smartphones (bis 640px) */
@media (max-width: 640px) {
  .whatsapp-badge[b-ce2i2kb5zd] {
    width: 60px;
    height: 60px;
    right: 60px;
    bottom: 10px;
  }
  .clippy[b-ce2i2kb5zd] {
    bottom: 120px;
    right: 140px;
    width: 50px;
    height: 90px;
  }
  .speech[b-ce2i2kb5zd] {
    width: 160px;
    height: 30px;
    right: -70px;
    font-size: 0.75rem;
    padding: 0.4rem 0.6rem;
  }
  .speech-tail[b-ce2i2kb5zd] {
    left: 120px;
  }
}
}
  
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-uegglx5af1] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-uegglx5af1] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-uegglx5af1] {
    font-size: 1.1rem;
}

.bi[b-uegglx5af1] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-uegglx5af1] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-uegglx5af1] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-uegglx5af1] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-uegglx5af1] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-uegglx5af1] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-uegglx5af1] {
        padding-bottom: 1rem;
    }

    .nav-item[b-uegglx5af1]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-uegglx5af1]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-uegglx5af1]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-uegglx5af1] {
        display: none;
    }

    .collapse[b-uegglx5af1] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .nav-scrollable[b-uegglx5af1] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
