/* absoluter Fallback: erzwingt hellen, neutralen Look in allen Browsern */
.contact-button {
  /* visuelle Basis */
  margin-top: 1em;
  padding: 0.75em 1.4em;
  border-radius: calc(var(--radius) - 4px);
  font-weight: 500;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: background-color 0.18s ease, box-shadow 0.18s ease, transform 0.08s ease;

  /* FORCIERTE Hintergrund-/Textfarbe (wichtig) */
  background: #ffffff !important;
  background-image: none !important;
  color: #1a1a1a !important;
  border: 1px solid #ddd !important;

  /* entferne native Browserdarstellung */
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;

  /* verhindert, dass Chrome die Kontrolle übernimmt (neuerer Fix) */
  color-scheme: light; /* sagt dem UA: wir sind im hellen Modus */
  -webkit-text-fill-color: #1a1a1a !important; /* iOS/Chrome Text-Fix */
  background-clip: padding-box !important;
}

/* Hover / Active */
.contact-button:hover {
  background: #f5f5f5 !important;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}
.contact-button:active {
  transform: scale(0.99);
  background: #ececec !important;
}









:root {
  --bg-color: #f9f9fb;
  --text-color: #1a1a1a;
  --accent-color: #1A1A1A;
  --border-color: #e0e0e0;
  --radius: 12px;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --font-sans: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-sans);
  background-color: var(--bg-color);
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 20px;
}

.container {
  width: 100%;
  max-width: 420px;
  text-align: center;
}

h1 {
  font-weight: 600;
  font-size: 2.2rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.3em;
}

p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 2.3em;
}

.input-group {
  display: flex;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s ease;
  margin-bottom: 1.2em;
  min-width: 0; /* verhindert, dass Flex-Kinder überlaufen */
}

.input-group:focus-within {
  box-shadow: 0 0 0 2px var(--accent-color);
}

input {
  flex: 1;
  min-width: 0; /* wichtig, damit Buttons Platz behalten */
  border: none;
  outline: none;
  padding: 0.9em 1em;
  font-size: 1rem;
  background: transparent;
}

button {
  flex-shrink: 0; /* verhindert, dass Buttons schrumpfen */
  white-space: nowrap; /* Text bleibt in einer Zeile */
  background: var(--accent-color);
  color: white;
  border: none;
  outline: none;
  padding: 0 1.3em;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}


button:hover { background: #363636; }
button:active { transform: scale(0.98); }

.wiki-box {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1em 1.2em;
  box-shadow: var(--shadow);
  text-align: left;
  margin-top: 1em;
  animation: fadeIn 0.3s ease;
}

.wiki-box h3 {
  margin-top: 0;
  font-size: 1.05rem;
}

.wiki-box a {
  display: inline-block;
  margin-top: 0.6em;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
}

.weather-box {
  margin-top: 2em;
  font-size: 1rem;
  color: #444;
}

.news {
  margin-top: 2em;
  text-align: left;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1.2em 1.5em;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.news:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 16px rgba(0, 0, 0, 0.1);
}

.news h2 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.8em;
}

.news h3 {
  font-size: 1rem;
  margin: 0 0 0.4em 0;
  font-weight: 500;
}

.news p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

button + button {
  border-left: 1px solid white;
}
