

html, body {
  max-width: 100vw;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}


body {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  font-family: 'Inter', Arial, sans-serif;
  background:
    radial-gradient(ellipse at center, #1e3a8a 0%, #2563eb 45%, #60a5fa 95%),
    linear-gradient(90deg, #60a5fa 0%, transparent 12%, transparent 88%, #60a5fa 100%);
  background-blend-mode: screen;
  color: #fff;
  display: flex;
  flex-direction: column;
}


/* Hauptinhalt – Abstand links/rechts */
.content {
  flex: 1 1 auto;
  max-width: 1100px;
  margin: 32px auto 32px auto;
  padding: 0 24px;
  width: 100%;
}




body::-webkit-scrollbar {
  width: 8px;
  background: transparent;
}
body::-webkit-scrollbar-thumb {
  background: #204496;
  border-radius: 5px;
}

.parallax-section {
  min-height: 380px;
  background-image: url('https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4?auto=format&fit=crop&w=1200&q=80');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 36px;

  /* Maskierter Rand (Blur-Effekt nach außen) */
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 62%, rgba(0,0,0,0.12) 100%);
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 62%, rgba(0,0,0,0.12) 100%);
}

.parallax-section::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 26px; /* Auch für das Overlay! */
  box-shadow: 0 0 60px 20px #3B82F6, 0 0 100px 40px #fff;
  opacity: 0.10;
  z-index: 2;
}

/* Standardmäßig sichtbar */
.parallax-section {
  display: block;
}

/* Auf iPads nun auch ausblenden */
@media (max-width: 1180px) or (pointer: coarse){
  .parallax-section {
    display: none;
  }
}
/* Auf kleinen Geräten (z. B. iPhones) ausblenden */
@media (max-width: 767px) {
  .parallax-section {
    display: none;
  }
}

/* Section Legal */
#legal {
  background-color: #1f4174;  /* Dunkelblau, ohne Verlauf */
  color: #ffffff;             /* Heller Text */
  padding: 2rem;              /* Innenabstand */
  border-radius: 1rem; /* ≈ 16px runde Ecken */
}

/* Flip Book (Elfsight) */
.flipbook-wrapper {
  border-radius: 18px;
  overflow: hidden;
  max-width: 1100px;
  margin: 10 auto;
  box-shadow: 0 0 18px rgba(0,0,0,0.15);
  padding: 2; /* optional */
}