@font-face {
  font-family: "AvenirLT";
  src: url("fonts/AvenirLT-Light.woff") format("woff");
  font-weight: 300;
}
@font-face {
  font-family: "AvenirLT";
  src: url("fonts/AvenirLT-Heavy.woff") format("woff");
  font-weight: 600;
}
@font-face {
  font-family: "CenturyGothic";
  src: url("fonts/Century-Gothic.woff") format("woff");
  font-weight: 700;
}
@font-face {
  font-family: "SimpleSerenity";
  src: url("fonts/SimpleSerenitySerif.woff") format("woff");
  font-weight: 700;
}
html {
  font-family: AvenirLT, sans-serif;
  font-style: normal;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "kern" 1, "liga" 1;
}

body {
  background-color: white;
  min-height: 100vh;
}

* {
  scroll-behavior: smooth;
  margin: 0 0;
  -webkit-text-stroke-width: 0.03px;
  -webkit-text-stroke-color: black;
  -webkit-font-smoothing: antialiased;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, figcaption, blockquote, dl, dd, div, address {
  line-height: 1.3em;
  margin: 0;
}

ul, ol {
  list-style: none;
  padding: 0;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

html {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
}

* {
  scroll-behavior: smooth;
  font-size: 23px;
  -webkit-text-stroke-color: black;
}
@media (max-width: 1200px) {
  * {
    font-size: 19px;
  }
}

h1::selection, h2::selection, h3::selection, p::selection, a::selection, ul::selection, li::selection, i::selection {
  background: rgba(0, 0, 0, 0.1);
}
h1::-moz-selection, h2::-moz-selection, h3::-moz-selection, p::-moz-selection, a::-moz-selection, ul::-moz-selection, li::-moz-selection, i::-moz-selection {
  background: rgba(0, 0, 0, 0.1);
}

p, a, ul, li {
  font-weight: 300;
  line-height: 1.36em;
  text-decoration: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased !important;
  -moz-font-smoothing: antialiased !important;
  text-rendering: optimizelegibility !important;
}

.section {
  width: 100%;
  padding: 2em;
  margin: 0 auto;
}
@media (max-width: 1600px) {
  .section {
    padding: 2em;
  }
}
@media (max-width: 500px) {
  .section {
    padding: 1em;
  }
}

.content {
  max-width: 1450px;
  display: grid;
  grid-template-columns: auto 45%;
  grid-column-gap: 5em;
  margin: 1em auto;
}
@media (max-width: 1600px) {
  .content {
    grid-column-gap: 4em;
    max-width: 1400px;
  }
}
@media (max-width: 900px) {
  .content {
    display: block;
    margin: 1em auto;
  }
}
.content div {
  display: flex;
  flex-direction: column;
  align-self: center;
}
@media (max-width: 900px) {
  .content .a {
    margin-bottom: 2em;
  }
}
.content h1 {
  font-family: SimpleSerenity;
  font-size: 4em;
  line-height: 1.1em;
}
@media (max-width: 1600px) {
  .content h1 {
    font-size: 6vw;
  }
}
@media (max-width: 1200px) {
  .content h1 {
    font-size: 3.5em;
  }
}
@media (max-width: 900px) {
  .content h1 {
    font-size: 14vw;
  }
}
@media (max-width: 500px) {
  .content h1 {
    font-size: 12vw;
  }
}
.content h2 {
  font-family: CenturyGothic, sans-serif;
  font-size: 3em;
  text-transform: uppercase;
  line-height: 1.1em;
}
.content h2::before {
  content: "";
  margin-left: 2em;
}
@media (max-width: 1600px) {
  .content h2 {
    font-size: 4.8vw;
  }
}
@media (max-width: 1200px) {
  .content h2 {
    font-size: 2.5em;
  }
}
@media (max-width: 900px) {
  .content h2 {
    font-size: 10vw;
  }
}
@media (max-width: 500px) {
  .content h2 {
    font-size: 9.5vw;
  }
}
.content h2 + h2 {
  margin-left: 1.5em;
}
.content p {
  margin-top: 2em;
  margin-left: 2em;
  margin-bottom: 2em;
  max-width: 650px;
  line-height: 1.45em;
}
.content p strong {
  font-weight: 600;
}
@media (max-width: 1600px) {
  .content p {
    max-width: inherit;
    font-size: 21px;
  }
}
@media (max-width: 1200px) {
  .content p {
    margin-left: 0;
  }
}
@media (max-width: 900px) {
  .content p {
    font-size: 20px;
  }
}
@media (max-width: 500px) {
  .content p {
    font-size: 19px;
  }
}
.content p a {
  color: #ae9872;
  text-decoration: underline;
  -webkit-text-stroke-color: #ae9872;
  font-size: 1em;
}

.reverse {
  grid-template-columns: 45% auto;
}
@media (max-width: 900px) {
  .reverse {
    grid-template-columns: 1fr;
  }
}
.reverse .b {
  grid-column-start: 1;
  grid-row-start: 1;
}
.reverse .a {
  grid-column-start: 2;
  grid-row-start: 1;
}

@media (max-width: 1200px) {
  .basic-site {
    display: block;
    max-width: 1000px;
  }
}
.basic-site div {
  align-self: flex-start;
}
.basic-site p {
  margin: 0 0 1em 0;
}
.basic-site a {
  color: black;
  text-decoration: underline;
}
.basic-site a:hover {
  color: #ae9872;
  font-style: italic;
  -webkit-text-stroke-color: #ae9872;
}

.fade-in {
  opacity: 0;
  transform: translateY(10vh);
  visibility: hidden;
  transition: opacity 0.6s ease-out, transform 0.8s ease-out;
  will-change: opacity, visibility;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
  visibility: visible;
}

#header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (max-width: 500px) {
  #header {
    margin-bottom: 1em;
  }
}
#header a {
  font-family: CenturyGothic, sans-serif;
  font-size: 30px;
  color: #ae9872;
  -webkit-text-stroke-color: #ae9872;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
