/* ---------- GLOBAL STYLES ---------- */
body {
  font-family: 'Roboto', sans-serif;
  background: #0a0a0a; /* Sehr dunkler Standard-Hintergrund */
  color: #fff;
  margin: 0;
  padding: 0;
  /* Platz für fixierten Header & Footer */
  padding-top: 70px; /* ca. Nav-Höhe */
  padding-bottom: 60px; /* ca. Footer-Höhe */
  overflow-x: hidden; /* Kein horizontales Scrollen */
}

h1, h2, h3, .navbar-brand {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
}

/* ---------- HEADER (NAVBAR) ---------- */
.navbar {
  background: linear-gradient(135deg, #3c0ce8, #9346f4);
  box-shadow: 0 0 20px rgba(147, 70, 244, 0.4);
}
.navbar-brand {
  font-size: 1.3rem;
  font-weight: 700;
}

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #1e1e1e 0%, #262626 100%);
  background-attachment: fixed; /* Parallax-Effekt auf größeren Screens */
  z-index: 1;
}

.hero::before {
  /* Deutlicheres Glühen */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(
    circle at 50% 50%, 
    rgba(147, 70, 244, 0.6),
    transparent 60%
  );
  animation: pulse 5s infinite alternate;
  z-index: 2;
}

@keyframes pulse {
  0% {
    opacity: 0.3;
    transform: scale(1);
  }
  100% {
    opacity: 0.9;
    transform: scale(1.05);
  }
}

.hero-content {
  position: relative;
  z-index: 3; /* über dem ::before */
  max-width: 700px;
  padding: 1rem;
}

.hero img {
  max-width: 250px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 12px #9346f4);
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 8px rgba(147, 70, 244, 0.6);
}

.hero p.lead {
  font-size: 1.3rem;
  color: #ccc;
  margin-bottom: 1.5rem;
}

/* Hero-Button */
.btn-hero {
  background: linear-gradient(135deg, #662af8, #ab69f8);
  border: none;
  color: #fff;
  padding: 0.8rem 1.4rem;
  font-size: 1rem;
  border-radius: 30px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.btn-hero:hover {
  background: linear-gradient(135deg, #ab69f8, #662af8);
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(171, 105, 248, 0.6);
}

/* ---------- CONTENT SECTION ---------- */
.content-section {
  padding: 5rem 1rem;
  text-align: center;
}

.content-section h2 {
  font-family: 'Orbitron', sans-serif;
  color: #9346f4;
  margin-bottom: 2rem;
  text-shadow: 0 0 8px rgba(147, 70, 244, 0.5);
}

.content-section p {
  max-width: 800px;
  margin: 0 auto 2rem auto;
  color: #ccc;
}

/* Abwechselnde Hintergründe */
.bg-contrast {
  background-color: #141414; /* etwas heller als body */
}

.bg-darker {
  background-color: #1A1A1A; /* etwas dunkler */
}

/* ---------- TECHNOLOGIEN SECTION ---------- */
.tech-item {
  background: #161616;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1rem 0;
  text-align: center;
}
.tech-item h5 {
  color: #fff;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.tech-item p {
  color: #ccc;
  margin-bottom: 0;
}

/* ---------- TESTIMONIALS / REFERENZEN ---------- */
.testimonial-card {
  background-color: #161616;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1rem 0;
}
.testimonial-card p {
  color: #ccc;
  margin-bottom: 0.5rem;
}
.testimonial-author {
  color: #9346f4;
  font-weight: 700;
}

/* ---------- FOOTER (FIXED-BOTTOM) ---------- */
.footer {
  background: #1a1a1a;
  color: #888;
  font-size: 0.9rem;
  line-height: 1.4;
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 60px; 
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  border-top: 1px solid #333;
}

.footer span {
  color: #666;
}

.footer-link {
  color: #888;
  text-decoration: none;
  margin: 0 5px;
}
.footer-link:hover {
  color: #ccc;
}

/* ---------- COOKIE-BANNER ---------- */
.cookie-banner {
  position: fixed;
  bottom: 60px; /* Direkt über dem Footer */
  width: 100%;
  background: rgba(24, 24, 24, 0.95);
  color: #ccc;
  padding: 0.8rem 1rem;
  text-align: center;
  z-index: 9999;
  border-top: 2px solid #9346f4;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}

.cookie-banner button {
  background-color: #9346f4;
  border: none;
  color: #fff;
  border-radius: 20px;
  padding: 0.5rem 1rem;
  transition: background-color 0.3s;
}

.cookie-banner button:hover {
  background-color: #662af8;
}

/* ---------- RESPONSIVE ---------- */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.2rem;
  }
  .hero p.lead {
    font-size: 1.5rem;
  }
}

