:root {
  --main-bg: linear-gradient(135deg, #f8f6fc 0%, #fffbf0 100%);
  --accent-bg: linear-gradient(120deg, #e4ddf4 60%, #fffbf0 100%);
  --box-bg: #fff;
  --primary: #943d24;
  --accent: #e4ddf4;
  --link: #943d24;
  --link-hover: #c06b4a;
  --btn-gradient: linear-gradient(90deg, #943d24 0%, #e4ddf4 100%);
  --btn-gradient-hover: linear-gradient(90deg, #e4ddf4 0%, #943d24 100%);
  --shadow: 0 4px 24px #943d2412;
  --shadow-light: 0 2px 8px #943d2410;
  --radius: 16px;
  --radius-small: 8px;
}
/* Hintergrund und Grundfarben */
body {
  background: var(--main-bg);
  color: #2d2d2d;
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
  font-size: 20px;
  line-height: 1.7;
  transition: background 0.3s;
}
/* Header */
header {
  background: var(--accent-bg);
  border-bottom: 4px solid var(--primary);
  box-shadow: var(--shadow);
  padding: 0;
  position: relative;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem 1rem 2rem;
}
.logo {
  height: 40px;
  width: 232px;
  border-radius: var(--radius);
  background: var(--box-bg);
  box-shadow: var(--shadow-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.3rem;
  color: var(--primary);
  letter-spacing: 0.04em;
  border: 2px solid var(--primary);
  transition: box-shadow 0.2s;
}
.logo img {
  height: 36px;
  width: 54px;
  border-radius: var(--radius-small);
  border: 2px solid var(--primary);
  background: #fff;
  display: inline-block;
}
.logo span {
  font-weight: bold;
  font-size: 1.15rem;
  color: var(--primary);
  letter-spacing: 0.04em;
  display: inline-block;
}
nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav a {
  color: var(--link);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 0.7em 1.5em;
  border-radius: var(--radius-small);
  transition: background 0.18s, color 0.18s;
}
nav a:hover, nav a:focus, .nav-current {
  background: var(--primary);
  color: #fff !important;
}
.headline {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0.7em 0 0.2em 0;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.accent-bar {
  width: 80px;
  height: 7px;
  background: var(--primary);
  border-radius: 4px;
  margin: 0 auto 2.5rem auto;
  display: block;
}
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 2rem 1.5rem;
}
section {
  margin-bottom: 2.5em;
}
.hero-section {
  display: flex;
  align-items: stretch;
  gap: 2.5em;
  background: var(--accent-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 2.5rem;
  overflow: hidden;
  flex-wrap: wrap;
  transition: box-shadow 0.2s;
}
.hero-img {
  flex: 1 1 340px;
  min-width: 220px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.hero-img img {
  width: 100%;
  max-width: 340px;
  border-radius: 0 0 var(--radius) 0;
  box-shadow: var(--shadow-light);
  display: block;
}
.hero-content {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 2rem 2.5rem 0;
  text-align: left;
}
.hero-content h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 0.7em;
  font-weight: 700;
}
.hero-content p {
  color: #282612;
  font-size: 1.1rem;
  margin-bottom: 1.5em;
}
.hero-btn, button, input[type="submit"] {
  display: inline-block;
  background: var(--btn-gradient);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-small);
  padding: 1rem 2.5rem;
  font-size: 1.15rem;
  box-shadow: 0 2px 12px #943d2440;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
  text-decoration: none;
  letter-spacing: 0.01em;
  outline: none;
  margin-top: auto;
}
.hero-btn:hover, .hero-btn:focus, button:hover, button:focus, input[type="submit"]:hover, input[type="submit"]:focus {
  background: var(--btn-gradient-hover);
  color: var(--primary);
  box-shadow: 0 6px 24px #943d2460;
  transform: translateY(-2px) scale(1.03);
}
.produkte-list, .vorteile-list {
  list-style: none;
  padding: 0;
  margin: 1.5em 0 2em 0;
  display: flex;
  flex-direction: column;
  gap: 1.2em;
}
.produkte-list li, .vorteile-list li {
  background: var(--box-bg);
  border-radius: var(--radius-small);
  padding: 0.7em 1em;
  font-size: 1.05rem;
  color: var(--primary);
  box-shadow: var(--shadow-light);
  transition: box-shadow 0.18s, background 0.18s;
}
.produkte-list li:hover, .vorteile-list li:hover {
  background: var(--accent);
  box-shadow: 0 4px 16px #943d2420;
}
.kontakt-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
  background: var(--accent-bg);
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-light);
}
.kontakt-form label {
  font-weight: 600;
  color: #282612;
}
.kontakt-form input, .kontakt-form textarea {
  padding: 0.75rem;
  border: 1px solid var(--primary);
  border-radius: var(--radius-small);
  font-size: 1rem;
  background: #fff;
  box-shadow: 0 1px 2px #943d2410;
  transition: border 0.2s;
}
.kontakt-form input:focus, .kontakt-form textarea:focus {
  border: 1.5px solid var(--primary);
  outline: none;
}
a {
  color: var(--link);
  text-decoration: underline;
  transition: color 0.18s;
}
a:hover,
a:focus {
  color: var(--link-hover);
  text-decoration: underline;
}
footer {
  background: var(--accent-bg);
  color: var(--primary);
  text-align: center;
  padding: 1.5em 0 1em 0;
  margin-top: 2em;
  border-radius: 0 0 var(--radius) var(--radius);
  font-size: 1rem;
  box-shadow: var(--shadow-light);
}
/* --- Mobile Navigation --- */
.mobile-nav-toggle {
  display: none;
}
@media (max-width: 900px) {
  .mobile-nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--primary);
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    z-index: 20;
    cursor: pointer;
  }
  nav {
    position: relative;
  }
  nav ul {
    transition: max-height 0.3s;
    overflow: hidden;
    max-height: 1000px;
    background: var(--accent-bg);
    box-shadow: var(--shadow-light);
    border-radius: var(--radius-small);
    width: 100vw;
    max-width: 340px;
    margin: 0 auto;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 0.2em 0;
  }
  nav li {
    width: 100%;
    border-bottom: 1px solid #d9cbe7;
    text-align: center;
  }
  nav li:last-child {
    border-bottom: none;
  }
  nav a {
    padding: 0.9em 0.5em;
    border-radius: 0;
    font-size: 1.08rem;
    width: 100%;
    display: block;
    transition: background 0.18s, color 0.18s;
  }
  nav a:active {
    background: var(--primary);
    color: #fffbf0;
  }
  body.menu-closed nav ul {
    max-height: 0;
    padding: 0;
    border: none;
  }
}
/* Responsive */
@media (max-width: 900px) {
  .header-inner {
    flex-direction: column;
    gap: 1em;
    padding: 1.2rem 0.5rem 1rem 0.5rem;
    align-items: stretch;
  }
  nav ul {
    flex-direction: column;
    gap: 0.5em;
    align-items: stretch;
    width: 100%;
    margin-top: 1em;
  }
  nav li {
    width: 100%;
    text-align: center;
  }
  nav a {
    width: 100%;
    display: block;
    padding: 1em 0.5em;
    border-radius: var(--radius-small);
    font-size: 1.08rem;
  }
  .logo {
    margin-bottom: 0.7em;
    width: 100%;
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    padding: 0 0.5em;
  }
  .logo img {
    height: 28px;
    width: 40px;
  }
  .logo span {
    font-size: 1rem;
  }
  .headline {
    font-size: 1.5rem;
    margin-bottom: 0.5em;
  }
  .accent-bar {
    margin-bottom: 1.2rem;
  }
  .hero-section {
    flex-direction: column;
    gap: 1.2em;
    padding: 0.7em 0.2em;
    border-radius: var(--radius-small);
  }
  .hero-img {
    justify-content: center;
    align-items: center;
    margin-bottom: 1em;
  }
  .hero-img img {
    border-radius: var(--radius-small);
    max-width: 100%;
    margin: 0 auto;
  }
  .hero-content {
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    text-align: center;
  }
  main {
    padding: 1rem 0.2rem;
    max-width: 100vw;
  }
  .produkte-list, .vorteile-list {
    gap: 0.7em;
    font-size: 0.98em;
  }
  .produkte-list li, .vorteile-list li {
    padding: 0.7em 0.5em;
    border-radius: var(--radius-small);
  }
  .kontakt-form {
    max-width: 100%;
    padding: 1rem 0.5rem;
    border-radius: var(--radius-small);
  }
  .kontakt-form input, .kontakt-form textarea {
    font-size: 0.98rem;
    padding: 0.5rem;
    border-radius: 6px;
  }
  .hero-btn, button, input[type="submit"] {
    font-size: 0.98rem;
    padding: 0.7rem 1.2rem;
    border-radius: var(--radius-small);
  }
  footer {
    font-size: 0.95rem;
    padding: 1.2em 0 0.7em 0;
    border-radius: 0 0 10px 10px;
    margin-top: 1.2em;
  }
}

@media (max-width: 600px) {
  .headline {
    font-size: 1.1rem;
    margin-bottom: 0.3em;
  }
  .accent-bar {
    height: 4px;
    width: 40px;
    margin-bottom: 0.7em;
  }
  .logo {
    height: 32px;
    max-width: 140px;
    border-radius: 8px;
    padding: 0 0.2em;
  }
  .logo img {
    height: 20px;
    width: 28px;
    border-radius: 4px;
  }
  .logo span {
    font-size: 0.95rem;
  }
  nav a {
    font-size: 0.98rem;
    padding: 0.7em 0.2em;
    border-radius: 6px;
  }
  .hero-content h2 {
    font-size: 1rem;
    margin-bottom: 0.4em;
  }
  .hero-content p {
    font-size: 0.95rem;
    margin-bottom: 0.7em;
  }
  .produkte-list li, .vorteile-list li {
    font-size: 0.95em;
    padding: 0.5em 0.3em;
    border-radius: 6px;
  }
  .kontakt-form {
    padding: 0.7rem 0.2rem;
    border-radius: 6px;
  }
  .hero-btn, button, input[type="submit"] {
    font-size: 0.95rem;
    padding: 0.5rem 0.7rem;
    border-radius: 6px;
  }
}
/* --- Ende Responsive Optimierung --- */
