html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #f9f8f7;
  color: #222;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Sections */
.section {
  padding: 1.5rem 1.5rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 1.5rem;
  text-align: center;
  box-sizing: border-box;
}

/* Hero Struktur (Desktop) */
.hero-container {
  width: 100%;
}

.hero-top,
.hero-footer {
  display: block;
}

.breath.hero {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  opacity: 0.9;
  line-height: 1.3;
  letter-spacing: 0.02em;
  max-width: 28ch;
  margin-bottom: 2.5rem;
  white-space: normal;
  text-align: center;
}
.breath.hero.desktop-only {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
/* Scroll-Hinweis */
.scroll-hint {
  font-size: 0.9rem;
  color: #666;
  opacity: 0.6;
  animation: pulse 2.5s ease-in-out infinite;
  text-align: center;
  margin-top: 2.5rem; /* oder 6rem, je nach Wunschabstand */
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: translateY(0); }
  50% { opacity: 0.9; transform: translateY(2px); }
}

/* Soundbutton */
.sound-button {
  padding: 0.5rem 1.5rem;
  background-color: #eee;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.4s ease, color 0.4s ease, transform 0.4s ease, opacity 0.4s ease;
}

.sound-button:hover {
  background-color: #e2e2e2;
}

.sound-button:active {
  background-color: #d8d8d8;
}

/* Manifesttypografie */
.manifest-block,
.manifest-fragment {
  font-size: clamp(1.1rem, 2.5vw, 1.7rem);
  font-weight: 300;
  line-height: 1.55;
  opacity: 0.9;
  max-width: 65ch;
  margin: 1.5rem 0;
  white-space: normal;
}

.manifest-block {
  line-height: 1.7;
  letter-spacing: 0.01em;
}

/* Zitate */
blockquote {
  margin: 2rem 0;
  padding-left: 1rem;
  font-style: italic;
  font-size: clamp(1.2rem, 2.8vw, 2rem);
  opacity: 0.85;
  border-left: 2px solid #ccc;
}

/* Überschriften */
h1, h2 {
  font-weight: 700;
  text-align: left;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

/* Listen */
ul {
  margin: 1rem 0 1.5rem 0;
  padding-left: 1.75rem;
  list-style-position: outside;
}

li {
  margin-bottom: 0.5rem;
  padding-left: 0.25rem;
  text-align: left;
}

/* Footer */
footer {
  font-size: 0.8rem;
  color: #666;
  text-align: center;
  padding: 2rem 1rem;
}

footer a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted #666;
}

/* Scroll Animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Sichtbarkeitssteuerung */
.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

/* Responsive Mobile Hero Struktur */
@media screen and (max-width: 767px) {
  .section {
    max-width: 92vw;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .center {
    padding: 0;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .hero-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
  }

  .hero-top {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
  }

  .mobile-only.breath.hero {
    text-align: left;
    font-size: 2rem;
    line-height: 1.5;
    max-width: 100%;
    margin: 0;
  }

.hero-footer {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* verschiebt Inhalte nach oben */
  align-items: center;
  gap: 1rem;
  padding: 0.2rem 1.5rem 1rem; /* mehr oben, weniger unten */
}


  .scroll-hint {
    margin-top: 1rem;
    margin-bottom: 5rem;
  }
}
