  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
            font-family: Arial, sans-serif;
			line-height: 1.6;			
        }
        body {
            background: #fff3d1;
            color: #333;
            text-align: center;
        }
        header {
            background: #ffb700;
            color: white;
            padding: 30px 20px;
            //font-size: 1.8em;
			font-size: clamp(0.8rem, 1.2vw, 1.5rem);
			line-height: 1.0;	
        }
        nav {
            display: flex;
            justify-content: center;
            gap: 20px;
            padding: 15px;
            background: #ffd166;
            position: sticky;
            top: 0;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
            z-index: 4711;
        }
        nav a {
            text-decoration: none;
            color: #333;
            font-weight: bold;
        }
		
		a {       
            color: #333;
            font-weight: bold;
        }
		
		
ul li {
  font-size: 0.95em;
  line-height: 1.6;
}

ol li {
  font-size: 0.95em;
  line-height: 1.6;
}

h4 {
  font-size: 1.15em;
  margin-top: 15px;
  margin-bottom: 5px;
}

h5 {
  font-size: 1.05em;
  margin-top: 10px;
  margin-bottom: 5px;
  color: #444;
  font-weight: bold;
  text-align: left;
}

ol {
  padding-left: 2em;
  margin-left: 0;
  list-style: decimal;
}


		
.hero {
  background: #ffb700;
    color: white;
    align-items: center;
    justify-content: center;
  
    padding: 0;
    position: relative;
  
    height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: space-between; /* schiebt .hero-bottom nach unten */


}


/* Bilder als Hintergrund-Elemente */
.eyecatch-left,
.eyecatch-right,
.eyecatch-bottom {
  position: absolute;
  z-index: 0; /* Bilder hinter dem Text */
  /* Positionierung und Animationen hier definieren */
}

.eyecatch-main {
  position: relative;
    font-size: clamp(1.5rem, 4vw + 1rem, 5.5rem);

  background: radial-gradient(
    ellipse at center,
    rgba(255, 183, 0, 0.7) 0%,
    rgba(255, 183, 0, 0.7) 50%,
    rgba(0, 0, 0, 0) 75%,
    rgba(0, 0, 0, 0) 100%
  );

  color: white;
  text-align: center;
  z-index: 2;
}
		
.eyecatch-container {
  position: relative;
  width: 100%;

  flex: 1 1 100%;
  height: auto; 

  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
}

.eyecatch-overlay {
  position: absolute;
  top: 25%;
  z-index: 100;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.eyecatch-container img {
  position: absolute;
  transition: transform 0.5s ease;
}

.eyecatch-left-wrapper {
  position: absolute;
  top: 0;
  left: -60px;
  width: 75%;
  height: 100%;
  z-index: 0;
  opacity: 0.15;
  overflow: hidden;
  will-change: transform;
}

.eyecatch-left {
  display: block;
  width: 100%;
  height: auto;
}


.eyecatch-right {
  top: 20%;
  right: -3%;
  width: 60%;
  
  animation: moveRight 20s infinite ease-in-out;
  opacity: 0.3;
}

.eyecatch-bottom {

  top: 75%;  
  width: 75%;
  animation: moveBottom 20s infinite ease-in-out;  
  opacity: 0.3;
}

/* Animationen */
@keyframes moveLeft {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(50px, 20px); }
  100% { transform: translate(0, 0); }
}

@keyframes moveRight {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(-50px, 20px); }
  100% { transform: translate(0, 0); }
}

@keyframes moveBottom {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(0, -20px); }
  100% { transform: translate(0, 0); }
}
		
// Hero flipper		

.flipper {
  //width: 300px;
  //height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  // background: white;
  // border: 1px solid #ccc;
  // border-radius: 10px;
  transition: transform 0.6s;
  transform-origin: center;
  transform-style: preserve-3d;
}

.flip {
  animation: flip 0.6s;
}

@keyframes flip {
  0% { transform: rotateX(0deg); }
  50% { transform: rotateX(90deg); opacity: 0; }
  50.1% { opacity: 0; }
  100% { transform: rotateX(0deg); opacity: 1; }
}

	
		
.hero-bottom {
  background-color: #333;
  font-size: clamp(1rem, 1vw + 1rem, 1.5rem);
  flex: 0 1 35%;
  height: auto;
  width: 100%; 
  padding-top: 10px;
}

		
		
    section {
        padding: 20px 20px;
        min-height: 100vh;
    }
		
		.section-heading-wrapper {
    background-color: #ffe082; /* oder eine etwas hellere Variante wie #ffe082 */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 10px 0px;
    margin-bottom: 40px;

	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.section-heading {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 2em;
    color: #333;
    font-weight: bold;
    text-align: center;
}

        
        .btn {
            display: inline-block;
            background: #d17a00;
            color: white;
            padding: 15px 30px;
            border-radius: 5px;
            text-decoration: none;
            margin-top: 20px;
            font-size: 1.2em;
        }
        .btn:hover {
            background: #a85f00;
        }
        footer {
            background: #333;
            color: white;
            padding: 20px;
        }
		
  .section {
    padding: 80px 40px;
    max-width: 1300px;
    margin: auto;
  }

	ul {
		padding-left: 2em;  
		margin-left: 0;    
	}
  
  .sub-section {
    margin-bottom: 40px;
  }
  .sub-section h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .box {
    background-color: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);    
    border-radius: 10px;
    flex: 1;
    min-width: 200px;
	min-height: 400px;
  }

  
  

		

		
		
		
     
		
	.popup-word {
		position: relative;
		cursor: pointer;
		border-bottom: 1px dashed #999;
    }

    .popup-word:hover .popup {
      display: block;
    }

