.elementor-11 .elementor-element.elementor-element-765917f{--display:flex;}/* Start custom CSS for html, class: .elementor-element-32fcc8c */* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

/* GLOBAL BACKGROUND */
body {
  color: white;

  background: radial-gradient(
    circle at 75% 0%,
    #3a4a5f 0%,
    #0a0f18 40%,
    #000 70%
  );

  min-height: 200vh;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;

  padding: 0;

  /* KAUM sichtbar → verschmilzt mit Background */
  background: rgba(255, 255, 255, 0.015);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  /* sehr feine Linie */
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
  max-width: 100%;
  margin: auto;
  padding: 20px 50px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 500;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: white;
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 80px;
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero h2 {
  font-size: 44px;
  font-weight: 600;
  color: #8a8f98;
  margin-bottom: 30px;
}

.hero p {
  font-size: 16px;
  color: #9aa0a6;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 10px;

  background: #2c3e50;
  color: white;
  text-decoration: none;

  transition: 0.3s;
}

.btn:hover {
  background: #3d566e;
}

/* SCROLL SECTION */
.section {
  height: 100vh;
  background: rgba(0,0,0,0.6);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    padding: 0 30px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero h2 {
    font-size: 28px;
  }

  .nav-container {
    padding: 20px;
  }
}/* End custom CSS */