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

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f8f8f8;
  color: #222;
}


/* === NAVBAR + SPRACHAUSWAHL GESAMT === */
.navbar-wrapper {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 2rem;
  z-index: 1000;
}

/* === NAVBAR === */
.navbar {
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 0.6rem 1.2rem;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.navbar a {
  text-decoration: none;
  font-weight: 600;
  color: #333;
  transition: all 0.3s ease;
}

.navbar a:hover {
  color: #f6a800;
}

.navbar a.anfrage {
  background-color: #f6a800;
  color: #fff;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.navbar a.anfrage:hover {
  background-color: #e89a00;
}

/* === SPRACHAUSWAHL === */
.language-container {
  position: relative;
}

/* Sprachmenü */
.language-selector {
  position: relative;
}

/* Hauptbutton */
.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #ffffff;
  border: none;
  border-radius: 25px;
  padding: 0.6rem 1rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background-color: #f6a800;
  color: #fff;
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.lang-btn:hover .arrow {
  border-color: #fff;
}

.flag-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
}

.lang-btn span {
  font-size: 0.9rem;
  color: #333;
  transition: color 0.3s ease;
}

.lang-btn:hover span {
  color: #fff;
}

/* Pfeil */
.arrow {
  border: solid #777;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  margin-left: 4px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.lang-btn.active .arrow {
  transform: rotate(-135deg);
}

/* Dropdown */
.lang-dropdown {
  position: absolute;
  top: 110%;
  right: 0;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  list-style: none;
  padding: 0.4rem 0;
  margin: 0;
  display: none;
  flex-direction: column;
  min-width: 160px;
  animation: fadeIn 0.2s ease;
}

.lang-dropdown.show {
  display: flex;
}

/* Dropdown-Links */
.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  width: 100%;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.lang-dropdown a:hover {
  background-color: #f6a800;
  color: #fff;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .navbar-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
  }

  .navbar ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .lang-btn {
    width: 100%;
    justify-content: center;
  }

  .lang-dropdown {
    left: 0;
    width: 100%;
  }
}







.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.hero-text {
  position: absolute;
  z-index: 2;
  top: 30%;
  left: 10%;
  color: white;
  font-size: 2.5rem;
  max-width: 500px;
}

.cta {
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: black;
  color: white;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
}

.slideshow {
  height: 100%;
  width: 100%;
  position: relative;
}

.slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 2;
}

.controls button {
  background: rgba(255,255,255,0.8);
  border: none;
  border-radius: 50%;
  padding: 0.5rem 0.75rem;
  font-size: 1.25rem;
  cursor: pointer;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 3rem 2rem;
}

.card {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.card.highlight {
  background: url('img4.jpg') center/cover;
  color: white;
  font-weight: bold;
}

.video-preview {
  font-size: 3rem;
  text-align: center;
  line-height: 180px;
}







/* INDEX SYTELS AB HIER */


    body {
      font-family: Arial, sans-serif;
      margin: 0;
      background-color: #f9f9f9;
    }

    * {
      font-family: 'Poppins', sans-serif;
    }

   


    header {
      position: relative;
      width: calc(100% - 4rem);
      margin: 6rem auto 2rem auto;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }

  

    .visible {
      opacity: 1 !important;
      transform: scale(1) !important;
    }

    

    .fade-in {
      opacity: 1 !important;
      transform: translate(-50%, -50%) !important;
    }

    .intro-section {
      display: flex;
      justify-content: space-between;
      margin: 4rem 2rem 2rem 2rem;
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 1s ease, transform 1s ease;
      text-align: justify;
    }

    .intro-section.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .intro-left, .intro-right {
      width: 48%;
    }

    .intro-left h2 {
      font-size: 2.5rem;
      font-weight: 300;
      padding-left: 12rem;
    }

    .intro-right p {
      font-size: 1.1rem;
      color: #333;
    }

    .fade-in-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}




#headerImg {
  position: relative;
  width: 100%;
  height: 60vh; /* oder z. B. 70vh – je nach gewünschter Höhe */
  background-image: url('bilder/000_cover.jpg'); /* Pfad zum Bild */
  background-size: cover; /* Bild füllt den Bereich */
  background-position: center; /* zentriert das Bild */
  background-repeat: no-repeat;
  display: flex;
  align-items: center; /* vertikal zentrieren */
  justify-content: center; /* horizontal zentrieren */
  color: white; /* Textfarbe */
  text-align: center;
}


.header-text {
  position: relative;
  z-index: 2;
  padding: 2rem 3rem;
  border-radius: 10px;
  text-shadow: #333 1px 1px 4px;
}

