/* CSS Document */
/* Grunddesign */

body {
    margin: 0;
    min-height: 100vh;

    background-image: url("/assets/images/bg-neue7.3.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    background-color: #000;
}

/*body {
  margin: 0;
  padding: 0;
  background-color: #000;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: white;
}*/

/* HEADER-Grundstruktur */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: rgba(0, 0, 0, 0.4); /* transparenter Hintergrund */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo-Stil */
.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  max-height: 200px;
  width: auto;
}

/* Navigationsbereich */
.top-nav {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 10px 20px;
  backdrop-filter: blur(4px);
}

/* Navigation horizontal */
.nav-list {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

/* Allgemeine Navigationselemente */
.nav-item {
  font-size: 1rem;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

/* Erstes Feld – nicht klickbar */
.nav-item.label {
  color: #00ff88;
  font-weight: bold;
  cursor: default;
}

/* Links */
.nav-item a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-item a:hover {
  color: #00ff88;
}

/* Responsive – optional mobilfreundlich */
@media (max-width: 768px) {
  .main-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .top-nav {
    width: 100%;
    padding: 10px;
  }

  .nav-list {
    flex-direction: column;
    gap: 10px;
  }
	}

/* Hauptbereich */
.intro-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 150px;
  padding: 20px 40px;
}

/* Einzelne Boxen */
.intro-box {
  flex: 1 1 450px;
  max-width: 550px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  backdrop-filter: blur(4px);
}

/* Bildplatzhalter */
.image-placeholder {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, #333, #111);
  border-radius: 12px;
  margin-bottom: 10px;
}

/* Text */
.text-block h2 {
  font-size: 1.4em;
  margin-bottom: 10px;
}

.text-block p {
	
	text-align: left;
  
  color: white;
	font-size: 1em;
  line-height: 1.2;
	opacity: 0.85;
	/*margin-left: 0px;
  font-size: 1em;
  line-height: 1.6;
  opacity: 0.85;*/
}

/* Footer */
.footer {
  text-align: center;
  padding: 30px 20px;
  margin-top: 60px;
  font-size: 0.9em;
  color: #aaa;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  color: #aaa;
  margin: 0 15px;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Intro-Banner oben über den Boxen */
.intro-banner {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  padding: 40px 20px;
  text-align: center;
  margin-bottom: 40px;
  border-radius: 0 0 20px 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.intro-text h1 {
  font-size: 1.8em;
  color: #00ff88;
  margin-bottom: 20px;
}

.intro-text p {
	
	text-align: left;
	font-size: 1.1em;
	line-height: 1.7;
	color: #fff;
	max-width: 1000px;
	margin: 0 auto;
	opacity: 0.9; 
}

.kapadia-vorteile {
  max-width: 1000px;
  margin: 60px auto;
  padding: 10px;
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  backdrop-filter: blur(4px);
  color: white;
}

.kapadia-vorteile h2 {
  font-size: 1.6em;
  color: #00ff88;
  margin-bottom: 20px;
  text-align: center;
	
}

.kapadia-vorteile ul {
  list-style: none;
  padding-left: 0;
}

.kapadia-vorteile li {
  margin-bottom: 16px;
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
}

.kapadia-vorteile li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00ff88;
}

.vorteil-abschluss {
  margin-top: 30px;
  font-size: 1.05em;
  color: #ccc;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

