
   :root {
  --main-bg: #f9f7f2;
  --accent: #8b6f57;
  --light: #f5f1eb;
  --highlight: #e8ded1;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  background-color: var(--main-bg);
  color: #333;
  line-height: 1.6;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

header {
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 1rem;
  overflow: hidden;
  position: relative;
}

header::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: var(--header-bg);
  background-size: cover;
  background-position: center;
  transform: translateY(0); will-change: transform;
  
  z-index: 0;
}



header > div {
  position: relative;
  z-index: 1;
}

header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

header p {
  font-size: 1.2rem;
  font-weight: 300;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: var(--accent);
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

section {
  padding: 3rem 2rem;
  max-width: 900px;
  margin: auto;
}

h2 {
  font-family: 'Playfair Display', serif;
  color: #3a3a3a;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.image-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.image-row img {
  flex: 1;
  min-width: 100px;
  object-fit: cover;
  border-radius: 10px;
  max-height: 260px;
  width: 100%;
}

/* Responsive Ergänzungen */
@media (min-width: 768px) {
  .ueber-container {
    display: flex;
    flex-direction: row;
    gap: 2rem;
  }

  .image-row {
    flex-direction: column;
    flex: 1;
  }

  .ueber-text {
    flex: 2;
    padding-left: 2rem;
  }
}

@media (max-width: 767px) {
  .image-row {
    flex-direction: column;
    gap: 1rem;
  }
  .image-row img {
    width: 100%;
    max-height: none;
  }
  .ueber-container {
    flex-direction: column;
  }
  .ueber-text {
    padding-left: 0;
  }
}
  
  .contact-buttons a {
    background-color: transparent;
    color: #25d366;
    padding: 0.5rem;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.6rem;
    box-shadow: none;
    width: 3.2rem;
    height: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
  }

  .contact-buttons a:hover {
    background-color: #e0f8ea;
  }

/* Desktop gallery */
.gallery-wrapper {
  position: relative;
  display: none;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.gallery-desktop-scroll {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  gap: 1rem;
  padding: 0.5rem 0;
}

.gallery-desktop-scroll img {
  height: 400px;
  border-radius: 8px;
  scroll-snap-align: center;
  flex: 0 0 auto;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .gallery-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto 2rem auto;
  }

  .image-row,
  .mobile-slider,
  .swipe-hint {
    display: none !important;
  }

  .gallery-desktop-scroll {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scroll-padding: 0;
    gap: 0;
  }

  .gallery-wrapper::before,
  .gallery-wrapper::after {
    display: none;
  }
}



.cta-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: #8b6f57;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.cta-button:hover {
  background-color: #755c47;
}
.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-section.visible {
  opacity: 1;
  transform: none;
}
.image-slider {
  display: none;
}
@media (max-width: 767px) {
  .image-row {
    display: none !important;
  }
  .image-slider {
    display: block;
    overflow-x: scroll;
    white-space: nowrap;
    margin-top: 1rem;
  }
  .image-slider-track {
    display: flex;
    gap: 1rem;
  }
  .image-slider-track img {
    width: 100%;
    max-width: 80%;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
}

  .contact-buttons a {
    background-color: transparent;
    color: #25d366;
    padding: 0.5rem;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.6rem;
    box-shadow: none;
    width: 3.2rem;
    height: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
  }

  .contact-buttons a:hover {
    background-color: #e0f8ea;
  }



.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: white;
  cursor: pointer;
  animation: bounce 2s infinite;
  z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}
