@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  color: #374151;
  margin: 0;
  padding: 0;
}
.page-container { position: relative; }
.section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
}
.content { z-index: 10; }
.overlay-page {
  display: none; position: fixed; inset: 0;
  background-color: rgba(0,0,0,0.7);
  align-items: center; justify-content: center;
  z-index: 100;
}
.overlay-content {
  background-color: #fff; padding: 2rem; border-radius: 0.5rem;
  width: 90%; max-width: 500px;
  max-height: 85vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.font-light { font-weight: 300; }

/* === Feature-Leiste: sichtbar scrollbar-frei, gutes Touch/Drag-Verhalten === */
.features-scroll {
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none;           /* Firefox */
  -ms-overflow-style: none;        /* IE/Edge legacy */
  touch-action: pan-x;             /* Pointer-Events horizontal */
  cursor: grab;
}
.features-scroll.is-dragging { cursor: grabbing; }
.features-scroll::-webkit-scrollbar { display: none; } /* WebKit */

/* Einheitliche Icon-Größe in den Store-Buttons */
.nav-store-btn svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}
