* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background-color: #0a1a2f;
  color: #f0f0f0;
  line-height: 1.6;
}


h1 {
  font-size: 2em;
  margin-block: 0.67em;
  font-weight: bold;
}

.site-header {
  background-color: #0a1a2f;
  color: #d4af37;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #d4af37;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.logo a {
  text-decoration: none; 
  color: inherit;    
  display: inline-block; 
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.main-nav a {
  color: #f0f0f0;
  text-decoration: none;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

.main-nav a.active,
.main-nav a:hover {
  color: #d4af37;
  border-bottom: 2px solid #d4af37;
}

.hero {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #0a1a2f 60%, #1c2e4a 100%);
}

.hero h1 {
  font-size: 2rem;
  color: #d4af37;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  color: #f0f0f0;
}

.cta-button {
  background-color: #d4af37;
  color: #0a1a2f;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 1.5rem;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #f0d878;
}

.content {
  max-width: 960px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.content h2 {
  color: #d4af37;
  margin-top: 0.8rem;
  margin-bottom: 0.3rem;
}

.site-footer {
  background-color: #0a1a2f;
  color: #f0f0f0;
  text-align: center;
  padding: 1rem;
  border-top: 1px solid #d4af37;
  margin-top: 2rem;
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.5rem;
    margin-block: 0.67em;
    font-weight: bold;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav a {
    margin: 0.5rem 0;
  }

  main ul {
    margin-left: 1rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }
}

form {
  max-width: 600px;
  margin-top: 2rem;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 1rem;
  font-family: inherit;
}

input[type="submit"] {
  cursor: pointer;
}

a.gold-link {
  color: gold;
  text-decoration: none;
}

a.gold-link:hover {
  color: #ffd700;
  text-decoration: underline;
}

.persoenlich {
  margin-top: 3rem;
  padding: 1rem;
}

.persoenlich-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.persoenlich-text {
  flex: 1 1 300px;
}

.persoenlich-bild {
  flex: 1 1 300px;
}

.persoenlich-bild img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.persoenlich h3 {
  color: gold;
  margin-bottom: 1rem;
}

ul.custom-list {
  list-style: none;
  padding-left: 1.5rem;
}

ul.custom-list li::before {
  content: "§";
  color: goldenrod;
  font-weight: bold;
  margin-right: 0.5rem;
}