.cta-button {
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.cta-button:hover {
  box-shadow: 0 6px 14px rgba(0,0,0,0.3);
  transform: translateY(-1px);
}
header::before {
  will-change: transform;
  transition: transform 0.3s ease-out;
}
  .contact-buttons a {
    background-color: transparent;
    color: #25d366;
    padding: 0.5rem;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.6rem;
    box-shadow: none;
    width: 3.2rem;
    height: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
  }

  .contact-buttons a:hover {
    background-color: #e0f8ea;
  }



.whatsapp-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  font-size: 1rem;
  font-weight: bold;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.3s ease;
}
.whatsapp-fab:hover {
  background-color: #1ebe5d;
}
.whatsapp-fab i {
  font-size: 1.2rem;
}
@media (max-width: 767px) {
  .whatsapp-fab {
    bottom: 15px;
    right: 15px;
    padding: 0.65rem 1rem;
    font-size: 0.95rem;
  }
}
.arrow i {
  transition: transform 0.3s ease;
}



   html {
    scroll-behavior: smooth;
  }
  
  .contact-buttons a {
    background-color: transparent;
    color: #25d366;
    padding: 0.5rem;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.6rem;
    box-shadow: none;
    width: 3.2rem;
    height: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
  }

  .contact-buttons a:hover {
    background-color: #e0f8ea;
  }



   #ueber {
    font-family: 'Lato', sans-serif;
    background-color: #f9f7f2;
    padding: 3rem 2rem;
    line-height: 1.7;
  }
  .ueber-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: auto;
  }
  .image-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 1rem;
  }
  .image-row img {
    flex: 1;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    max-height: 280px;
  }
  .ueber-text p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: #333;
  }
  .ueber-text strong {
    color: #8b6f57;
  }
  @media (min-width: 768px) {
    .ueber-container {
      flex-direction: row;
      align-items: stretch;
    }
    .image-row {
      flex-direction: column;
      flex: 1;
      justify-content: space-between;
    }
    .ueber-text {
      flex: 2;
      padding-left: 2rem;
    }
  }
  
  .contact-buttons a {
    background-color: transparent;
    color: #25d366;
    padding: 0.5rem;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.6rem;
    box-shadow: none;
    width: 3.2rem;
    height: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
  }

  .contact-buttons a:hover {
    background-color: #e0f8ea;
  }



   .timeline {
      display: grid;
      grid-template-columns: 60px 1fr;
      gap: 1rem;
      align-items: start;
    }
    .timeline-icon {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background-color: #e8ded1;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      font-size: 1.5rem;
      color: #8b6f57;
    }
    .timeline-content {
      background-color: #fff;
      padding: 1rem;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    .timeline-content h3 {
      margin-top: 0;
      color: #8b6f57;
    }
  
  .contact-buttons a {
    background-color: transparent;
    color: #25d366;
    padding: 0.5rem;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.6rem;
    box-shadow: none;
    width: 3.2rem;
    height: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
  }

  .contact-buttons a:hover {
    background-color: #e0f8ea;
  }



 #ablauf {
    background-color: #f9f7f2;
    padding: 3rem 2rem;
    font-family: 'Lato', sans-serif;
    max-width: 900px;
    margin: auto;
  }
  .timeline {
    position: relative;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 3px solid #8b6f57;
  }
  .timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  .timeline-item.visible {
    opacity: 1;
    transform: none;
  }
  .timeline-marker {
    position: absolute;
    left: -21px;
    top: 0;
    width: 34px;
    height: 34px;
    background-color: #8b6f57;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    box-shadow: 0 0 0 3px #f9f7f2;
  }
  .timeline-content h3 {
    color: #8b6f57;
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
  }
  .timeline-content p {
    color: #2e2e2e;
    font-size: 1.05rem;
    line-height: 1.6;
  }
  .timeline-content strong {
    color: #8b6f57;
  }
  .timeline-content a {
    color: #8b6f57;
    text-decoration: underline;
  }

  .contact-buttons a {
    background-color: transparent;
    color: #25d366;
    padding: 0.5rem;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.6rem;
    box-shadow: none;
    width: 3.2rem;
    height: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
  }

  .contact-buttons a:hover {
    background-color: #e0f8ea;
  }



 .testimonials {
    background-color: #f5f1eb;
    padding: 3rem 2rem;
    font-family: 'Lato', sans-serif;
  }
  .testimonial-list {
    display: grid;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
  }
  .testimonial {
    background: white;
    padding: 1.5rem;
    border-left: 4px solid #8b6f57;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  .quote {
    font-style: italic;
    font-size: 1.05rem;
    color: #3a3a3a;
    margin-bottom: 0.8rem;
  }
  .author {
    font-weight: bold;
    color: #8b6f57;
    font-size: 0.95rem;
  }

  .contact-buttons a {
    background-color: transparent;
    color: #25d366;
    padding: 0.5rem;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.6rem;
    box-shadow: none;
    width: 3.2rem;
    height: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
  }

  .contact-buttons a:hover {
    background-color: #e0f8ea;
  }



 .faq-question {
    background-color: #e8ded1;
    color: #3a3a3a;
    padding: 1rem;
    width: 100%;
    border: none;
    text-align: left;
    font-size: 1rem;
    cursor: pointer;
    font-weight: bold;
    border-bottom: 1px solid #ccc;
    transition: background-color 0.3s ease;
  }
  .faq-question:hover {
    background-color: #dfd3c5;
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1rem;
    background-color: #f5f1eb;
    border-bottom: 1px solid #ccc;
    transition: max-height 0.5s ease, padding 0.3s ease;
  }
  .faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1rem;
  }

  .contact-buttons a {
    background-color: transparent;
    color: #25d366;
    padding: 0.5rem;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.6rem;
    box-shadow: none;
    width: 3.2rem;
    height: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
  }

  .contact-buttons a:hover {
    background-color: #e0f8ea;
  }



  .faq-question {
    background-color: #e8ded1;
    color: #3a3a3a;
    padding: 1rem;
    width: 100%;
    border: none;
    text-align: left;
    font-size: 1rem;
    cursor: pointer;
    font-weight: bold;
    border-bottom: 1px solid #ccc;
    transition: background-color 0.3s ease;
  }
  .faq-question:hover {
    background-color: #dfd3c5;
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1rem;
    background-color: #f5f1eb;
    border-bottom: 1px solid #ccc;
    transition: max-height 0.5s ease, padding 0.3s ease;
  }
  .faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1rem;
  }
  .faq-answer p {
    margin: 0 0 1rem 0;
    line-height: 1.6;
    color: #2e2e2e;
  }
 
  .contact-buttons a {
    background-color: transparent;
    color: #25d366;
    padding: 0.5rem;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.6rem;
    box-shadow: none;
    width: 3.2rem;
    height: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
  }

  .contact-buttons a:hover {
    background-color: #e0f8ea;
  }



 #impressum h2 {
    background-color: #e8ded1;
    color: #3a3a3a;
    padding: 1rem;
    margin: 0;
    cursor: pointer;
    font-weight: bold;
    border-bottom: 1px solid #ccc;
    transition: background-color 0.3s ease;
  }
  #impressum h2:hover {
    background-color: #dfd3c5;
  }
  #impressum-content {
    max-height: 0;
    overflow: hidden;
    background-color: #f5f1eb;
    transition: max-height 0.5s ease, padding 0.3s ease;
    padding: 0 1rem;
  }
  #impressum.active #impressum-content {
    max-height: 1000px;
    padding: 1rem;
  }

  .contact-buttons a {
    background-color: transparent;
    color: #25d366;
    padding: 0.5rem;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.6rem;
    box-shadow: none;
    width: 3.2rem;
    height: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
  }

  .contact-buttons a:hover {
    background-color: #e0f8ea;
  }
