/* Startseite — Vollbild-Sektionen mit Scroll-Jump (nur index.html).
   Ergänzt style.css/pages.css, verändert keine anderen Seiten. */

.fp-section {
  min-height: calc(100dvh - var(--header-h, 64px));
  display: flex;
  align-items: center;
  scroll-margin-top: var(--header-h, 64px);
}

.fp-section .container { width: 100%; }

/* Etwas breiter als der Standard-Seitenkörper, damit große Bildschirme
   bei den neuen Vollbild-Sektionen nicht so leer wirken. */
.fp-section .container { max-width: 1320px; }

.fp-section .hero-cta { margin-top: 20px; }
.fp-section.hero .container { gap: 88px; }
.fp-section .value-stack { gap: 48px; }
.fp-section .card-grid { gap: 28px; }

@media (max-width: 800px) {
  .fp-section {
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

/* ---------- Scroll-Hinweis (nur beim ersten Besuch) ---------- */
.scroll-hint {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--ink);
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 60;
  padding: 0;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.scroll-hint:hover { background: var(--paper-2); }

.scroll-hint.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.scroll-hint-chevron {
  width: 9px;
  height: 9px;
  border-right: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  transform: rotate(45deg);
  animation: scroll-hint-bounce 1.6s ease-in-out infinite;
}

@keyframes scroll-hint-bounce {
  0%, 100% { margin-top: 0; }
  50% { margin-top: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-hint-chevron { animation: none; }
}
