/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body – jetzt mit Bildhintergrund */
body {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  min-height: 100vh;
  background: url('images/hintergrund.png') no-repeat center center fixed;
  background-size: cover;
  position: relative;
  overflow: hidden; /* keine Scrollleiste */
}

/* Deko-Liniennetz per pseudo-element */
body::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 100px 100px;
  opacity: 0.3;
  z-index: 0;
}

/* Container */
.container {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 0;
}

/* Logo */
.logo {
  max-width: 220px;
  margin-bottom: 2rem;
}

/* Headline */
.hero h1 {
  font-size: 2.3rem;
  font-weight: 200;
  line-height: 1.4;
  margin-bottom: 4rem;
}

/* Features Grid */
.features {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

/* Karten */
.feature {
  background-color: #ffffff;
  color: #3b1c63;
  border-radius: 27px;
  padding: 2.8rem 2.2rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  flex: 1 1 300px;
  max-width: 310px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
}

/* Hover-Effekt */
.feature:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* Überschrift oben (lila) */
.feature h3 {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: #711FD2;
  margin-bottom: 1.1rem;
  text-transform: uppercase;
}

/* Hauptwert (Zahl oder Kernbotschaft) */
.feature:nth-child(1) h2 {
  font-size: 3.2rem;
  font-weight: 500;
  color: #711FD2;
}
.feature:nth-child(2) h2 {
  font-size: 3.2rem;
  font-weight: 500;
  color: #711FD2;
}
.feature:nth-child(3) h2 {
  font-size: 2.5rem;
  font-weight: 500;
  color: #711FD2;
	margin-bottom: 0.5rem;
	margin-top: 0.5rem;
}

/* Beschreibungstext */
.feature p {
  font-size: 1rem;
  line-height: 1.6;
  color: #000;
  max-width: 100%;
  margin: 0 auto;
}

/* Animationen – sanftes Aufleuchten & Pulsieren der Zahlen */
.feature:hover h2 {
  color: #7b33c4; /* leicht helleres Lila beim Hover */
  text-shadow: 0 0 10px rgba(123, 51, 196, 0.6);
  animation: pulse 1.5s ease-in-out infinite;
}

/* sanftes Skalieren der gesamten Karte (leicht betont) */
.feature:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
}

/* Keyframes für Puls-Effekt */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
    text-shadow: 0 0 10px rgba(123, 51, 196, 0.6);
  }
  50% {
    transform: scale(1.08);
    opacity: 0.9;
    text-shadow: 0 0 18px rgba(160, 76, 255, 0.9);
  }
  100% {
    transform: scale(1);
    opacity: 1;
    text-shadow: 0 0 10px rgba(123, 51, 196, 0.6);
  }
}



.feature h2 .small {
  font-size: 1.3rem;
  font-weight: 500;
  color: #711FD2;
	top: -0.9rem;
	position: relative;
}


.feature h2 .big {
  font-size: 3.2rem;
  font-weight: 500;
  color: #711FD2; 
  line-height: 1;
}

.under {
color: #711FD2;
font-weight: 500;
	font-size: 1.3rem;
	
}

/* Responsiv */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .feature h2 {
    font-size: 2rem;
  }

footer {
      background-color: #f5f5f5;
      text-align: center;
      padding: 20px 0;
      border-top: 1px solid #ddd;
      font-family: 'Poppins', sans-serif;
      font-size: 0.9rem;
      color: #333;
    }

    footer a {
      color: #0077cc;
      text-decoration: none;
      margin-left: 8px;
      font-weight: 500;
    }

    footer a:hover {
      text-decoration: underline;
    }
	
}
