/* Reset & Basis */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* ← Falls „box-sizing“ nicht greift: prüfen, ob Bindestrich korrekt ist */
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #f5f5f5;
  line-height: 1.6;
  background-color: #080a10;
  position: relative;
  z-index: 1;
}

/* Hintergrund-Canvas */
canvas#webgl-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background: url('bg3e.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  z-index: 2;
}
.hero-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 10px;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero .subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: #c9a25e;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  border: none;
  cursor: pointer;
}
.btn:hover {
  background-color: #b29050;
}

/* Sections */
section {
  padding: 4rem 2rem;
}
.intro p {
  font-size: 1.25rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.why ul {
  list-style: none;
  margin: 2rem auto;
  max-width: 600px;
}
.why li {
  font-size: 1.25rem;
  margin: 0.75rem 0;
}
.graphic-text {
  text-align: center;
}
.graphic-text h3 {
  font-size: 2.5rem;
  margin: 0.5rem 0;
}
.graphic-text .graphic-subtitle {
  font-size: 1.75rem;
  margin: 0.5rem 0;
}
.graphic-text .graphic-tagline {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: #c9a25e;
}

/* Description */
.description ul {
  list-style: disc inside;
  margin: 1rem 0 2rem 1rem;
}
.description li {
  margin: 0.5rem 0;
}

/* Packages */
.packages .package-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.package {
  background: #141720;
  padding: 2rem;
  flex: 1;
  min-width: 280px;
  border-radius: 8px;
  text-align: center;
}
.package.highlight {
  border: 2px solid #c9a25e;
}
.package h3 {
  font-size: 1.75rem;
  margin: 0.5rem 0 1rem;
  color: #c9a25e;
}
.package ul {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}
.package ul li {
  margin: 0.5rem 0;
}
.package button {
  margin-top: 1rem;
  width: 100%;
  padding: 0.75rem;
  background: #c9a25e;
  border: none;
  color: white;
  font-size: 1rem;
  cursor: pointer;
}
.package button:hover {
  background: #b29050;
}
.package-note {
  margin: 2rem auto;
  text-align: center;
  max-width: 600px;
  font-size: 0.9rem;
  color: #aaa;
}

/* CTA Form */
.cta {
  background: #0b0c12;
  text-align: center;
}
.cta form {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}
.cta label {
  display: block;
  margin: 0.75rem 0 0.25rem;
}
.cta input, .cta select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #333;
  border-radius: 4px;
  background: #1a1c28;
  color: #f5f5f5;
}
.btn-primary {
  display: block;
  margin: 1.5rem auto 0;
  width: 100%;
  text-align: center;
}

/* Footer */
.footer {
  background: #080a10;
  padding: 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: #777;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .packages .package-grid {
    flex-direction: column;
  }
}

/* Einheitliche zentrierte Ausrichtung für Textbereiche */
section.intro,
section.why,
section.description,
section.cta {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* Optional: Links in Formular zentrieren */
.cta form {
  text-align: center;
}

/* Listen mittig einrücken (nur wenn du willst) */
.why ul,
.description ul {
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}