@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@400;600;700&display=swap');
:root {
  --yellow: #fac400;
  --light: #fffce6;
  --dark: #222;
  --beige: #ded9b9;
}
* { box-sizing: border-box; }
body {
  background: var(--light);
  font-family: 'Titillium Web', sans-serif;
  margin: 0;
  color: var(--dark);
}
a { color: var(--dark); text-decoration: none; }
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px;
}
.site-header {
  background: var(--beige);
  padding: 0;
  margin: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.brand {
  font-size: 1.4rem;
  font-weight: 700;
  padding: 20px 0;
  display: inline-block;
}
.site-header nav {
  float: right;
}
.site-header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 24px;
}
.site-header ul li a {
  font-weight: 600;
  padding: 20px 10px;
  display: inline-block;
  color: var(--dark);
}
.hero {
  position: relative;
  min-height: 70vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: #fff;
}
.hero .overlay {
  background: linear-gradient(to bottom,rgba(30,30,30,.44) 55%,rgba(20,20,20,.85) 100%);
  position: absolute;
  top:0;bottom:0;left:0;right:0;
  z-index: 1;
}
.hero .intro-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero h1 {
  font-size: 2.3rem;
  font-weight: 700;
  text-shadow: 0 3px 11px #222;
  margin-top: 0;
  margin-bottom: 14px;
  color: #fff;
}
.hero h1 span {
  display:block;
  font-size: 1.12em;
  font-weight: 400;
  color: #fff;
}
.hotline-box {
  background: #fff;
  color: var(--dark);
  border-radius: 10px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  margin: 26px 0 0;
  font-size: 1.1rem;
  min-width: 250px;
  padding: 18px 30px 16px 30px;
  display: inline-block;
  font-weight: 600;
}
.hotline-box span { font-weight: 700; color: var(--dark); margin-bottom: 10px; display:block; font-size:1.09em;}
.hotline-box a {
  color: var(--dark);
  font-weight: 600;
  margin: 0 13px;
  font-size: 1.09em;
  vertical-align: middle;
}
.hotline-box img { height:1.13em; width:auto; margin-right:6px; vertical-align:-3px; }
.slider {
  background: var(--light);
  padding: 28px 0 28px 0;
}
.slider-image {
  display:block;
  margin: 0 auto;
  max-width: 720px;
  width: 94vw;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 7px 45px -10px #2224;
}
.leistungen {
  background: var(--beige);
  padding: 42px 0;
}
.leistungen h2{
  text-align: center;
  margin: 0 0 18px 0;
}
.leistungen ul {
  max-width: 600px;
  margin: 0 auto;
  padding:0;
}
.leistungen li{
  margin-bottom:12px;
  font-size: 1.1rem;
  line-height: 1.5;
}
.kontakt {
  background: var(--light);
  padding: 48px 0 36px 0;
}
.kontakt h2 {
  text-align:center;
  margin:0 0 12px 0;
}
.kontakt form {
  max-width: 440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.kontakt input, .kontakt textarea {
  width: 100%;
  padding: 10px;
  font-size: 1em;
  border: 1px solid #ccd;
  border-radius: 3px;
}
.kontakt textarea {
  min-height: 84px;
  resize: vertical;
}
.kontakt button {
  background: var(--yellow);
  font-weight: 700;
  border: none;
  border-radius: 4px;
  padding: 11px 12px;
  cursor: pointer;
  font-size: 1.08em;
  color: var(--dark);
}
.checkbox {
  font-size: 0.98em;
  display: flex;
  align-items:center;
  gap: 7px;
}
.checkbox input[type="checkbox"]{ width: 18px; height: 18px;}
.site-footer {
  background: var(--beige);
  padding: 20px 0 12px 0;
  text-align: center;
}
.site-footer ul {
  padding:0;
  margin:12px 0 0 0;
  list-style: none;
  display: flex;
  gap: 20px;
  justify-content: center;
}
.site-footer a {
  color: var(--dark);
  font-size: 0.98em;  }
@media (max-width: 740px) {
  .hero h1 { font-size: 1.2rem; }
  .slider-image {max-width:100vw;}
}
