/* CSS Document */
/* mixn media queries */
/* Fonts */
/* roboto-200 - latin */
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 200;
  src: url("../fonts/roboto-v49-latin-200.woff2") format("woff2");
}
/* roboto-regular - latin */
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/roboto-v49-latin-regular.woff2") format("woff2");
}
/* roboto-700 - latin */
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/roboto-v49-latin-700.woff2") format("woff2");
}
/* roboto-900 - latin */
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/roboto-v49-latin-900.woff2") format("woff2");
}
/* Colors and Shadow */
:root {
  --font-color: #464646;
  --font-color-variant: #646464;
  --font-shadow: rgb(255, 251, 230);
  --bg-color: #fff;
  --gradient-noop: rgba(255, 255, 255, 1);
  --gradient-fullop: rgb(255, 255, 255, 0);
  --root-padding: clamp(1rem, 7vw, 4rem);
  --shadow-color: 0deg 0% 55%;
  --shadow-elevation-low: 0.3px 0.5px 0.7px hsl(var(--shadow-color) / 0.34), 0.4px 0.8px 1px -1.2px hsl(var(--shadow-color) / 0.34), 1px 2px 2.5px -2.5px hsl(var(--shadow-color) / 0.34);
  --shadow-elevation-medium: 0.3px 0.5px 0.7px hsl(var(--shadow-color) / 0.36), 0.8px 1.6px 2px -0.8px hsl(var(--shadow-color) / 0.36), 2.1px 4.1px 5.2px -1.7px hsl(var(--shadow-color) / 0.36), 5px 10px 12.6px -2.5px hsl(var(--shadow-color) / 0.36);
  --shadow-elevation-high: 0.3px 0.5px 0.7px hsl(var(--shadow-color) / 0.34), 1.5px 2.9px 3.7px -0.4px hsl(var(--shadow-color) / 0.34), 2.7px 5.4px 6.8px -0.7px hsl(var(--shadow-color) / 0.34), 4.5px 8.9px 11.2px -1.1px hsl(var(--shadow-color) / 0.34), 7.1px 14.3px 18px -1.4px hsl(var(--shadow-color) / 0.34), 11.2px 22.3px 28.1px -1.8px hsl(var(--shadow-color) / 0.34), 17px 33.9px 42.7px -2.1px hsl(var(--shadow-color) / 0.34), 25px 50px 62.9px -2.5px hsl(var(--shadow-color) / 0.34);
  --hero-shadow-color: rgba(255, 255, 255, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--font-color);
  background: var(--bg-color);
}

img, picture, svg, video {
  display: block;
  max-width: 100%;
  max-height: 450px;
  border-radius: 5px;
  margin: auto;
}
@media (min-width: 900px) {
  img, picture, svg, video {
    max-height: 550px;
  }
}

svg > path {
  fill: var(--font-color);
}

:is(h1, h2, h3) {
  line-height: 1.2;
  font-weight: 400;
}

:is(h2, h3) {
  margin-bottom: 1rem;
}

:is(h2, h3):not(:first-child) {
  margin-top: 2em;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

a {
  color: var(--font-color);
  text-underline-offset: 0.15em;
}

a.button {
  background: linear-gradient(var(--bg-color), var(--bg-color)) padding-box, linear-gradient(var(--bg-color), var(--bg-color)) border-box;
  border: 2px solid transparent;
  border-radius: 5px;
  color: var(--font-color);
  padding: 0.7rem 1rem;
  box-shadow: var(--shadow-elevation-low);
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: 0.3s;
}

a.button:hover {
  background: linear-gradient(var(--bg-color), var(--bg-color)) padding-box, linear-gradient(90deg, rgb(66, 133, 244) 0%, rgb(234, 67, 53) 25%, rgb(251, 192, 52) 50%, rgb(52, 168, 83) 75%, rgb(66, 133, 244) 100%) border-box;
  box-shadow: var(--shadow-elevation-medium);
}

.row {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  max-width: 130ch;
  margin: 0px auto;
}
@media (min-width: 600px) {
  .row {
    flex-direction: row;
  }
}

.item {
  flex: 1 1 0px;
  margin: 0 auto;
  max-width: fit-content;
}

#hero .item {
  max-width: none;
}

#hinweis {
  padding: 0.5rem 2rem;
  background: #7a524d;
  color: #fff;
  border-bottom: 1px solid #f7ece2;
}

#top {
  padding: 0.5rem 2rem;
  background: linear-gradient(90deg, rgba(228, 193, 160, 0.3) 0%, rgba(242, 234, 231, 0.3) 50%, rgb(244, 244, 244) 100%);
  color: #716136;
  border-bottom: 1px solid #f7ece2;
}

