@charset "UTF-8";
:root {
  --col-beige: hsl(16, 17%, 77%);
  --col-beige-hell: hsl(34, 22%, 79%);
}

:root {
  --header-height: 15dvh;
  --content-main: 90%;
  --grid-base: 1fr var(--content-main) 1fr;
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
  :root {
    --content-main: 70%;
  }
}
@media screen and (min-width: 1680px) and (orientation: landscape) {
  :root {
    --content-main: 60%;
  }
}
@media screen and (min-width: 1980px) and (orientation: landscape) {
  :root {
    --content-main: 50%;
  }
}
:root {
  --spacer-side: 1rem;
}

:root {
  --border-reg: 1rem;
}

:root {
  --col-beige: hsl(16, 17%, 77%);
  --col-beige-hell: hsl(34, 22%, 79%);
}

:root {
  --header-height: 15dvh;
  --content-main: 90%;
  --grid-base: 1fr var(--content-main) 1fr;
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
  :root {
    --content-main: 70%;
  }
}
@media screen and (min-width: 1680px) and (orientation: landscape) {
  :root {
    --content-main: 60%;
  }
}
@media screen and (min-width: 1980px) and (orientation: landscape) {
  :root {
    --content-main: 50%;
  }
}
:root {
  --spacer-side: 1rem;
}

:root {
  --border-reg: 1rem;
}

@font-face {
  font-family: "EncSans";
  font-weight: 300;
  src: url(_fonts/EncodeSans_SemiExpanded-Light.ttf);
}
@font-face {
  font-family: "EncSans";
  font-weight: bold;
  src: url(_fonts/EncodeSans_SemiExpanded-Bold.ttf);
}
/* @font-face {
    font-family: "Exo2";
    font-weight:700;
    src: url(_fonts/Exo_2/static/Exo2-Bold.ttf);
}

@font-face {
    font-family: "Exo2";
    font-weight:900;
    src: url(_fonts/Exo_2/static/Exo2-Black.ttf);
}


@font-face {
    font-family: "RobotoSlab";
    font-weight: 400;
    src: url(_fonts/RobotoSlab-Regular.ttf);
}

@font-face {
    font-family: "RobotoSlab";
    font-weight: 300;
    src: url(_fonts/RobotoSlab-Light.ttf);
}
 */
:root {
  --fs-root: clamp(.75rem, calc(2vmax + .1rem), 1.2rem);
  --letter-spacing: clamp(0em, 0.02vw, 0.05em);
  --fs-00: calc((var(--fs-01)/10) * 7);
  --fs-01: 1rem;
  --fs-02: calc(var(--fs-01) * 1.2);
  --fs-03: calc(var(--fs-01) * 1.4);
  --fs-04: calc(var(--fs-01) * 1.7);
  --fs-05: calc(var(--fs-01) * 2.2);
  --fs-xl: calc(var(--fs-01) * 2.5);
}

html {
  font-size: var(--fs-root);
  letter-spacing: var(--letter-spacing);
  hyphenate-limit-chars: 10 3 3;
}

body {
  font-family: "EncSans", sans-serif;
  line-height: 1.4;
}

h1, h2, h3, h4, h5, h6, p {
  padding: 0;
  margin: 0;
}

p, li {
  -webkit-hyphens: auto;
          hyphens: auto;
}

h1 {
  font-size: var(--fs-05);
  margin-bottom: 1em;
}

h2, h3, h4, h5, h6 {
  margin-bottom: 0.5em;
}

h2 {
  font-size: var(--fs-04);
}

h3 {
  font-size: var(--fs-03);
}

p, ul, li, h4, h5, h6, input, button {
  font-size: var(--fs-01);
  margin-bottom: 1ch;
}

p strong {
  font-weight: bold;
}

@media screen and (min-width: 1680px) and (orientation: landscape) {
  :root {
    --fs-00: .9rem;
    --fs-01: 1rem;
    --fs-02: 1.25rem;
    --fs-03: 1.5rem;
    --fs-04: 1.8rem;
    --fs-05: 2.5rem;
    --fs-xl: 3rem;
  }
}
@media screen and (min-width: 1980px) and (orientation: landscape) {
  :root {
    --fs-00: 1rem;
    --fs-01: 1.1rem;
    --fs-02: 1.3rem;
    --fs-03: 1.7rem;
    --fs-04: 2rem;
    --fs-05: 2.7rem;
    --fs-xl: 3.2rem;
  }
}
a:-moz-any-link {
  color: unset;
  text-decoration: none;
  cursor: pointer;
}
a:any-link {
  color: unset;
  text-decoration: none;
  cursor: pointer;
}

