html {
	scroll-behavior: smooth;
  }
body {
	margin: 0;
	padding: 0;
	font-family: Arial, sans-serif;
	background-image:  url("../../images/background.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed; /* << Das macht den Hintergrund fixiert! */
	min-height: 100vh;
	display: flex;
	flex-direction: column;
  }
  
main {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center; /* oder 'flex-start', wenn oben beginnen soll */
  }
  .overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
  }

  .scroll-div-1{
	background-image: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.8));
	overflow:hidden;
  }
  
  .scroll-div-2{
	background-image: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9),rgba(255,255,255,0.9),rgba(255,255,255,0.9));
	min-height: 100vh;
  }
  .scroll-div-3{
	background-image: linear-gradient(rgba(255,255,255,0.9),rgba(255,255,255,0.95));
	padding: 4em 1em;
	display: flex;
	flex-direction: column;
	gap: 4em;
  }
  .scroll-div-QR{
	background-image: linear-gradient(rgba(255,255,255,1),rgba(255,255,255,1));
	padding: 4em 1em;
	display: flex;
	flex-direction: column;
	gap: 4em;
	box-shadow: 0 4px 12px rgba(0,0,0,0.4);

  }
  .scroll-div-privacy-top{
	background-image: linear-gradient(rgba(255,255,255,0.9),rgba(255,255,255,0.9));
	flex:1;
	display: flex;
	flex-direction: column;
	gap: 4em;
	padding-top: 4em;
	padding-bottom: 1em;
	padding-left: 1em;
	padding-right: 1em;
  }
  .scroll-div-privacy{
	background-image: linear-gradient(rgba(255,255,255,0.8),rgba(255,255,255,0.8));
	display: flex;
	flex-direction: column;
	gap: 4em;
	margin-bottom: 4em;
	border-radius: 20px;
	padding: 1em;
	box-shadow: 0 4px 12px rgba(0,0,0,0.4);
	max-width: 900px;

  }
  
  .scroll-div-4{
	background-image: linear-gradient(rgba(255,255,255,0.9));
	min-height: 100px;
  }
  .scroll-div-footer{
	background-image: linear-gradient(rgba(255, 255, 255, 0.9),rgba(188, 188, 188, 1),rgba(188, 188, 188, 1),rgba(188, 188, 188, 1),rgba(188, 188, 188, 1));
	padding:2em 2em;
	display: flex;
	flex-direction: column;
	gap: 0.1em;
  }
  .footer-about-row{
	display: flex;
	gap: 1em;
	flex-direction: row;
  }


  header, main, footer {
	position: relative;
	z-index: 1;
  }
  
  .scroll-area {
	overflow-y: auto;
	height: calc(100vh - 160px); /* passt Höhe ggf. an */
	padding: 2em;
  }
  
  .fullheight {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
  }
  
  .centered {
	text-align: center;
	align-items: center;
	justify-content: center;
  }

  .scroll-content-row {
/*	display: flex;
	flex-direction: row;*/
	width: 100%;
	align-items: center;
/*	padding: 2em;
	box-sizing: border-box; */
  }

  .text-column {
	padding:0em;
  }
  .privacy-text {
	text-align: left;
	width: 100%;
  }

  .button {
	padding: 0.7em 1.5em;
	background-color: rgba(255,255,255,0.8);
	color: rgb(0, 0, 0);
	text-decoration: none;
	border-radius: 30px;
	font-weight: bold;
  }
  
  .button:hover {
	background-color: #00ffff;
	color: #000;
  }
  

  .info-block {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	max-width: 1200px;
	margin: 0 auto;
	gap: 2em;

	opacity: 0; /* ← WICHTIG */
	transform: translateY(100px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
	will-change: opacity, transform;
	pointer-events: none; /* optional, verhindert Klicks wenn unsichtbar */
}

.info-block.visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}
  .info-block.reverse {
	flex-direction: row-reverse;
  }
  .info-block.fade-up {
	transform: translateY(-20px);
  }
  
  .info-block.fade-down {
	transform: translateY(20px);
  }
  
  
  .info-image img {
	width: 100%;
	max-width: 500px;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
  
  .info-text {
	flex: 1;
	min-width: 280px;
	max-width: 550px;
	padding: 1em;
  }
  
  .info-text h2 {
	font-size: 1.8em;
	margin-bottom: 0.5em;
	color: #111;
  }
  
  .info-text p {
	font-size: 1.1em;
	line-height: 1.6;
	color: #444;
  }
  /* Startzustände (unsichtbar) */
.animate-welcome-zoom,
.animate-welcome-slide {
  opacity: 0;
}

/* Zoom-In Animation */
.animate-welcome-zoom.animate-in {
  animation: zoomIn 1s ease-out forwards;
}

/* Slide-Up Animation */
.animate-welcome-slide.animate-in {
  animation: slideUp 2s ease-out forwards;
  animation-delay: 0.2s;
}



/* Keyframes */
@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100vh);
    opacity: 1;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
