/* Grundlayout */
body {
  font-family: "Georgia", serif;
  margin: 0;
  background: #f7f3ef;
  color: #3a2f2f;
}

/* Header */
header {
  background: #4a3f35;
  color: #f7f3ef;
  padding: 20px;
  text-align: center;
  border-bottom: 4px solid #c9a46a;
}

header h1 {
  margin: 0;
  font-size: 2.2rem;
  letter-spacing: 2px;
}

/* Navigation */
nav {
  margin-top: 10px;
}

nav a {
  color: #f7f3ef;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}

nav a:hover {
  border-bottom: 2px solid #c9a46a;
}

/* Hero-Bild */
.hero img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 4px solid #c9a46a;
}

/* Intro */
.intro {
  text-align: center;
  padding: 40px 20px;
}

.intro h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.intro p {
  font-size: 1.2rem;
}

/* Tabellen */
table {
  width: 90%;
  margin: 30px auto;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

th {
  background: #c9a46a;
  color: #fff;
  padding: 12px;
  font-size: 1.1rem;
}

td {
  padding: 12px;
  border-bottom: 1px solid #e0d6c8;
}

tr:hover td {
  background: #f1e8dd;
}

/* Buttons */
.button {
  display: inline-block;
  background: #4a3f35;
  color: #f7f3ef;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 6px;
  margin: 20px auto;
}

.button:hover {
  background: #c9a46a;
  color: #fff;
}

/* Kontaktseite */
section {
  width: 90%;
  margin: 40px auto;
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
section h3 {
  color: #4a3f35;
  border-bottom: 2px solid #c9a46a;
  padding-bottom: 4px;
  margin-top: 25px;
}
.hero img {
  width: 70%;
  height: auto;
  display: block;
  border-bottom: 4px solid #c9a46a;

  /* Begrenzung */
  max-height: 450px;   /* oder 400 / 500 je nach Geschmack */
  object-fit: cover;   /* schneidet oben/unten minimal, wirkt edel */
}
.hero {
  display: flex;
  justify-content: center;
}