#phone {
  display: none;
  visibility: hidden;
}
@media (min-width: 900px) {
  #phone {
    display: block;
    visibility: visible;
  }
}

header {
  padding: 1rem 1rem;
  background: hsl(0, 0%, 100%);
  z-index: 100;
  position: relative;
  top: 0;
  box-shadow: 0px 11px 8px -10px #CCC;
}
@media (min-width: 900px) {
  header {
    padding: 2rem 2rem;
  }
}
@media (min-width: 900px) {
  header {
    position: sticky;
  }
}

#title p a {
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--font-color);
  text-decoration: none;
}

nav {
  display: none;
  visibility: hidden;
}
@media (min-width: 900px) {
  nav {
    display: flex;
    visibility: visible;
  }
}

nav {
  display: none;
  visibility: hidden;
  flex-direction: column;
  gap: 2rem;
  list-style-type: none;
  padding-left: 0;
}
@media (min-width: 900px) {
  nav {
    flex-direction: row;
    display: flex;
    visibility: visible;
  }
}

nav a {
  color: var(--font-color);
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}

label {
  display: block;
  position: relative;
  top: -67px;
  visibility: hidden;
}

/* HERO */
#hero {
  background-image: linear-gradient(0deg, var(--gradient-fullop) 15%, var(--gradient-noop) 50%), url(../assets/wallpaper_cb.png);
  background-image: url(../assets/wallpaper_cb.png);
  background-attachment: fixed;
  padding: 1.5rem 1rem;
  box-shadow: inset 0px -11px 8px -10px #CCC;
}
@media (min-width: 900px) {
  #hero {
    padding: 6rem 4rem;
  }
}

#hero p {
  font-size: clamp(1.2rem, 3.5vw, 3rem);
  font-weight: 200;
  line-height: normal;
}

#hero h1 {
  font-size: clamp(2rem, 13vw, 5.5rem);
  font-weight: 900;
  line-height: normal;
}

#hero h2 {
  font-size: clamp(1rem, 2.7vw, 2rem);
  font-weight: 200;
  margin-top: 0.5rem;
  line-height: 1;
}

#hero h1, #hero h2, #hero p {
  max-width: fit-content;
  background: var(--hero-shadow-color);
  box-shadow: 0px 0px 15px 5px var(--hero-shadow-color), 0px 0px 25px 25px var(--hero-shadow-color), 0px 0px 35px 45px var(--hero-shadow-color);
}

#hero img {
  box-shadow: var(--shadow-elevation-high);
  outline: 2px solid var(--bg-color);
  transition: 0.3s;
}
@media (max-width: 599px) {
  #hero img {
    transition: none;
  }
}

#hero img:hover {
  transform: none;
  transition: none;
  transform: rotate(2deg);
  transition: 0.3s;
}
@media (max-width: 599px) {
  #hero img:hover {
    transform: none;
    transition: none;
  }
}

/* Sections */
section {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #eee;
}

:is(section):not(#hero) {
  padding: var(--root-padding);
  text-shadow: 1px 1px 1px var(--font-shadow);
}

section.leistungen {
  padding: 4rem;
  background: linear-gradient(90deg, rgba(228, 193, 160, 0.3) 0%, rgba(242, 234, 231, 0.3) 50%, rgb(244, 244, 244) 100%);
}

section.sprechzeiten {
  background: linear-gradient(290deg, rgba(93, 184, 12, 0.3) 0%, rgba(234, 234, 58, 0.3) 30%, rgb(239, 239, 239) 60%);
}

section.sprechzeiten td {
  padding-right: 1.5rem;
}

section.kontakt {
  background: linear-gradient(90deg, rgba(228, 193, 160, 0.3) 0%, rgba(242, 234, 231, 0.3) 50%, rgb(244, 244, 244) 100%);
}

.kontakt .bignumber {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 200;
}

section.anfahrt {
  background: linear-gradient(270deg, rgba(97, 93, 90, 0.3) 0%, rgba(173, 166, 160, 0.3) 50%, rgb(244, 244, 244) 100%);
}

section.anfahrt > .row > .item {
  margin-left: 0px;
}

section.anfahrt img {
  margin-bottom: calc(var(--root-padding) * -1 * 3);
  z-index: 100;
  position: relative;
}

ul {
  list-style: square outside;
  padding-left: 1rem;
}

p.list-title {
  padding-bottom: 0;
  font-weight: bold;
}

footer {
  padding: var(--root-padding);
  background: var(--bg-color);
}

footer > p {
  padding-top: 0.25em;
  font-size: 0.9rem;
  color: var(--font-color-variant);
  text-align: left;
  z-index: 200;
  position: relative;
}
@media (min-width: 900px) {
  footer > p {
    text-align: center;
  }
}

footer p a {
  text-decoration: none;
}/*# sourceMappingURL=docstyles.css.map */