.header-text h1 {
  font-size: 3rem;
  margin: 0;
}

.header-text p {
  font-size: 1.3rem;
  margin-top: 0.5rem;
}








    /* SLIDER */

.slider-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 4rem 2rem;
    padding: 3rem;
    background-color: #e9e9e9;
    border-radius: 20px;
  }

  .slider-text {
    font-size: 3rem;
    font-weight: 400;
    color: #333;
    width: 48%;
    padding-left: 3rem;
  }

  .slider-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: #555;
  }

  .features-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.9rem;
    color: #333;
    width: 90px;
    text-align: center;
  }

  .feature-item img {
    width: 32px;
    height: 32px;
    margin-bottom: 0.5rem;
  }

  .slider {
    position: relative;
    width: 700px;
    height: 450px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  }

  .slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 1s ease;
  }

  .slides img {
    width: 700px;
    height: 450px;
    object-fit: cover;
    flex-shrink: 0;
  }

  /* Dots für die Galerie */

.dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
  }

  .dot {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .dot.active {
    background-color: #ffb95f;
  }

  .dot:hover {
    background-color: #ffb95f;
  }


/* Arrow Buttons im Slider */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 0.4rem 0.8rem;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.3s ease, transform 0.2s ease;
  z-index: 10;
}

.slider-arrow-left {
  left: 15px;
}

.slider-arrow-right {
  right: 15px;
}

.slider-arrow:hover {
  background-color: rgba(0, 0, 0, 0.6);
  transform: translateY(-50%) scale(1.1);
}







/* FLUG BUCHEN UND KARTE */

   .intro-combined-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 4rem 2rem;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .intro-left {
    flex: 1;
    min-width: 250px;
  }

  .flug-button-container {
    display: flex;
    justify-content: flex-start;
  }

  .flug-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-left: 15rem;
  }

  .flug-button:hover {
    background-color: #0056b3;
  }

  .map-frame {
    flex: 1;
    max-width: 580px;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    margin-right: 6rem;
  }

  .map-frame iframe {
    width: 100%;
    height: 100%;
    display: block;
  }

/* BILD ÜBER DEM FLUG-BUTTON */
  .bild-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.flugbild {
  width: 90%;
  max-width: 600px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}



/* BEWERTUNGEN */

.bewertungen-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 1rem;
}

.bewertungen-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bewertungen-heading {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: #333;
  align-self: flex-start;
  margin-left: 1rem;
}

/* Einzelne Bewertung */
.bewertung {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 1.2rem 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, max-height 0.5s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-height: 320px; /* Vorschau */
  position: relative;
  cursor: pointer;
}

.bewertung:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.bewertung.expanded {
  max-height: 1000px; /* großzügig, wird aber automatisch vom Text bestimmt */
}

/* Name, Info & Text */
.bewertung-name {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.bewertung-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  color: #666;
}

.sterne {
  color: #ffb95f;
  font-size: 1rem;
  letter-spacing: 1px;
}

.datum {
  font-weight: 500;
}

.dauer {
  font-style: italic;
  color: #999;
}

.bewertung-text {
  text-align: justify;
  display: -webkit-box;
  -webkit-line-clamp: 5; /* Vorschau auf 5 Zeilen */
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease;
}

.bewertung.expanded .bewertung-text {
  -webkit-line-clamp: unset;
  overflow: visible;
}

.toggle-btn {
  margin-top: 1rem;
  align-self: flex-end;
  background-color: transparent;
  color: #1082fc;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.toggle-btn:hover {
  color: #0056c7;
}




/* INFOS: Anreise & Abreise */
.info-block {
  width: 100%;
  background-color: #ffffff;
  padding: 2rem 3rem; /* Innenabstand */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin: 3rem 0;
}

.info-container {
  display: flex;
  justify-content: space-between; /* Anreise & Abreise nebeneinander */
  max-width: 1200px; /* Breite der Inhalte, zentriert */
  margin: 0 auto;
  gap: 2rem;
  flex-wrap: wrap; /* bei kleinen Screens untereinander */
}

.info-section {
  flex: 1 1 45%; /* zwei Spalten, etwas Abstand */
  min-width: 250px; /* verhindert zu kleine Spalten */
}

.info-subheading {
  font-size: 1.3rem;
  color: #1082fc;
  margin-bottom: 0.5rem;
}

.info-section p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin: 0.3rem 0;
}

@media (max-width: 768px) {
  .info-container {
    flex-direction: column;
  }
  .info-section {
    flex: 1 1 100%;
  }
}

