
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f7f9fc;
  color: #222;
}

h1 {
  text-align: center;
  padding: 20px;
}

.hero {
  background-image: url('ostfriesland.jpg');
  background-size: cover;
  background-position: center;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.wappen-left,
.wappen-right {
  flex: 0 0 150px;
  text-align: center;
}

.wappen-left img,
.wappen-right img {
  width: 150px;
  height: auto;
}

.center-box {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  max-width: 600px;
  margin: 0 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.card {
  text-align: center;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.card:hover {
  transform: scale(1.03);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card a {
  display: block;
  padding: 10px;
  font-weight: bold;
  text-decoration: none;
  color: #0077b6;
}

.button {
  margin-top: 20px;
  display: inline-block;
  background-color: #0077b6;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

nav {
  background-color: #023e8a;
  padding: 10px 0;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}

nav li {
  margin: 0 20px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #e0f0ff;
  color: #333;
  font-size: 0.9em;
}
