  /* ========== BASICS ========== */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Roboto', sans-serif;
    background: transparent; /* Hintergrundbild kommt durch .fixed-bg */
  }

  /* ========== HINTERGRUND FIXED ========== */
  /* === Fixierter Fullscreen-Hintergrund mit Bild === */
.bg-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
  pointer-events: none; /* verhindert Klickblocker bei Fullscreen */
}

.bg-image {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: brightness(1); /* optional z. B. für dunkleren Look */
}

  /* ========== Scrollen smooth
html {
  scroll-behavior: smooth;
}
========== */



  /* ========== HEADER / NAVIGATION ========== */
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    flex-wrap: wrap;
  }

  header h1 {
    color: white;
    font-size: 1.5rem;
    flex: 1 1 auto;
  }

  .menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    flex: 1 1 100%;
  }

 nav a {
  display: inline-block;
  padding: 6px 12px;
  margin: 0 4px;
  line-height: 1.2;
  vertical-align: middle;
  border-radius: 8px;
  transition: background 0.3s;
  text-decoration: none;
  color: white;
  font-weight: bold;
}

nav a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

nav a.highlight-newsletter {
  background: #8DC63F;
  color: white;
}


  @media (max-width: 991px) {
    .menu-toggle {
      display: block;
    }

    nav {
      display: none; /* ⚠️ JS muss .active setzen */
      flex-direction: column;
      width: 100%;
    }

    nav.active {
      display: flex;
    }
  }

  /* ========== HAUPTINHALT ========== */
  main {
    padding-top: 140px;
    text-align: center;
  }

main {
  padding-top: 0; /* entfernt das überflüssige Padding */
}

.hero-wrapper {
  min-height: unset;          /* kein Mindestabstand nötig */
  padding-top: 75px;          /* statt 120px – spart Höhe */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.logo {
  margin-bottom: 0.3rem;   /* war 0.4rem */
  padding-top: 0;             /* kein zusätzlicher Abstand oben */
}


.claim {
  margin-bottom: 0.5rem;   /* war 0.6rem */
  font-size: 1rem;
  line-height: 1.2;
}
}


.tafel {
  margin-top: 0;
}

.logo {
  display: block;
  margin: 0 auto 1rem auto;
  padding-top: 1.5rem;
  max-width: 480px;
  width: 100%;
  height: auto;

  /* Logo bleibt schwarz */
  filter:
    drop-shadow( 1px  0px 0px white)
    drop-shadow(-1px  0px 0px white)
    drop-shadow( 0px  1px 0px white)
    drop-shadow( 0px -1px 0px white)
    drop-shadow( 0 0 10px #ffffff) /* weicher Glow außenrum */
    drop-shadow(0 0 25px #8DC63F); /* CI-Glow */
  
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
  filter:
    drop-shadow( 1px  0px 0px white)
    drop-shadow(-1px  0px 0px white)
    drop-shadow( 0px  1px 0px white)
    drop-shadow( 0px -1px 0px white)
    drop-shadow(0 0 10px #ffffff)
    drop-shadow(0 0 25px #8DC63F);
}



  .welcome {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8DC63F;
    text-shadow:
      1px 1px 2px #2d4b1b,
      0 0 8px white,
      0 0 15px white,
      0 0 30px white,
      0 0 40px white,
      2px 2px 3px rgba(0,0,0,0.2);
    margin-bottom: 0.5rem;
  }

  /* ========== KARTEN / TEXTBOXEN ========== */
  .card,
  .zahlungsbox {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    margin: 2rem auto;
    width: 90%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: left;
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 2.3;
  }

  .card h2 {
    font-size: 1.3rem;
    color: #2b3e50;
    margin-bottom: 0.5rem;
  }

  .zahlungsbox {
    border-left: 8px solid #8DC63F;
    font-size: 1.06rem;
    line-height: 1.8;
    font-weight: 300;
    box-shadow: 0 0 12px rgba(141, 198, 63, 0.4), 0 0 24px rgba(141, 198, 63, 0.2);
  }

  .zahlungsbox h3 {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    color: #2b3e50;
    margin-bottom: 1rem;
    font-weight: 700;
  }

  .zahlungsbox .lucide {
    width: 24px;
    height: 24px;
    stroke: #8DC63F;
    margin-right: 10px;
    flex-shrink: 0;
  }

  .zahlungsbox a {
    color: #2b3e50;
    text-decoration: underline;
    font-weight: 500;
  }

  .zahlungsbox a:hover {
    color: #8DC63F;
  }

/* ========== EINHEITLICHE BUTTONS ========== */
.button,
.whatsapp-button,
#cookie-box button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  background-color: #25D366;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

.button:hover,
.whatsapp-button:hover,
#cookie-box button:hover {
  background-color: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 0 14px rgba(37, 211, 102, 0.6);
}

.wa-icon {
  height: 20px;
}

  /* ========== TAFEL ========== */
  .tafel {
    background-color: rgba(30, 30, 30, 0.88);
    color: #fefefe;
    padding: 2.5rem 2rem;
    margin: 2rem auto;
    width: 90%;
    max-width: 540px;
    border-radius: 20px;
    font-family: 'Roboto', sans-serif;
    text-align: left;
    animation: glowPulse 2.5s infinite ease-in-out;
    box-shadow: 0 0 18px rgba(141, 198, 63, 0.7), 0 0 36px rgba(141, 198, 63, 0.4);
    line-height: 1.8;
    font-size: 1.1rem;
  }

  .tafel p {
    position: relative;
    padding-right: 70px;
    margin-bottom: 1.4rem;
  }

  .tafel span {
    position: absolute;
    right: 0;
    top: 0;
    font-weight: bold;
    color: #8DC63F;
    min-width: 60px;
    text-align: right;
  }

  .tafel small {
    font-size: 0.9rem;
    color: #ccc;
  }

  @keyframes glowPulse {
    0% {
      box-shadow: 0 0 18px rgba(141, 198, 63, 0.7), 0 0 36px rgba(141, 198, 63, 0.4);
    }
    50% {
      box-shadow: 0 0 28px rgba(141, 198, 63, 1), 0 0 60px rgba(141, 198, 63, 0.7);
    }
    100% {
      box-shadow: 0 0 18px rgba(141, 198, 63, 0.7), 0 0 36px rgba(141, 198, 63, 0.4);
    }
  }

  /* ========== GALLERY ========== */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .gallery-grid a {
    display: block;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }

  .gallery-grid img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
  }

  .gallery-grid img:hover {
    transform: scale(1.08);
  }

  .img-wrapper {
    position: relative;
    display: inline-block;
  }

  .img-wrapper::after,
  .gallery-grid img[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
    margin-bottom: 6px;
  }

  .img-wrapper:hover::after,
  .gallery-grid img[data-tooltip]:hover::after {
    opacity: 1;
  }

  /* ========== LIGHTBOX ========== */
  #lightbox-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  #lightbox-overlay img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
    animation: fadeIn 0.3s ease-in-out;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
  }

  /* ========== COOKIE-BANNER ========== */
  #cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 30, 30, 0.95);
    color: white;
    z-index: 9999;
    font-family: 'Roboto', sans-serif;
    padding: 1.2rem;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.3);
  }

  #cookie-box {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
    text-align: center;
  }

  #cookie-box a {
    color: #8DC63F;
    text-decoration: underline;
    font-size: 0.9rem;
  }

  /* ========== WHATSAPP-BUTTON ========== */
  .wa-icon {
    height: 24px;
    margin-right: 10px;
  }

  

  /* ========== LUCIDE ICONS ========== */
  svg.lucide {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    vertical-align: middle;
    overflow: visible;
  }

  /* ========== NEU ========== */ 