:root {
  --col-beige: hsl(16, 17%, 77%);
  --col-beige-hell: hsl(34, 22%, 79%);
}

:root {
  --header-height: 15dvh;
  --content-main: 90%;
  --grid-base: 1fr var(--content-main) 1fr;
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
  :root {
    --content-main: 70%;
  }
}
@media screen and (min-width: 1680px) and (orientation: landscape) {
  :root {
    --content-main: 60%;
  }
}
@media screen and (min-width: 1980px) and (orientation: landscape) {
  :root {
    --content-main: 50%;
  }
}
:root {
  --spacer-side: 1rem;
}

:root {
  --border-reg: 1rem;
}

html, body {
  width: 100%;
  padding: 0px;
  margin: 0px;
}
html *, body * {
  box-sizing: border-box;
}

body {
  background: var(--col-beige);
}

main {
  display: grid;
  grid-template-columns: var(--grid-base);
}

article.container {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: var(--grid-base);
}

.container {
  display: grid;
  grid-template-columns: var(--grid-base);
}

:root {
  --col-beige: hsl(16, 17%, 77%);
  --col-beige-hell: hsl(34, 22%, 79%);
}

:root {
  --header-height: 15dvh;
  --content-main: 90%;
  --grid-base: 1fr var(--content-main) 1fr;
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
  :root {
    --content-main: 70%;
  }
}
@media screen and (min-width: 1680px) and (orientation: landscape) {
  :root {
    --content-main: 60%;
  }
}
@media screen and (min-width: 1980px) and (orientation: landscape) {
  :root {
    --content-main: 50%;
  }
}
:root {
  --spacer-side: 1rem;
}

:root {
  --border-reg: 1rem;
}

header {
  display: grid;
  grid-template-columns: var(--grid-base);
  position: relative;
  top: 0;
  padding-top: 1rem;
  width: 100%;
  padding-bottom: 1rem;
  height: var(--header-height);
  height: unset;
}

.logo {
  grid-column: 2/3;
  align-self: self-start;
  height: 2rem;
  position: relative;
}
.logo img {
  height: 100%;
  width: auto;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .logo {
    height: 3rem;
  }
}

.kontakt-header {
  position: absolute;
  top: 1rem;
  grid-column: 2/3;
  justify-self: end;
  align-self: self-start;
}
.kontakt-header p {
  display: block;
  font-family: "copperplate", serif;
  font-weight: 500;
  font-size: var(--fs-00);
  text-transform: uppercase;
  line-height: 1;
}
.kontakt-header span {
  display: none;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .kontakt-header {
    position: absolute;
    top: 1rem;
    grid-column: 2/3;
    justify-self: end;
    align-self: self-start;
  }
  .kontakt-header p {
    display: inline-block;
  }
  .kontakt-header span {
    display: inline;
  }
}

:root {
  --col-beige: hsl(16, 17%, 77%);
  --col-beige-hell: hsl(34, 22%, 79%);
}

:root {
  --header-height: 15dvh;
  --content-main: 90%;
  --grid-base: 1fr var(--content-main) 1fr;
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
  :root {
    --content-main: 70%;
  }
}
@media screen and (min-width: 1680px) and (orientation: landscape) {
  :root {
    --content-main: 60%;
  }
}
@media screen and (min-width: 1980px) and (orientation: landscape) {
  :root {
    --content-main: 50%;
  }
}
:root {
  --spacer-side: 1rem;
}

:root {
  --border-reg: 1rem;
}

:root {
  --col-beige: hsl(16, 17%, 77%);
  --col-beige-hell: hsl(34, 22%, 79%);
}

:root {
  --header-height: 15dvh;
  --content-main: 90%;
  --grid-base: 1fr var(--content-main) 1fr;
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
  :root {
    --content-main: 70%;
  }
}
@media screen and (min-width: 1680px) and (orientation: landscape) {
  :root {
    --content-main: 60%;
  }
}
@media screen and (min-width: 1980px) and (orientation: landscape) {
  :root {
    --content-main: 50%;
  }
}
:root {
  --spacer-side: 1rem;
}

:root {
  --border-reg: 1rem;
}

footer {
  display: grid;
  grid-template-columns: var(--grid-base);
}

