/* ===========================
   GLOBAL STYLES
   =========================== */
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #0b0c10; /* dark background */
  color: #edfefe;            /* light text */
  text-align: center;
}

/* Links & allgemeine Textfarben */
a {
  color: #ffd900;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* ===========================
   TYPOGRAPHY BASE
   =========================== */
h1, h2, h3, p {
  margin: 0;
  line-height: 1.3;
}

/* Standardgrößen */
h1 { font-size: 2.5rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }
p  { font-size: 1.1rem; color: #aaa; }
p1 { font-size: 1.1rem; color: #edfefe; }
p2 { font-size: 1.0rem; color: #aaa; }
/* ===========================
   TYPOGRAPHY VARIANTS
   =========================== */

/* Headlines */
.headline-big {
  font-size: 3rem;
  color: #edfefe;
  text-shadow: 0 0 12px #edfefe;
}

.headline-medium {
  font-size: 2rem;
  color: #ffd900;
  text-shadow: 0 0 10px #ffd900;
}

.headline-small {
  font-size: 1.2rem;
  color: #edfefe;
  opacity: 0.8;
}

/* ===========================
   LAYOUT SECTIONS
   =========================== */
header {
  padding: 2rem 1rem;
}
header p {
  font-size: 1.2rem;
  color: #aaa;
}

.preview {
  margin: 2rem 0;
}
.preview video {
  max-width: 90%;
  border: 2px solid #edfefe;
  border-radius: 12px;
  box-shadow: 0 0 20px #edfefe55;
}

.features {
  padding: 2rem 1rem;
}

.cta {
  margin-top: 3rem;
}

footer {
  margin-top: 3rem;
  padding: 1rem;
  font-size: 0.9rem;
  color: #888;
  border-top: 1px solid #222;
}

/* ===========================
   COMPONENTS
   =========================== */
.logo {
  width: 150px;
  filter: drop-shadow(0 0 10px #edfefe);
}

/* Feature-List */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 920px;
}
.feature-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 1.25rem;
  color: #edfefe;
  margin: 12px 0;
}

/* Punkt-Design */
.dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 3px solid currentColor;
  box-shadow: 0 0 10px currentColor, inset 0 0 6px currentColor;
}
.yellow { color: #FFD900; }
.blue { color: #EDFEFF; }

/* Buttons */
.btn {
  display: inline-block;
  margin: 10px;
  padding: 12px 24px;
  border: 2px solid #edfefe;
  border-radius: 8px;
  color: #edfefe;
  background: transparent;
  font-size: 1rem;
  transition: all 0.3s;
}
.btn:hover {
  background: #edfefe;
  color: #0b0c10;
  box-shadow: 0 0 15px #edfefe;
}

/* ===========================
   UTILITIES & EFFECTS
   =========================== */
/* Glow Text */
.glow-text {
  color: #ffd900;
  text-shadow: 0 0 8px #ffd900, 0 0 16px #ffd900;
}

/* Neon Style */
.neon {
  color: #00cfff;
  text-shadow: 0 0 5px #00cfff, 0 0 10px #00cfff,
               0 0 20px #00cfff, 0 0 40px #00cfff;
}

/* Hover Glow */
.hover-glow:hover {
  color: #ffd900;
  text-shadow: 0 0 8px #ffd900;
  transform: scale(1.05);
  transition: all 0.3s ease;
}

/* Pulse Animation */
@keyframes pulse {
  0%   { transform: scale(1);   box-shadow: 0 0 8px #ffd900; }
  50%  { transform: scale(1.1); box-shadow: 0 0 20px #ffd900; }
  100% { transform: scale(1);   box-shadow: 0 0 8px #ffd900; }
}
.pulse {
  animation: pulse 2s infinite;
}

/* Slide-In Effekt */
@keyframes slideIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.slide-in {
  animation: slideIn 1s ease forwards;
}


.ripple-logo {
  filter: url(#ripple);
  width: 400px; /* testweise größer machen, dann erkennt man die Wellen deutlicher */
}

/* Stage wraps the image so the canvas can overlay it */
.logo-stage {
  position: relative;
  display: inline-block;
  line-height: 0; /* avoid gaps */
}

/* Canvas sits exactly on top of the image */
#rippleCanvas {
  position: absolute;
  inset: 0;          /* top/right/bottom/left = 0 */
  display: none;     /* shown only during the animation */
  pointer-events: none;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 600px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  .feature-list li { font-size: 1rem; gap: 8px; }
  .btn { font-size: 0.9rem; padding: 10px 16px; }
}

/* Privacy Policy Section */

.privacy-intro {
  text-align: center;
  margin: 0px auto;
  max-width: 600px;  /* begrenzt die Zeilenbreite */
  line-height: 1.6;  /* bessere Lesbarkeit */
  color: #edfefe;
}

.privacy-intro p {
  margin: 8px 0;
}

.privacy {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  text-align: left;
  line-height: 1.7;
  color: #edfefe;
}

.privacy h1, .privacy h2 {
  text-align: center;
  color: #fff;
  text-shadow: 0 0 12px #fff;
}

.privacy h3 {
  color: #ffd900;
  margin-top: 2rem;
  text-shadow: 0 0 6px #ffd90066;
}

.privacy ul {
  list-style: none; /* Standardpunkte aus */
  padding-left: 0;
}

.privacy li {
  position: relative;
  padding-left: 22px; /* Platz für Punkt links vom Text */
  margin: 6px 0;
}

.privacy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #edfefe;
  box-shadow: 0 0 4px #35ffff, 0 0 8px #00ffff;
}


.privacy hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin: 1.5rem 0;
}

/* ===========================
   Responsive Layout (Mobile)
   =========================== */
@media (max-width: 900px) {
  body {
    font-size: 0.95rem;
    padding: 0 0.5rem;
  }

  header {
    padding: 1.5rem 0.5rem;
  }

  .logo {
    width: 110px;
  }

  h1 {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  header p {
    font-size: 1rem;
  }

  .feature-list {
    max-width: 95%;
  }

  .feature-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    font-size: 1rem;
    padding: 8px 12px;
  }

  .dot {
    width: 10px;
    height: 10px;
    border-width: 2px;
  }

  .preview video {
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
  }

  .cta h2 {
    font-size: 1.4rem;
  }

  .btn {
    width: 90%;
    font-size: 0.95rem;
    padding: 10px 0;
  }

  footer {
    font-size: 0.8rem;
    padding: 0.5rem;
  }
}

/* Extra small devices (phones in portrait) */
@media (max-width: 500px) {
  h1 {
    font-size: 1.6rem;
  }

/* Fix: Dots align left on mobile again */
@media (max-width: 900px) {
  .feature-list li {
    flex-direction: row;         /* Punkte wieder nebeneinander mit Text */
    align-items: center;
    justify-content: flex-start;
  }

  .dot {
    margin-right: 10px;          /* Abstand zwischen Punkt und Text */
    margin-left: 0;
  }
}

  .feature-list li {
    font-size: 0.9rem;
  }

  .cta h2 {
    font-size: 1.2rem;
  }

  .btn {
    font-size: 0.9rem;
  }
}

