/* ===== Grundlayout ===== */

body {
  font-family: "Libre Baskerville", serif;
  background-color: #f6f1e8;
  color: #2b2b2b;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
  line-height: 1.75;
}

//* ===== Header ===== */

.hero {
  text-align: center;
  margin-bottom: 40px;
}

.site-logo {
  max-width: 140px;
  margin: 20px auto 10px;
  display: block;
}

h1 {
  font-family: "Cinzel", serif;
  font-size: 2em;
  margin: 10px 0 5px;
}

h3 {
  font-family: "Cinzel", serif;
  font-weight: normal;
  color: #6b3e2e;
  margin-bottom: 20px;
}

/* ===== Banner ===== */

.banner-wrapper {
  max-height: 160px;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 10px;
}

.banner-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ===== Navigation ===== */

nav {
  text-align: center;
  margin-bottom: 40px;
}

nav a {
  margin: 0 12px;
  text-decoration: none;
  color: #7a3b2e;
}

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

/* ===== Footer ===== */

footer {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid #ccc;
  text-align: center;
  font-size: 0.9em;
}

footer a {
  color: #7a3b2e;
  text-decoration: none;
}

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

/* ==== Textformatierungen ==== */

.indent {
  margin-left: 2em;
}

/* ===== Raumfoto ===== */

.room-image {
  margin: 40px 0;
  text-align: center;
}

.room-image img {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.caption {
  font-size: 0.9em;
  color: #5a4a3f;
  margin-top: 8px;
  font-style: italic;
}

/* ===== Mobile Anpassungen ===== */

@media (max-width: 600px) {

  body {
    margin: 20px auto;
    padding: 0 15px;
    font-size: 1.05em;
  }

  nav {
    margin-bottom: 25px;
  }

  nav a {
    display: inline-block;
    margin: 5px 8px;
  }

  .hero {
    padding: 30px 10px 20px;
  }

  .hero-logo {
    max-width: 200px;
  }

}