/* Grundlayout */
body {
  font-family: "Segoe UI", Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f8fbff;
  color: #222;
  line-height: 1.6;
}

/* Kopfbereich */
header {
  background: linear-gradient(135deg, #003366, #0055a5);
  color: white;
  text-align: center;
  padding: 2em 1em;
}

header h1 {
  margin: 0;
  font-size: 2.2em;
}

header h2 {
  margin: 0.3em 0 0;
  font-weight: 400;
}

/* Navigation */
nav.toc {
  background: #e6f0fa;
  padding: 1em 2em;
  border-left: 5px solid #0055a5;
}

nav.toc h3 {
  margin-top: 0;
  color: #003366;
}

nav.toc ul {
  list-style: none;
  padding: 0;
}

nav.toc li {
  margin: 0.4em 0;
}

nav.toc a {
  color: #0055a5;
  text-decoration: none;
}

nav.toc a:hover {
  text-decoration: underline;
}

/* Hauptinhalte */
main {
  padding: 2em;
}

h2 {
  color: #003366;
  border-bottom: 2px solid #0055a5;
  padding-bottom: 0.3em;
  margin-top: 2em;
}

h3 {
  color: #0055a5;
}

ul {
  margin: 0.5em 0 1em 1.5em;
}

/* Fußbereich */
footer {
  background: #003366;
  color: white;
  text-align: center;
  padding: 1em;
  margin-top: 3em;
}

header {
  background: linear-gradient(135deg, #003366, #0055a5);
  color: white;
  text-align: center;
  padding: 2em 1em;
}

.header-logo {
  max-width: 200px;
  display: block;
  margin: 0 auto 1em auto;
}

footer a {
  color: #66aaff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
/* Hero-Header mit Hintergrundbild */
header.hero {
  position: relative;
  background: url("https://www.1golf.eu/images/golfclubs/thueringer-golf-club-drei-gleichen-muehlberg-ev_142342_full.jpg") 
              no-repeat center center;
  background-size: cover;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

header.hero .overlay {
  background: rgba(0, 51, 102, 0.6); /* halbtransparenter Blauton */
  padding: 2em;
  text-align: center;
  border-radius: 8px;
}

header.hero h1 {
  margin: 0;
  font-size: 2.5em;
}

header.hero h2 {
  margin: 0.5em 0 1em;
  font-weight: 400;
}

header.hero .cta {
  display: inline-block;
  background: #0055a5;
  color: white;
  padding: 0.6em 1.2em;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

header.hero .cta:hover {
  background: #0077cc;
}