/* Reset & Basis */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Segoe UI", sans-serif;
  background-color: #ffffff;
  color: #222;
  line-height: 1.8;
  font-size: 18px;
}

/* Menüleiste im Nicepage-Stil */
.navbar {
  background-color: #ffffff;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-container {
  max-width: 1100px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.5em;
  font-weight: bold;
  color: #005f8e;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}
.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 4px;
  transition: background 0.3s, color 0.3s;
}
.nav-links li a:hover {
  background-color: #005f8e;
  color: #fff;
}

/* Hero-Bild */
.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid #ccc;
}

/* Begrüßung */
.welcome {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}
.welcome h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #005f8e;
}
.welcome p {
  margin-bottom: 20px;
}

/* Footer */
footer {
  background-color: #f4f4f4;
  color: #555;
  text-align: center;
  padding: 30px 10px;
  font-size: 0.9em;
  margin-top: 60px;
}

/* Responsive Menü */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 10px;
  }
}