/* AKTIVITÄTEN & FAQ */

*.activities-faq-container {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1200px;
  margin: 5rem auto;
  padding: 2rem;
  flex-wrap: wrap; /* bei kleinen Bildschirmen untereinander */
} 
.activities-faq-block {
  width: 100%;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 2rem 3rem;
  margin: 3rem 0;
  max-width: 1200px; /* genauso wie Bewertungen */
  margin-left: auto;
  margin-right: auto;
}

.activities-section, .faq-section {
  margin-bottom: 2rem;
}

.activities-heading, .faq-heading {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 1rem;
}

.activities-list {
  list-style-type: disc;
  padding-left: 1.2rem;
}

.activities-list li, .faq-item {
  margin-bottom: 0.5rem;
}

/* Button zum Ausklappen */
.toggle-btn-activities, .toggle-btn-faq {
  margin-top: 0.5rem;
  align-self: flex-start;
  background-color: transparent;
  color: #1082fc;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
}

.toggle-btn-activities:hover, .toggle-btn-faq:hover {
  color: #0056c7;
}

.faq-item .question {
  font-weight: 600;
  color: #ffb95f;
  margin-bottom: 0.3rem;
}

.faq-item .answer {
  color: #555;
  line-height: 1.6;
  margin-left: 1rem;
}

/* nur die ersten 3 Elemente anzeigen */
.activities-list li:nth-child(n+4), .faq-item:nth-child(n+4) {
  display: none;
}


.faq-item {
  list-style: none;
}







.activities-cards-container {
  display: flex;
  gap: 2rem;
  margin: 3rem auto;
  max-width: 1200px; /* gleiche Breite wie Bewertungen */
}

.activities-left {
  flex: 1;
}

.cards-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}




/* =============================== */
/* FAQ + INFO-CARDS LAYOUT */
/* =============================== */

/* Gemeinsamer Wrapper für FAQ & Info-Cards */
.faq-and-cards {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem; /* Abstand zwischen FAQ und Cards */
  max-width: 1200px;
  margin: 5rem auto;
  padding: 2rem;
}

/* FAQ-Bereich */
.faq-section {
  flex: 1;
  max-width: 550px;
}

/* =============================== */
/* INFO-CARDS (Apple Erinnerungen Stil) */
/* =============================== */

.info-cards-section {
  flex: 1;
  max-width: 550px; /* Etwa so breit wie der FAQ-Bereich */
  text-align: center;
}

/* Überschrift */
.info-cards-heading {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.5rem;
}

/* Raster (2x2) */
.info-cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* genau 2 Spalten */
  grid-template-rows: repeat(2, 1fr); /* genau 2 Zeilen */
  gap: 1.5rem;
  justify-items: center;
}

/* Einzelne Karte */
.info-card {
  background: transparent;
  width: 100%;
  max-width: 240px; /* kleiner als vorher */
  height: 160px; /* kompakter */
  perspective: 1000px;
  cursor: pointer;
  border-radius: 18px;
  transition: transform 0.4s ease;
}

.info-card:hover {
  transform: scale(1.05);
}

/* Flip-Effekt */
.info-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
}

.info-card.flipped .info-card-inner {
  transform: rotateY(180deg);
}


/* Vorder- & Rückseite */
.info-card-front,
.info-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  backface-visibility: hidden;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #333;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08),
              inset 0 1px 1px rgba(255, 255, 255, 0.6);
}

