/* Grundstil */
body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  background-color: #f5f4f1;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background: #e0ddd7;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.branding h1 {
  font-family: 'Playfair Display', serif;
  margin: 0;
  font-size: 2rem;
  color: #5a4d40;
}

.badge {
  font-size: 0.9rem;
  background: #c4beb7;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  color: #4a433b;
}

/* Hero Section */
.hero {
  background-image: url('./Filzschuh_Karin_2.jpg'); /* Platzhalter */
  background-size: cover;
  background-position: center;
  padding: 5rem 2rem;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  text-align: center;
}

.hero-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.subline {
  font-size: 1.2rem;
}

/* About Section */
.about {
  padding: 3rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.about h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

/* Info Box */
.info-box {
  background: #ebe8e3;
  padding: 2rem;
  margin: 2rem;
  border-left: 5px solid #a89987;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.info-box a {
  color: #5a4d40;
  text-decoration: underline;
}

/* Footer */
footer {
  background: #d6d3ce;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #555;
}

/* Responsive */
@media (max-width: 600px) {
  .hero-content h2 {
    font-size: 1.5rem;
  }

  .about h3 {
    font-size: 1.3rem;
  }
}