@media (max-width: 1600px) {
  #header a {
    font-size: 24px;
  }
}
@media (max-width: 1200px) {
  #header a {
    font-size: 20px;
  }
}
@media (max-width: 900px) {
  #header a {
    font-size: 16px;
  }
}
#header .logo {
  width: 150px;
  margin-left: -2em;
  margin-bottom: 2em;
}
@media (max-width: 1600px) {
  #header .logo {
    width: 130px;
    margin-bottom: 1.5em;
  }
}
@media (max-width: 1200px) {
  #header .logo {
    width: 100px;
    margin-bottom: 1em;
  }
}
@media (max-width: 500px) {
  #header .logo {
    width: 80px;
  }
}

#hinweis {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  left: 1.5em;
  top: 2em;
  padding: 1.3em;
}
@media (max-width: 1600px) {
  #hinweis {
    width: 200px;
    height: 200px;
    padding: 1em;
  }
}
@media (max-width: 1200px) {
  #hinweis {
    border-radius: inherit;
    width: 100vw;
    height: 50px;
    padding: 0.7em;
    left: 0;
    top: -2em;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
}
@media (max-width: 500px) {
  #hinweis {
    display: block;
    padding: 0.5em;
    height: 100%;
    top: -1em;
  }
}
#hinweis h3, #hinweis p {
  color: white;
  -webkit-text-stroke-color: white;
  width: 90%;
  margin: 0 auto;
  font-size: 22px;
}
@media (max-width: 1600px) {
  #hinweis h3, #hinweis p {
    font-size: 18px;
  }
}
@media (max-width: 1200px) {
  #hinweis h3, #hinweis p {
    width: auto;
    margin: 0 1em 0 0;
  }
}
@media (max-width: 900px) {
  #hinweis h3, #hinweis p {
    font-size: 0.8rem;
  }
}
#hinweis h3 {
  text-transform: uppercase;
  font-size: 1.1em;
  margin-bottom: 0.5em;
}
@media (max-width: 1600px) {
  #hinweis h3 {
    font-size: 1em;
  }
}
@media (max-width: 900px) {
  #hinweis h3 {
    font-size: 0.8rem;
  }
}
@media (max-width: 500px) {
  #hinweis h3 {
    margin-bottom: 0.2em;
  }
}

