:root {
  --creme: #faf3e8;
  --terracotta: #c1652f;
  --braun-dunkel: #4a3428;
  --braun-hell: #8a6a52;
  --weiss: #fffaf3;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Verdana, sans-serif;
  background: var(--creme);
  color: var(--braun-dunkel);
  line-height: 1.6;
}

.hero {
  background-color: var(--braun-dunkel);
  background-size: cover;
  background-position: center;
  color: var(--weiss);
  text-align: center;
  padding: 3rem 1.5rem 4rem;
}

.hero .logo {
  max-width: 380px;
  width: 85%;
  height: auto;
  margin-bottom: 1.5rem;
  border-radius: 8px;
}

.hero h1 {
  margin: 0 0 0.5rem;
  font-size: 2.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero .claim {
  margin: 0;
  font-size: 1.2rem;
  color: var(--creme);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.galerie {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.galerie img,
.section-bild {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
}

.section-bild {
  height: 220px;
  margin-bottom: 1.25rem;
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

main.impressum {
  padding-top: 3rem;
}

section {
  background: var(--weiss);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 6px rgba(74, 52, 40, 0.08);
}

h2 {
  color: var(--terracotta);
  margin-top: 0;
}

.feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1.5rem;
}

.feature-list li::before {
  content: "✓ ";
  color: var(--terracotta);
}

blockquote {
  font-style: italic;
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
  border-left: 4px solid var(--terracotta);
  padding-left: 1rem;
}

.stars {
  color: var(--terracotta);
  margin-left: 0.5rem;
}

.cta {
  text-align: center;
}

.button {
  display: inline-block;
  background: var(--terracotta);
  color: var(--weiss);
  text-decoration: none;
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  font-weight: bold;
  margin: 1rem 0;
}

.button:hover {
  background: var(--braun-hell);
}

#apartmentIframeAll {
  margin: 1.5rem 0;
  text-align: left;
}

.alt-buchung {
  font-size: 0.95rem;
  color: var(--braun-hell);
}

.individuelle-anfrage {
  background: var(--creme);
  border: 1px solid var(--terracotta);
  border-radius: 8px;
  padding: 1.2rem 1.5rem;
  margin: 1.5rem auto;
  max-width: 480px;
  text-align: left;
}

.individuelle-anfrage h3 {
  margin-top: 0;
  color: var(--terracotta);
}

.individuelle-anfrage > p {
  font-weight: bold;
}

.anfrage-formular {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.anfrage-formular label {
  font-weight: bold;
  font-size: 0.9rem;
}

.anfrage-formular input,
.anfrage-formular textarea {
  font: inherit;
  padding: 0.6rem;
  border: 1px solid var(--braun-hell);
  border-radius: 6px;
  background: var(--weiss);
  color: var(--braun-dunkel);
}

.anfrage-formular button {
  margin-top: 0.5rem;
  border: none;
  cursor: pointer;
  font: inherit;
}

footer {
  text-align: center;
  padding: 2rem;
  color: var(--braun-hell);
}

footer a {
  color: var(--braun-hell);
}