.popup {
    display: none;
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 6px 10px;
    border-radius: 5px;
    white-space: nowrap;
    z-index: 100; /* wichtig */
    font-size: 14px;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px;
}

.about-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
}

.about-text, .about-image {
  width: 600px;
  height: 600px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  
      overflow: visible;
    position: relative;
	
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  
    display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.about-text {
  padding: 30px;
  box-sizing: border-box;
  text-align: left;
  overflow-y: auto;  /* zeigt Scrollbar nur wenn nötig */
}

.about-text p {
  margin-bottom: 15px;
  font-size: 0.95em;  
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.about-subheading {
  margin-bottom: 30px;
  text-align: center;
}

.about-conclusion {
  margin-top: 60px;
  text-align: center;
  font-size: 1.1em;
}

@media (max-width: 850px) {
  .about-row {
    flex-direction: column;
    align-items: center;
  }

  .about-text, .about-image {
    width: 100%;
    max-width: 90vw;
    height: auto;
  }

  .about-image img {
    height: auto;
    aspect-ratio: 1 / 1;	
  }
}




.section-heading-wrapper {
  position: relative;
}

.scroller-wrapper {
  position: absolute;
  top: 0%;
  height: 100%;
  // transform: translateY(-50%);
  right: calc((100vw - 200px) / 2); /* Damit es am rechten Rand von 1200px Container sitzt */
}


#scroller {       
      width: 500px;
      height: 100%;
        overflow: hidden;
        position: absolute;
    }
    #scroller-content {
        position: absolute;
        width: 100%;
        white-space: nowrap;
        animation: scroll 60s linear infinite;
  text-align: right;
    }
    @keyframes scroll {
        0% { transform: translateY(0); }
        100% { transform: translateY(-100%); }
    }



.story-toggle:hover {
    background: #fdf7e3;
}


.story-toggle {
  background: #fff;
  border-left: 6px solid #ffb700;
  margin: 40px auto;
  max-width: 1000px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #333;
  transition: background 0.3s ease;
  overflow: hidden; /* WICHTIG: für rahmenloses Bild */
  padding: 0; /* WICHTIG: KEIN padding hier */
}

.story-toggle-inner {
  display: flex;
  align-items: stretch;
  width: 100%;
}

.story-toggle-text {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.story-toggle-title {
  font-weight: bold;
  font-size: 1.2em;
  color: #333;
}

.story-toggle-teaser {
  font-size: 0.9em;
  color: #666;
  margin-top: 5px;
}

.story-toggle-image {
  flex: 0 0 150px;
  height: auto;
}

.story-toggle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.story-container {
    max-width: 800px;
    margin: -30px auto 40px;
    background: white;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    overflow: hidden;
    height: 0;
    transition: height 0.4s ease-in-out;
}

.story-content {
    padding: 30px;
    line-height: 1.6;
    font-size: 1em;
	text-align: left;
}

.story-content p {
	margin-bottom: 10px;
}

.story-content ul {
    list-style: disc;
    margin-left: 20px;
}


.story-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.story-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.story-single-image {
  display: block;
  margin: 30px auto 10px auto;
  width: 50%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.story-single-image-portrait {
  display: block;
  margin: 30px auto 10px auto;
  width: 50%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

	// FAQ

  .faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
  }
  
  @media (max-width: 700px) {
    .faq-grid {
      grid-template-columns: 1fr;
    }
  }

	.faq-container {
		width: 60%;
		margin: 20px auto;		
    }
		  
        .faq {
            border-radius: 20px 20px 0 0;
            background: #ffb700;
            padding: 20px;
            cursor: pointer;
            position: relative;
			margin-top: 40px;		

			border-bottom-style: solid;
			border-bottom-width: 1px;
		
			box-shadow: 0px 4px 6px rgba(0, 0, 0,0.3);	
			
			font-weight: bold;
			
        }
        .faq::after {
            content: '?';
            width: 40px;
            height: 40px;
            background: #333;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5em;
            position: absolute;
            left: 50%;
            bottom: -20px;
            transform: translateX(-50%);
			
						
			box-shadow: 0px 4px 6px rgba(0, 0, 0,0.3);	
        }
        .answer-container {
            height: 0;
            overflow: hidden;
            transition: height 0.3s ease-in-out;
            background: #fff;
            border-radius: 0 0 20px 20px;
			
			box-shadow: 0px 4px 6px rgba(0, 0, 0,0.3);	
        }
        .answer {
            padding: 20px;
			padding-top: 50px;
			
			  
        }
        .expanded .answer-container {
            height: auto;
        }
		
		





.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}

@media (max-width: 700px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 40px auto;
  justify-content: center;
}

.faq-tab {
  background-color: #ffd166;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.2s ease;
  color: #333;
}

.faq-tab:hover {
  background-color: #ffb700;
  color: white;
}

.faq-active {
  background-color: #ffb700;
  color: white;
}

.faq-hidden {
  display: none;
}
