/* Grunddesign für Stadtfeuerwehr LinkTree */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
  color: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  max-width: 480px;
  width: 90%;
  padding: 2rem;
  text-align: center;
  background: #ffffff;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  border-radius: 10px;
}

header .logo {
  width: 100px;
  margin-bottom: 0.1rem;
}

h1 {
  font-size: 1.5rem;
  color: #b30000;
  margin-bottom: 2rem;
}

.link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-list li {
  margin-bottom: 1rem;
}

.btn {
  display: block;
  padding: 1rem;
  background-color: #cc0000;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
	position: relative;
}

.btn:hover {
  background-color: #a30000;
}

footer {
  margin-top: 2rem;
  font-size: 0.9rem;
}

footer a {
  color: #555;
  text-decoration: none;
  margin: 0 0.5rem;
}

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

.whatsapp-wrapper {
  position: relative;
}

.badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: #ffe600;
  color: #000;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 8px;
  border-radius: 20px;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  z-index: 1;
  white-space: nowrap;
	transform: rotate(15deg);
	box-shadow: 2px 2px 5px rgba(0,0,0,0.25);
}

@media (max-width: 420px) {
  .badge {
    font-size: 0.65rem;
    padding: 4px 6px;
    top: -10px;
    right: -8px;
  }
}