/* Mobile Optimierung */
@media only screen and (max-width: 768px) {

  html, body {
    font-size: 14px;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    width: 100%;
  }

  .section,
  .dark-section,
  #kontakt,
  #galerie,
  #anfahrt,
  #ueber-uns {
    padding: 3rem 1rem;
  }

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  background: none !important;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/banner.jpg") no-repeat center 10%;
  background-size: contain;
  background-color: #000;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.hero-content {
  position: relative !important;
  z-index: 3 !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 0 1rem 40rem 1rem; /* ↑ weiter runter (6rem = Abstand über Scroll-Icon) */
  height: 100%;
  width: 100%;
  background: transparent;
}



#hero-title {
  font-size: 2.4rem !important;
  font-weight: bold !important;
  color: #fff !important;
  opacity: 1 !important;
  display: block !important;
  position: relative !important;
  z-index: 4 !important;
  text-shadow:
    0 0 6px rgba(0, 0, 0, 0.8),
    0 0 12px rgba(0, 0, 0, 0.4) !important;
}


  .ueber-uns-flex {
    flex-direction: column;
    gap: 2rem;
  }

  .section h2 {
    font-size: 1.5rem;
  }

  .section ul li {
    font-size: 1rem;
  }

  .kundenmeinungen-container {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden;
    gap: 1rem;
    padding: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .meinungskarte {
    flex: 0 0 auto;
    width: 80vw;
    max-width: 300px;
    scroll-snap-align: center;
  }

  .meinungskarte.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .galerie-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 1rem;
    padding: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

  .galerie-container img {
    flex: 0 0 auto;
    width: 80vw;
    max-width: 300px;
    border-radius: 12px;
    scroll-snap-align: center;
  }

  .galerie-container img:active {
    transform: scale(0.98);
  }

  .map-container iframe {
    height: 250px;
  }

  .kontakt-form {
    padding: 0 1rem;
  }

  .whatsapp-button img {
    width: 50px;
    height: 50px;
  }

 .scroll-indicator {
  position: absolute;
  bottom: 10rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

/* Cookie-Banner im Footer-Stil mit Blur (nur mobil) */
/* Mobiler Cookie-Banner – unteres Viertel, Blur, Footer-Stil */
.cookie-banner-hero {
  position: fixed;
  bottom: 0;                   /* WICHTIG: unten fixieren */
  left: 0;
  width: 100%;
  height: 25vh;                /* unteres Viertel des Viewports */
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  text-align: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease;
  border-top: 1px solid var(--accent-color);
  font-size: 0.9rem;
  box-sizing: border-box;

  /* Verhindert dass es oben hängt */
  top: auto !important;
}


.cookie-banner-hero.show {
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner-hero p {
  margin: 0 0 1rem;
  color: #fff;
  max-width: 90%;
  line-height: 1.4;
}

.cookie-banner-hero a {
  color: var(--accent-color);
  text-decoration: underline;
  margin-left: 0.3rem;
}

.cookie-banner-hero button {
  background: var(--accent-color);
  color: #000;
  border: none;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 30px;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-banner-hero button:hover {
  background: #6d8652;
  color: #fff;
}
}
