/* --- Hintergrund & Basis --- */
body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: #f8f9fa; /* Sehr helles, modernes Grau */
  color: #333;
  line-height: 1.7;
}

/* --- Header (Weiß lassen) --- */
header {
  position: fixed;
  width: 100%;
  top: 0;
  background: #ffffff !important;
  z-index: 2000;
  border-bottom: 1px solid #e0e0e0;
  padding: 10px 0;
}

header nav a {
  color: #1a1a1a !important; /* Navigations-Links in Dunkel */
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

header {
  position: fixed;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  color: #1a1a1a;
  padding: 10px 0; /* Etwas weniger Padding oben/unten, da das Logo nun größer ist */
  z-index: 1000;
  border-bottom: 1px solid #eeeeee;
  backdrop-filter: blur(5px);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 110px; /* Platz für das 100px Logo */
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 1px;
  color: #1a1a1a;
}

nav a {
  color: #1a1a1a !important;
  margin-left: 25px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
}

nav a:hover {
  color: #d4af37; /* Ihr Gold-Ton als Akzentfarbe */
}

/* --- Hero Sektion (Hell & Luftig) --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  /* Das Padding schiebt den Text unter den Header (130px Header + 50px Puffer) */
  padding-top: 180px; 
  padding-bottom: 80px;
}

/* --- Hero-Text (NUR im Hero-Bereich weiß) --- */

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 850px;
  color: #ffffff !important;
}

.hero-content h1, .hero-content p {
  color: #ffffff !important;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* --- Allgemeiner Text (Dunkel auf Weiß) --- */
body, 
section:not(.hero) p, 
section:not(.hero) h2, 
section:not(.hero) h3,
section:not(.hero) li {
  color: #1a1a1a !important; /* Dunkelgrau für alles, was NICHT Hero ist */
}

/* Karten-Texte explizit dunkel */
.card h3, .card p {
  color: #1a1a1a !important;
}

/* --- Inhalts-Sektionen (Dunkler Text auf grauem Grund) --- */
.section, .container {
  color: #1a1a1a;
}

h2, h3, p, li {
  color: #1a1a1a; /* Sicherstellen, dass alle Texte außerhalb des Heros dunkel sind */
}

/* 3. SPEZIFISCH FÜR DIE LISTEN IN DEN SEKTIONEN */
section ul li {
    color: #333333;
    margin-bottom: 10px;
}

.hero .overlay {
  background: rgba(0, 0, 0, 0.6) !important; /* Erzwingt das dunkle Overlay */
}

/* Hero-Hintergrund Optimierung */
.hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* Das Overlay im CSS sorgt dafür, dass der Text auf dem Bild lesbar bleibt */
}

/* Profilbild Styling */
.profile-img {
  width: 100%;
  max-width: 400px; /* Begrenzt die Größe auf Desktops */
  height: auto;
  border-radius: 2px; /* Minimalistische Ecken passend zum Zander-Stil */
  box-shadow: 0 5px 15px rgba(0,0,0,0.05); /* Sehr dezenter Schatten */
}

/* Logo-Anpassung */
.logo img {
  display: block;
  transition: transform 0.3s;
}
.logo img:hover {
  transform: scale(1.05);
}

/* --- UI Elemente --- */
.btn {
  display: inline-block;
  padding: 15px 35px;
  background: #1a2a44; /* Dunkelblau als seriöser Kontrast */
  color: white;
  text-decoration: none;
  font-weight: 500;
  border-radius: 2px; /* Eckiger/Moderner */
  transition: opacity 0.3s;
}

.btn:hover {
  opacity: 0.9;
}

.section {
  padding: 80px 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: -50px; /* Lässt die Kästen leicht in den Hero-Bereich ragen (optional) */
  position: relative;
  z-index: 10;

.card {
  background: #ffffff;
  padding: 40px;
  border: none;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); /* Sehr sanfter Schatten */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid #d4af37; /* Dezenter Gold-Akzent oben */
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card h3 {
  color: #1a1a1a;
  margin-bottom: 15px;
  font-size: 22px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cta {
  background: #fdfdfd;
  border-top: 1px solid #eeeeee;
  color: #1a1a1a;
  text-align: center;
  padding: 100px 20px;
}

footer {
  text-align: center;
  padding: 40px 20px;
  background: #ffffff;
  color: #999999;
  font-size: 13px;
  border-top: 1px solid #eeeeee;
}

/* --- Spezielle Lösung für Mobile --- */
@media (max-width: 768px) {
  .hero {
    /* Da das Logo und das Menü auf Handys untereinander stehen können, 
       brauchen wir hier noch mehr Platz nach oben */
    padding-top: 200px; 
    display: block; /* Verhindert, dass Flexbox den Text wieder nach oben schiebt */
  }

  .hero h1 {
    font-size: 28px; /* Etwas kleinere Schrift, damit sie nicht so viele Zeilen braucht */
    margin-top: 0;
  }
}