@media (max-width: 600px) {
  .zahlungsbox {
    padding: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    border-left-width: 6px;
  }

  .zahlungsbox h3 {
    display: flex;
    flex-wrap: wrap; /* wichtig für Umbrechen */
    align-items: center;
    gap: 0.4rem;
    font-size: 1.05rem;
  }

  .zahlungsbox .lucide {
    width: 20px;
    height: 20px;
    margin-right: 6px;
  }

  .zahlungsbox p {
    margin-top: 0.6rem;
  }
}



@media (max-width: 600px) {
  .whatsapp-button {
    font-size: 15px;
    padding: 10px 14px;
    border-radius: 24px;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow:
      0 0 3px rgba(0,0,0,0.4),
      0 0 10px rgba(37, 211, 102, 0.6),
      0 0 16px rgba(37, 211, 102, 0.3);
  }

  .wa-icon {
    height: 20px;
    margin-right: 8px;
  }

  .whatsapp-button span {
    display: inline-block;
    width: 100%;
    text-align: center;
    line-height: 1.3;
    margin-top: 4px;
  }
}



/* ========== TEXTAREA & AUTO-IMPORT BUTTON ========== */

.autoimport-form {
  max-width: 800px;
  margin: 2rem auto;
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: left;
}

.autoimport-form textarea {
  width: 100%;
  height: 300px;
  padding: 20px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  resize: vertical;
  font-family: 'Courier New', monospace;
  background: #fefefe;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.autoimport-form textarea:focus {
  border-color: #8DC63F;
  outline: none;
  box-shadow: 0 0 6px rgba(141, 198, 63, 0.4);
}

.autoimport-form button {
  background-color: #8DC63F;
  color: white;
  font-weight: bold;
  padding: 12px 25px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  margin-top: 1.5rem;
}

.autoimport-form button:hover {
  background-color: #78b945;
  transform: translateY(-2px);
}

/* Ausgabe-Bereich */
.output {
  max-width: 800px;
  margin: 3rem auto;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.highlight-newsletter {
  color: #fff;
  font-weight: bold;
  background: #8DC63F;
  padding: 6px 12px;
  border-radius: 10px;
  box-shadow: 0 0 6px rgba(141, 198, 63, 0.6), 0 0 12px rgba(141, 198, 63, 0.4);
  animation: pulseGlow 2.5s infinite;
  transition: all 0.3s ease;
  display: inline-block;
  line-height: 1.2;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 4px rgba(141, 198, 63, 0.4), 0 0 8px rgba(141, 198, 63, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 10px rgba(141, 198, 63, 0.5), 0 0 16px rgba(141, 198, 63, 0.4);
    transform: scale(1.02);
  }
}


section {
  scroll-margin-top: 80px; /* Höhe deines fixierten Headers */
}


.scroll-up {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  opacity: 0.7;
  z-index: 10;
}

.scroll-up:hover {
  background: #8DC63F;
  opacity: 1;
  color: white;
}

.scroll-up svg {
  width: 20px;
  height: 20px;
}