:root {
  --col-beige: hsl(16, 17%, 77%);
  --col-beige-hell: hsl(34, 22%, 79%);
}

:root {
  --header-height: 15dvh;
  --content-main: 90%;
  --grid-base: 1fr var(--content-main) 1fr;
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
  :root {
    --content-main: 70%;
  }
}
@media screen and (min-width: 1680px) and (orientation: landscape) {
  :root {
    --content-main: 60%;
  }
}
@media screen and (min-width: 1980px) and (orientation: landscape) {
  :root {
    --content-main: 50%;
  }
}
:root {
  --spacer-side: 1rem;
}

:root {
  --border-reg: 1rem;
}

:root {
  --col-beige: hsl(16, 17%, 77%);
  --col-beige-hell: hsl(34, 22%, 79%);
}

:root {
  --header-height: 15dvh;
  --content-main: 90%;
  --grid-base: 1fr var(--content-main) 1fr;
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
  :root {
    --content-main: 70%;
  }
}
@media screen and (min-width: 1680px) and (orientation: landscape) {
  :root {
    --content-main: 60%;
  }
}
@media screen and (min-width: 1980px) and (orientation: landscape) {
  :root {
    --content-main: 50%;
  }
}
:root {
  --spacer-side: 1rem;
}

:root {
  --border-reg: 1rem;
}

article.container section {
  grid-column: 2/3;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
article.container section div {
  grid-column: 1/-1;
}
article.container section div ul {
  margin: 0;
}
article.container section div ul li {
  font-size: var(--fs-03);
}

.c2a-kontakt {
  outline: 1px solid black;
  position: relative;
  margin: 4rem 0 2rem 0;
  padding: 1rem;
  width: 14ch;
  font-size: var(--fs-03);
  font-weight: light;
  text-align: center;
  background-color: var(--col-beige-hell);
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .c2a-kontakt:before {
    content: "demnächst hier mehr entdecken";
    position: absolute;
    width: 14ch;
    left: -18ch;
    top: 0;
    outline: 1px solid black;
    padding: 1rem;
    text-align: center;
  }
}

.hero-img {
  position: relative;
  grid-column: 1/-1;
}
.hero-img img {
  width: 100%;
}
.hero-img:before {
  content: "";
  position: absolute;
  width: 20vw;
  height: 20vw;
  top: -10vw;
  left: 2vw;
  background: url(_bm/seit1994.webp) no-repeat;
  background-size: cover;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .hero-img:before {
    width: 10vw;
    height: 10vw;
    top: -5vw;
    left: 12vw;
  }
}
@media screen and (min-width: 1680px) and (orientation: landscape) {
  .hero-img:before {
    width: 10vw;
    height: 10vw;
    top: -5vw;
    left: 20vw;
  }
}
.hero-img:after {
  content: "Website im Aufbau";
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-family: "copperplate", serif;
  font-size: var(--fs-03);
  font-weight: medium;
  line-height: 0;
  color: white;
  text-shadow: 2px 2px 2px black;
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .hero-img:after {
    font-size: var(--fs-xl);
    margin-bottom: 2rem;
    right: 2rem;
  }
}

article.container figure.hero-img-sound {
  position: relative;
  grid-column: 2/3;
  justify-self: center;
  margin-bottom: 0.5rem;
  width: 70%;
}
article.container figure.hero-img-sound:before {
  content: "finest Natural Sound";
  font-family: "copperplate", serif;
  font-size: var(--fs-02);
  text-transform: uppercase;
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: 0;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  article.container figure.hero-img-sound:before {
    font-size: var(--fs-04);
  }
}

article.container figure.hero-img-ghm {
  grid-column: 2/3;
  width: 100%;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  article.container figure.hero-img-ghm {
    grid-column: 2/3;
    width: 80%;
  }
}

:root {
  --col-beige: hsl(16, 17%, 77%);
  --col-beige-hell: hsl(34, 22%, 79%);
}

:root {
  --header-height: 15dvh;
  --content-main: 90%;
  --grid-base: 1fr var(--content-main) 1fr;
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
  :root {
    --content-main: 70%;
  }
}
@media screen and (min-width: 1680px) and (orientation: landscape) {
  :root {
    --content-main: 60%;
  }
}
@media screen and (min-width: 1980px) and (orientation: landscape) {
  :root {
    --content-main: 50%;
  }
}
:root {
  --spacer-side: 1rem;
}

:root {
  --border-reg: 1rem;
}/*# sourceMappingURL=base.css.map */