/* -------------------- Allgemein -------------------- */
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: #f5f5f5;
}

/* -------------------- Header -------------------- */
header {
  background: #fff;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo-container img {
  max-height: 40px;
}

.menu-center {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-grow: 1;
}

.menu-center a,
.menu-right a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1rem;
}

.menu-right {
  display: flex;
  gap: 20px;
}

/* -------------------- Karte -------------------- */
#map {
  width: 95vw;
  height: 80vh;
  margin: 20px auto;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  z-index: 1;
}

#map .overlay {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  padding: 20px 25px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  z-index: 1000;
}

.overlay h1 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.search-box {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.search-box input {
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px 0 0 6px;
  width: 250px;
  border-right: none;
}

.search-box button {
  padding: 12px 18px;
  background: #009688;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
}

/* -------------------- Highlights -------------------- */
.highlights {
  padding: 40px 20px;
  background: #fff;
  text-align: center;
}

.highlights h2 {
  font-size: 1.6rem;
  margin-bottom: 30px;
  color: #1e2b39;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.highlight-card {
  background: #f8f8f8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.highlight-card:hover {
  transform: scale(1.02);
}

.highlight-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.highlight-card p {
  padding: 15px;
  margin: 0;
  font-size: 0.95rem;
  color: #333;
  font-weight: 500;
}

/* -------------------- Footer -------------------- */
footer {
  text-align: center;
  padding: 20px;
  background: #f7f7f7;
  font-size: 0.9rem;
  color: #555;
  border-top: 1px solid #e0e0e0;
}

footer a {
  color: #888;
  text-decoration: none;
  margin: 0 10px;
}

footer a:hover {
  text-decoration: underline;
}
