
:root {
    --color-primary: #ebfb3b;
    --color-secondary: #7b7f4d;
    --color-bg-dark: #0e0e10;
    --color-bg-light: #1c1c1e;
  }
  
  body.p-ai {
    background-color: var(--color-bg-dark);
    color: #f0f0f0;
    scroll-behavior: smooth;
  }
  
  body.p-ai .font-headline {
    font-family: 'Alata', sans-serif;
  }
  
  body.p-ai .font-body {
    font-family: 'Roboto Slab', serif;
  }
  
  #hero-bg {
    background: radial-gradient(ellipse at center, var(--color-bg-light) 0%, var(--color-bg-dark) 70%);
  }
  
  .cta-button {
    background-color: var(--color-primary);
    color: var(--color-bg-dark);
    padding: 0.75rem 2rem;
    font-family: 'Alata', sans-serif;
    font-weight: bold;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px -5px rgba(235, 251, 59, 0.4);
  }
  
  .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -5px rgba(235, 251, 59, 0.6);
  }
  
  .feature-card {
    background-color: rgba(28, 28, 30, 0.5);
    border: 1px solid rgba(123, 127, 77, 0.3);
    padding: 2.5rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    text-align: center;
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px -10px var(--color-primary);
    border-color: var(--color-primary);
  }
  
  .video-container {
    border: 1px solid var(--color-secondary);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
  }
  
  .video-container:hover {
    border-color: var(--color-primary);
    box-shadow: 0 0 30px -10px var(--color-primary);
  }
  
  .video-container video {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .scrollbar-hide::-webkit-scrollbar {
    display: none;
  }
  .scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  
  .carousel-item {
    flex-shrink: 0;
    width: 100%;
    max-width: 90vw;
    snap-align: center;
    padding: 1rem;
  }
  
  .carousel-item > div,
  .carousel-item {
    background-color: rgba(28, 28, 30, 0.5);
    border: 1px solid rgba(123, 127, 77, 0.3);
    padding: 2rem;
    border-radius: 0.5rem;
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(123, 127, 77, 0.5);
    color: white;
    border-radius: 9999px;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s;
  }
  
  .carousel-nav:hover {
    background-color: var(--color-primary);
    color: black;
  }

  /* ... dein restliches CSS hier ... */

@media (max-width: 768px) {
  /* Nur die Navigations-Links ausblenden – nicht das Logo */
  .sticky-nav a:not(#logo-link) {
    display: none;
  }

  #logo-link {
    display: block;
  }

  #logo-link img {
    display: block;
    height: 40px;
    margin: 0 20px;
  }

  .burger-menu {
    display: flex;
  }

  .sticky-nav .burger-menu {
    margin-left: auto;
  }

  .sticky-nav.active {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .sticky-nav.active a {
    display: block;
    margin: 10px 0;
  }
}



  