/* Vorderseite – weiche, helle Pastell-Verläufe */
.info-card-front {
  background: linear-gradient(135deg, #fdfbfb, #ebedee);
}

/* Optional: jede Karte leicht andere Farbe geben */
.info-card:nth-child(1) .info-card-front {
  background: linear-gradient(145deg, #ffd6e8, #ffeef8);
}
.info-card:nth-child(2) .info-card-front {
  background: linear-gradient(145deg, #d6f0ff, #e8f7ff);
}
.info-card:nth-child(3) .info-card-front {
  background: linear-gradient(145deg, #e6ffe6, #f4fff4);
}
.info-card:nth-child(4) .info-card-front {
  background: linear-gradient(145deg, #fff4cc, #fff8e1);
}

/* Titel und Text */
.info-card-front h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.info-card-front p {
  color: #555;
  font-size: 0.9rem;
}

/* Rückseite – kräftiger, aber weich */
.info-card-back {
  transform: rotateY(180deg);
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.5;
  background: linear-gradient(145deg, #4da3ff, #1082fc);
  box-shadow: 0 8px 25px rgba(16, 130, 252, 0.4);
}



/* Hover-Effekt: sanftes Anheben (nur gesamte Karte, nicht Front/Back einzeln) */
.info-card:hover {
  transform: scale(1.05) translateY(-4px);
}

/* Flip-Effekt */
.info-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.info-card.flipped .info-card-inner {
  transform: rotateY(180deg);
}

/* Vorder- & Rückseite */
.info-card-front,
.info-card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden; /* für Safari */
  overflow: hidden;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #eaeaea;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08),
              inset 0 1px 1px rgba(255, 255, 255, 0.6);
  transition: box-shadow 0.3s ease;
}

/* Vorderseite – Apple-inspirierte Pastell-Verläufe */
.info-card-front {
  background: linear-gradient(135deg, #fdfbfb, #ebedee);
}

/* Farbvarianten */
.info-card:nth-child(1) .info-card-front {
  background: linear-gradient(135deg, #6eb6ff, #4a90e2);
}
.info-card:nth-child(2) .info-card-front {
  background: linear-gradient(135deg, #7cd992, #5cbf73);
}
.info-card:nth-child(3) .info-card-front {
  background: linear-gradient(135deg, #ffb870, #f29b50);
}
.info-card:nth-child(4) .info-card-front {
  background: linear-gradient(135deg, #ff7c94, #e24aaa);
}





/* Text-Styles */
.info-card-front h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.info-card-front p {
  color: #f5f5f5;
  font-size: 0.9rem;
}

/* Rückseite – kräftiger Verlauf */
.info-card-back {
  transform: rotateY(180deg);
  background: linear-gradient(145deg, #3d3d3d, #3f3f3f);
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.5;
  box-shadow: 0 8px 25px rgba(255, 225, 189, 0.4);
}












/* WEITERE INFOS */
.weitere-infos-container {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 2rem;
  background-color: #fff9f4; /* sanftes, helles Hintergrundfarbe */
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.weitere-infos-heading {
  font-size: 2rem;
  font-weight: 600;
  color: #ffb95f; /* Gelb passend zu anderen Elementen */
  margin-bottom: 2rem;
  text-align: center;
}

.info-item {
  margin-bottom: 1.5rem;
}

.info-title {
  font-weight: 600;
  font-size: 1.1rem;
  color: #ffb95f;
  margin-bottom: 0.5rem;
}

.info-text {
  color: #333;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Fade-in Animation */
.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}





/* ANFRAGE-BLOCK */
.anfrage-container {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 3rem 2rem;
  background-color: #ffffff; /* Weißer Hintergrund passend zu anderen Blöcken */
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-align: center;
}

.anfrage-heading {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

.anfrage-subtext {
  font-size: 1rem;
  color: #666;
  margin-bottom: 2rem;
}

.anfrage-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #ffb95f; /* Gelb passend zur Navbar */
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 12px;
  transition: background-color 0.3s ease;
  font-size: 1rem;
}

.anfrage-button:hover {
  background-color: #ff8753; /* dunkleres Gelb beim Hover */
}

/* Fade-in beim Scrollen */
.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}




/* FOOTER */
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 4rem auto 2rem auto;
  padding: 1.5rem 2rem;
  background-color: #f5f5f5; /* hellgrau passend zum Seitenstil */
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  font-size: 0.9rem;
  color: #555;
  flex-wrap: wrap;
}

.site-footer a {
  color: #ffb95f; /* Gelb passend zu Navbar und Buttons */
  text-decoration: none;
  margin: 0 0.8rem;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: #ff8753; /* dunkleres Gelb beim Hover */
}

.footer-left,
.footer-center,
.footer-right {
  display: flex;
  align-items: center;
  margin: 0.5rem 0;
}

.footer-center {
  gap: 1rem;
}

.footer-right {
  justify-content: flex-end;
}

.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}





/* SCROLL-TO-TOP BUTTON */
#scrollTopBtn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background-color: #ffb95f; /* Gelb passend zu Navbar */
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex; /* Immer vorhanden, wir blenden nur die Sichtbarkeit */
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  opacity: 0; /* Anfangs unsichtbar */
  pointer-events: none; /* Nicht klickbar, wenn unsichtbar */
  transition: opacity 0.4s ease, transform 0.3s ease;
}

#scrollTopBtn:hover {
  background-color: #ff8753; /* dunkleres Gelb beim Hover */
  transform: scale(1.1);
}

#scrollTopBtn.show {
  opacity: 1;
  pointer-events: auto; /* Klickbar, wenn sichtbar */
}
