@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&family=Poppins&family=Roboto&family=Sofia+Sans+Extra+Condensed&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
:root {
  --color-header: #f4efec;
  --color-text: #b19b6d;
}
@font-face {
  font-family: gillsans;
  src: url(../fonts/glsnecb.ttf);
}
@font-face {
  font-family: gillnova;
  src: url(../fonts/GillSansNova.ttf);
}
html,
body {
  overflow-x: hidden;
  touch-action: pan-y pinch-zoom;
}
body {
  background-color: black;
  color: #b19b6d;
  font-family: gillsans;
}

#menuToggle {
  padding: 20px 20px 10px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  z-index: 1;
}
#menuToggle input {
  position: absolute;
  width: 40px;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
  -webkit-touch-callout: none;
}
#menuToggle span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #b19b6d;
  border-radius: 3px;
  z-index: 1;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
    background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
  transform-origin: 4px 0px;
}
#menuToggle span:first-child {
  transform-origin: 0% 0%;
}
#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}
#menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #b19b6d;
}
#menuToggle input:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, -1px);
}
#menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}
#menu {
  position: absolute;
  right: -300px;

  width: 120px;

  margin-top: 250px;
  padding-top: 20px;
  padding-left: 5px;

  background: black;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  transition: right 0.5s;
}

#menu li {
  padding: 10px 0 10px 10px;
  font-family: gillsans;
  font-size: 2rem;
}
#menuToggle input:checked ~ ul {
  right: 40px;
}
#menu a {
  color: #b19b6d;
  text-decoration: none;
  cursor: pointer;
}
#menu li:hover {
  background-color: #b19b6d;
  color: black;
}

.header {
  /* padding: 10px; */
  padding-bottom: 0px;
  padding-left: 10px;
  padding-right: 10px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  /* grid-gap: 10px; */
  grid-template-columns: repeat(1, 1fr);
  /* grid-auto-rows: 250px; */
  /* grid-auto-flow: dense; */
  /* margin-bottom: 90px; */
}

.header h1 {
  font-family: gillsans;
  font-size: 10rem;
  letter-spacing: 0.3rem;
}
.header2 {
  /* padding: 10px; */
  padding-top: 0px;
  padding-left: 10px;
  padding-right: 10px;

  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  /* grid-gap: 10px; */
  grid-template-columns: repeat(1, 1fr);
  /* grid-auto-rows: 250px; */
  grid-auto-flow: dense;
  margin-bottom: 50px;
}
.header2 h3 {
  font-family: gillsans;
  font-size: 2rem;
  letter-spacing: 0.1rem;
  word-spacing: 15px;
}

.gallery {
  padding: 10px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 250px;
  grid-auto-flow: dense;
  margin-bottom: 3rem;
}

.v-stretch {
  grid-row: span 2;
}
.h-stretch {
  grid-column: span 2;
}
.big-stretch {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}
.gallery div img:hover {
  transform: scale(1.02);
}

.about {
  padding: 10px 40px;
  height: auto;
  margin-left: 60px;
}

.about h1 {
  margin-bottom: 20px;
  font-family: gillsans;
  letter-spacing: 0.1rem;
}
.about p {
  font-family: "Open+Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  max-width: 380px;
  margin-left: 50px;
}
.about a {
  text-decoration: none;
  color: #b19b6d;
  cursor: pointer;
}
.about a:hover {
  color: #716344;
}
.footer {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 11px;
  padding: 10px;
  background-color: rgb(51, 49, 49);
  letter-spacing: 0.1rem;
  margin-top: 20px;
  position: fixed;
  bottom: 0;
  left: 0px;
  width: 100%;
}

.footer a {
  color: #b19b6d;
  text-decoration: none;
  cursor: pointer;
  margin-right: 10px;
  margin-left: 10px;
}
.footer i.fa-brands {
  color: #b19b6d;
}
.footer i.fa-brands:hover {
  background-color: #b19b6d;

  color: black;
}

.footer a:hover {
  background-color: #b19b6d;
  color: black;
}
.impressum {
  padding: 10px 40px;
  height: auto;
  margin-left: 60px;
}
.impressum h1 {
  margin-bottom: 20px;
  font-family: "Sofia+Sans+Extra+Condensed", sans-serif;
  letter-spacing: 0.1rem;
}
.impressum h2 {
  margin-bottom: 5px;
  font-family: "Sofia+Sans+Extra+Condensed", sans-serif;
}
.impressum p {
  font-family: "Open+Sans", sans-serif;
  font-weight: 300;
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 20px;

  max-width: 530px;
}
@media (max-width: 560px) {
  .v-stretch {
    grid-row: span 1;
  }
  .h-stretch {
    grid-column: span 1;
  }
  .big-stretch {
    grid-row: span 1;
    grid-column: span 1;
  }
  .header h1 {
    font-size: 6rem;
    letter-spacing: 0.2rem;
    font-weight: 100;
  }
  .header2 h3 {
    font-size: 1rem;
    word-spacing: 5px;
    font-weight: 100;
  }
  .about {
    margin-left: 0;
    padding: 10px 20px;
  }
  .about h1 {
    font-weight: 100;
  }
  .impressum {
    margin-left: 0;
    padding: 10px 20px;
  }
  .impressum h1 {
    font-weight: 100;
  }
}