#footer {
  max-width: 1300px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media (max-width: 900px) {
  #footer {
    flex-direction: column;
    align-items: center;
  }
}
#footer p, #footer a {
  text-transform: uppercase;
  font-weight: 300;
  font-size: 14px;
  color: #ae9872;
  -webkit-text-stroke-color: #ae9872;
  font-style: normal;
  margin-left: 1.5em;
  line-height: 1.5em;
}
#footer a:hover {
  text-decoration: underline;
}

#contact-button {
  position: fixed;
  right: 1.5em;
  bottom: 1.5em;
  background-color: #ae9872;
  background-image: url(./images/kontakt.svg);
  background-size: 60px;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  height: 85px;
  width: 85px;
  z-index: 100;
}
@media (max-width: 900px) {
  #contact-button {
    height: 70px;
    width: 70px;
    background-size: 50px;
  }
}

#intro {
  max-width: 1600px;
  margin-top: -1em;
}
@media (max-width: 900px) {
  #intro {
    margin-top: inherit;
  }
}
#intro h1 em {
  font-size: 1.8em;
  font-style: inherit;
  margin-right: -0.1em;
}
@media (max-width: 1600px) {
  #intro h1 em {
    font-size: 11.5vw;
  }
}
@media (max-width: 900px) {
  #intro h1 em {
    font-size: 19vw;
  }
}
@media (max-width: 500px) {
  #intro h1 em {
    font-size: 22vw;
  }
}
#intro h2 {
  font-size: 5rem;
  color: #ae9872;
  -webkit-text-stroke-color: #ae9872;
}
@media (max-width: 1600px) {
  #intro h2 {
    font-size: 7.5vw;
  }
}
@media (max-width: 900px) {
  #intro h2 {
    font-size: 12vw;
  }
}
@media (max-width: 500px) {
  #intro h2 {
    font-size: 13vw;
  }
}
#intro .unterschrift {
  margin-top: 80px;
  position: relative;
}
#intro .unterschrift::before {
  position: absolute;
  content: "";
  width: 190px;
  height: 80px;
  bottom: 130%;
  left: -14px;
  overflow: hidden;
  background-image: url(./images/Unterschrift_SI.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #ae9872;
  background-blend-mode: lighten;
}
@media (max-width: 500px) {
  #intro .unterschrift::before {
    left: -10px;
  }
}

#handwerk .slider {
  max-width: 700px;
}
@media (max-width: 1200px) {
  #handwerk .slider {
    width: 100%;
  }
}
#handwerk .slides h3 {
  font-weight: 300;
  text-transform: uppercase;
  text-align: center;
}
#handwerk .slides p {
  margin: 0.2em 0 0 0;
  text-align: center;
}
@media (max-width: 500px) {
  #handwerk .slick-prev {
    left: 0;
    z-index: 100;
    height: 35px;
  }
}
@media (max-width: 500px) {
  #handwerk .slick-next {
    right: 0;
    z-index: 100;
    height: 35px;
  }
}

#handwerk div {
  display: block;
}

#ueber-mich figure {
  max-width: 180px;
  margin: -0.5em 0em -1.5em 1.5em;
}

#newsletter .form form button {
  padding: 0.2em 0.8em;
  background: none;
  border: 2px solid #ae9872;
  border-radius: 1em;
  color: #ae9872;
  -webkit-text-stroke-color: #ae9872;
  font-family: CenturyGothic, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
#newsletter .form form button:hover {
  cursor: pointer;
}

#kontakt a, #kontakt h3, #kontakt address, #kontakt p {
  line-height: 1.4em;
  color: #ae9872;
  -webkit-text-stroke-color: #ae9872;
}
#kontakt a {
  color: #ae9872;
}
#kontakt a:hover {
  text-decoration: underline;
}
#kontakt h3 {
  text-transform: uppercase;
  font-weight: 300;
}
#kontakt address {
  font-style: normal;
}
#kontakt p {
  margin: 0;
}
#kontakt div {
  display: block;
}
#kontakt h3 + p {
  margin-bottom: 2em;
}
#kontakt .socials {
  display: flex;
  flex-direction: row;
  margin-top: 1em;
  margin-bottom: 2em;
}
#kontakt .socials a {
  width: 35px;
  height: 35px;
  margin-right: 1em;
}
