
/* Einheitliches Design für 'Ein letztes Zuhause' */

/* Grundlegende Schriftarten und Layout */
body {
  font-family: 'Lato', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f8f6;
  color: #333;
}

.hero {
  height: 50vh;
  background-image: url('images/titelbild.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 40px;
  position: relative;
}

.hero-text {
  background: rgba(0, 0, 0, 0.6);
  padding: 15px 30px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  max-width: 90%;
}

.hero-text h1 {
  margin: 0;
  font-size: 28px;
}

.container {
  max-width: 800px;
  margin: 30px auto;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

h2, h3 {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  color: #5d6e70;
}

/* Links */
a {
  color: #5d6e70;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  text-align: center;
  font-size: 14px;
  color: #999;
  margin-top: 40px;
}

footer a {
  color: #5d6e70;
  text-decoration: none;
}

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

/* Icons – zentrale Steuerung */
.icon-label i,
.teaser-icon i,
.artikel-icon i,
i.fas,
i.far,
i.fab {
  font-size: 32px;
  color: #5d6e70;
  vertical-align: middle;
  margin-right: 8px;
}

/* Einheitlicher Button */
.button {
  display: inline-block;
  background-color: #5d6e70;
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 16px;
  text-decoration: none;
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #4b5a5b;
}

.button i {
  font-size: 16px;
  margin-right: 8px;
  vertical-align: middle;
}


img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
}
