@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/******** LANDSCAPE **********/
/******** PORTRAIT **********/
.burger {
  z-index: 20;
}

.icon-wrapper {
  position: absolute;
  top: 1em;
  right: 1em;
  z-index: 2;
  height: 60px;
  width: 60px;
}
.icon-wrapper .nav-icon {
  margin: 10px;
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
  display: inline-block;
}
.icon-wrapper .nav-icon span {
  background-color: var(--color-text);
  position: absolute;
  border-radius: 3px;
  transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  width: 100%;
  height: 2px;
  transition-duration: 500ms;
}
.icon-wrapper .nav-icon span:nth-child(1) {
  top: 10px;
  left: 0px;
}
.icon-wrapper .nav-icon span:nth-child(2) {
  top: 20px;
  left: 0px;
  opacity: 1;
}
.icon-wrapper .nav-icon span:nth-child(3) {
  top: 30px;
  left: 0px;
}
.icon-wrapper.fixed {
  position: fixed;
}
.icon-wrapper.black {
  background-color: var(--color-text);
}

.nav-icon:not(.open):hover span:nth-child(1) {
  transform: translateY(-4px);
}

.nav-icon:not(.open):hover span:nth-child(3) {
  transform: translateY(4px);
}

.nav-icon.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 20px;
}

.nav-icon.open span:nth-child(2) {
  opacity: 0;
}

.nav-icon.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 20px;
}

/*** MENU ***/
.blocker {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: " ";
}

.blocker.open {
  display: block;
}

#toggle-menu {
  width: 100vw;
  position: absolute;
  background-color: var(--color-secondary);
  overflow-y: auto;
  text-transform: lowercase;
  transform: translateY(-20em);
  z-index: 10;
  top: 0;
  right: 0;
}
#toggle-menu.open {
  transform: translateY(0);
  transition: 0.3s ease-in;
  top: 10rem;
  background-image: linear-gradient(180deg, white, rgba(255, 255, 255, 0.4) 60%, rgba(0, 0, 0, 0) 90%);
  padding-bottom: 5rem;
  border-bottom: solid var(--color-text) 2px;
}
@media screen and (min-width: 412px) {
  #toggle-menu.open {
    top: 6rem;
  }
}

.menu > div,
.footer-menu > div {
  position: relative;
  margin-right: 1rem;
  min-width: 8rem;
  text-align: center;
}
.menu .bg,
.footer-menu .bg {
  position: absolute;
  bottom: 11px;
  left: 0;
  height: 70%;
  background-color: var(--menu-bg);
  z-index: -1;
  border-radius: 100%;
  width: 110%;
  border: 2px solid;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .menu .bg,
  .footer-menu .bg {
    bottom: -15px;
    height: 150%;
  }
}
@media screen and (min-width: 1600px) {
  .menu .bg,
  .footer-menu .bg {
    height: 190%;
    bottom: -10px;
  }
}
.menu a,
.footer-menu a {
  padding: 1rem;
  display: block;
  color: var(--color-text);
  border-bottom: none;
  position: relative;
  font-weight: bold;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .menu a,
  .footer-menu a {
    padding-bottom: 0;
    line-height: 0.9;
  }
}
@media screen and (min-width: 1200px) {
  .menu a,
  .footer-menu a {
    padding-right: 1rem;
  }
}
@media screen and (min-width: 1600px) {
  .menu a,
  .footer-menu a {
    padding: 0.2rem 1.5rem;
  }
}
.menu a:hover,
.footer-menu a:hover {
  background-image: linear-gradient(90deg, var(--color-text), var(--color-primary) 90%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.menu a[active],
.footer-menu a[active] {
  background-image: linear-gradient(90deg, var(--color-text), var(--color-primary) 90%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mobile-menu {
  padding: 3em 1em;
}
.mobile-menu a {
  width: 100%;
  display: inline-block;
  color: var(--color-text);
  border-bottom: none;
}
.mobile-menu a[active] {
  color: var(--color-primary);
}

body.block {
  height: 100%;
  overflow: hidden;
}

.bottom-menu {
  padding-top: 2rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .bottom-menu {
    display: none;
  }
}

.grid {
  display: grid;
  grid-gap: 1rem;
}

header, footer {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (min-width: 1600px) {
  header, footer {
    grid-template-columns: repeat(10, 1fr);
  }
}
header .logo, footer .logo {
  grid-column: 1/5;
}
@media screen and (min-width: 1200px) {
  header .logo, footer .logo {
    grid-column: 1/3;
  }
}
@media screen and (min-width: 1600px) {
  header .logo, footer .logo {
    grid-column: 2/6;
  }
}
header .menu, header .footer-menu, footer .menu, footer .footer-menu {
  grid-column: 1/5;
}
@media screen and (min-width: 1200px) {
  header .menu, header .footer-menu, footer .menu, footer .footer-menu {
    grid-column: 3/5;
  }
}
@media screen and (min-width: 1600px) {
  header .menu, header .footer-menu, footer .menu, footer .footer-menu {
    grid-column: 6/10;
  }
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
  .home-template main .text {
    grid-column: 1/8;
  }
}
@media screen and (min-width: 1600px) {
  .home-template main .text {
    order: 2;
    grid-column: 7/10;
  }
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
  main {
    grid-template-columns: repeat(7, 1fr);
  }
}
@media screen and (min-width: 1600px) {
  main {
    grid-template-columns: repeat(10, 1fr);
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  main .text {
    grid-column: 1/7;
  }
}
@media screen and (min-width: 1600px) {
  main .text {
    grid-column: 2/7;
  }
}
@media screen and (min-width: 576px) {
  main .image-menu {
    grid-column: 1/3;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 480px) and (orientation: landscape) {
  main .image-menu {
    grid-column: 1/3;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  main .image-menu {
    grid-column: 1/3;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  main .image-menu {
    grid-column: 2/7;
  }
}
@media screen and (min-width: 1600px) {
  main .image-menu {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1600px) {
  main .image-menu {
    grid-column: 2/7;
  }
}
@media screen and (min-width: 576px) {
  main .photoswipe {
    display: block;
    column-width: 200px;
    column-gap: 0.5em;
    grid-column: 1/11;
  }
  main .photoswipe .overlay {
    margin-bottom: 0.5rem;
    -webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
    break-inside: avoid;
  }
}
@media screen and (min-width: 480px) and (orientation: landscape) {
  main .photoswipe {
    display: block;
    column-width: 200px;
    column-gap: 0.5em;
    grid-column: 1/11;
  }
  main .photoswipe .overlay {
    margin-bottom: 0.5rem;
    -webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
    break-inside: avoid;
  }
}
@media screen and (min-width: 1200px) {
  main .photoswipe {
    column-width: 250px;
    column-gap: 1em;
  }
  main .photoswipe .overlay {
    margin-bottom: 1rem;
  }
}
@media screen and (min-width: 1400px) {
  main .photoswipe {
    column-width: 350px;
  }
}
@media screen and (min-width: 1600px) {
  main .photoswipe {
    grid-column: 2/10;
    column-width: calc((10vw - 2rem) / 4 * 8);
  }
}

@font-face {
  font-family: "Regular";
  src: url("../fonts/DellaRespira-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Logo";
  src: url("../fonts/BoecklinsUniverse.woff2") format("woff2");
}
:root {
  --color-text: #471a1a;
  --color-primary: #99451f;
  --color-primary-transparent: rgba(71, 68, 66, 0.6);
  --color-secondary: #99451f;
  --color-tertiary: #702f11;
  --color-bg: #b3e8f9;
  --menu-bg: rgb(250, 248, 248);
  --font-headlines: "Black", serif;
  --font-text: "Regular", serif;
  --font-bold: "Bold", serif;
  --font-italic: "Italic", serif;
  --font-logo: "Logo", serif;
}

* {
  margin: 0;
  padding: 0;
}

/************** GENERAL STYLING **************/
html,
body {
  overflow-x: hidden;
}

body {
  font-family: var(--font-text);
  color: var(--color-text);
  animation: fadeIn 1.5s ease;
  font-size: 1.3rem;
  height: 100vh;
  background-color: var(--color-bg);
  background-size: cover;
}
body.menu-open header {
  background-color: white;
  transition: 0.3s ease-in;
}
body.menu-open header .logo span {
  background-color: white;
  transition: 0.3s ease-in;
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  body {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }
  body::-webkit-scrollbar {
    display: none;
  }
  body .logo span {
    rotate: 0.3deg;
    display: inline-block;
    margin: -4px;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  body {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }
  body::-webkit-scrollbar {
    display: none;
  }
  body .logo span {
    rotate: 0.3deg;
    display: inline-block;
    margin: -4px;
  }
}

@media screen and (min-width: 768px) and (orientation: portrait) {
  .main-container {
    position: fixed;
    overflow: scroll;
    top: 13rem;
    bottom: 0;
    width: 100vw;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .main-container {
    position: fixed;
    overflow: scroll;
    top: 13rem;
    bottom: 0;
    width: 100vw;
  }
}
@media screen and (min-width: 1600px) {
  .main-container {
    top: 10rem;
  }
}

.border {
  display: none;
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  .border {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: scroll;
    z-index: -1;
    border: none !important;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .border {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: scroll;
    z-index: -1;
    border: none !important;
  }
}
.border img {
  height: 100%;
}
.border.top {
  z-index: 20;
  height: 8%;
}
.border.bottom {
  z-index: 20;
  bottom: 0;
  height: 5.5%;
  top: auto;
  z-index: 10;
  position: absolute;
}
.border.bottom img {
  height: 100%;
}
.border svg {
  height: 100%;
  width: 100%;
}

h1,
h2,
h3 {
  font-weight: bold;
}

a {
  text-decoration: none;
  color: var(--color-text);
}

a:hover {
  color: var(--color-text);
}

.text a {
  border-bottom: 1px solid var(--color-primary);
}
.text a:hover {
  background-image: linear-gradient(90deg, var(--color-text), var(--color-primary) 90%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

img {
  width: 100%;
}

/************** HEADER **************/
header {
  position: relative;
  width: 100vw;
  padding: 5.5rem 1.5rem 1.5rem;
}
@media screen and (min-width: 412px) {
  header {
    padding: 2rem 1rem 0;
  }
}
@media screen and (min-width: 480px) and (orientation: landscape) {
  header {
    padding: 2rem 2rem 0;
  }
}
@media screen and (min-width: 576px) {
  header {
    padding: 2rem 2rem 0;
  }
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  header {
    position: fixed;
    padding: 3rem 5rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  header {
    padding: 2.5rem 4rem;
  }
}
@media screen and (min-width: 1200px) {
  header {
    height: 10rem;
    padding: 2.5rem 6rem;
  }
}
header .logo {
  display: flex;
  align-items: center;
  z-index: 20;
  line-height: 1.1;
}
@media screen and (min-width: 412px) {
  header .logo {
    line-height: 0.9;
  }
}
header .logo a {
  color: var(--color-text);
  border-bottom: none;
}
header .logo .title {
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-logo);
  font-size: 2.5rem;
  text-transform: lowercase;
  word-spacing: -0.5rem;
  letter-spacing: 0.1rem;
  position: relative;
  bottom: 7px;
}
header .logo .title span {
  background-color: var(--color-bg);
}
header .logo .title span span {
  background-image: linear-gradient(90deg, var(--color-text) 20%, var(--color-primary) 90%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 1200px) {
  header .logo .title {
    font-size: 3rem;
  }
}
@media screen and (min-width: 1400px) {
  header .logo .subtitle {
    padding-left: 9rem;
  }
}

/************** CONTENT **************/
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .home-template .text {
    text-align: center;
  }
}
@media screen and (min-width: 1200px) {
  .home-template .text {
    text-align: left;
    display: flex;
    padding: 2rem;
  }
  .home-template .text > * {
    align-self: center;
  }
}

main {
  padding: 2rem 1rem;
}
@media screen and (min-width: 480px) and (orientation: landscape) {
  main {
    padding: 2rem;
  }
}
@media screen and (min-width: 576px) {
  main {
    padding: 2rem;
  }
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  main {
    padding: 0 5rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  main {
    padding: 0 5rem;
    min-height: calc(100vh - 40px - 17rem);
  }
}
@media screen and (min-width: 1200px) {
  main {
    padding: 0 5rem;
    min-height: calc(100vh - 40px - 17rem);
  }
}
@media screen and (min-width: 1200px) {
  main {
    padding: 0 7rem;
  }
}
main .image-menu,
main .drawings {
  padding: 2rem 0;
}
main .image-menu .image-menu-item,
main .drawings .image-menu-item {
  border-radius: 50%;
  border: 4px solid var(--color-text);
  overflow: hidden;
  position: relative;
  height: 30rem;
  background-color: var(--menu-bg);
}
main .image-menu .image-menu-item img,
main .drawings .image-menu-item img {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 78%;
  width: auto;
}
@media screen and (min-width: 576px) {
  main .image-menu .image-menu-item,
  main .drawings .image-menu-item {
    max-width: 22rem;
  }
}
main .image-menu .image-menu-item.left h1,
main .drawings .image-menu-item.left h1 {
  text-align: center;
  padding: 4rem 4rem 0 0;
}
@media screen and (min-width: 1200px) {
  main .image-menu .image-menu-item.left img,
  main .drawings .image-menu-item.left img {
    transition: 1s ease-out;
  }
  main .image-menu .image-menu-item.left img:hover,
  main .drawings .image-menu-item.left img:hover {
    transition: filter 1s ease-in;
    transition: transform 0.5s ease-in;
    transform: scale(1.1) translate(-30px);
  }
}
main .image-menu .image-menu-item.right h1,
main .drawings .image-menu-item.right h1 {
  text-align: center;
  padding: 4rem 0 0 4rem;
}
@media screen and (min-width: 1200px) {
  main .image-menu .image-menu-item.right img,
  main .drawings .image-menu-item.right img {
    transition: 1s ease-out;
  }
  main .image-menu .image-menu-item.right img:hover,
  main .drawings .image-menu-item.right img:hover {
    transition: filter 1s ease-in;
    transition: transform 0.5s ease-in;
    transform: scale(1.005) translate(30px);
  }
}
main .image-menu a,
main .drawings a {
  border-bottom: none;
  background-image: none;
  bottom: 0;
  left: 0;
  width: 10rem;
}

.photoswipe {
  padding: 1rem 0;
}
.photoswipe .overlay {
  background-color: rgb(0, 0, 0);
}
.photoswipe img {
  opacity: 0.9;
  transition: 1s ease-in-out;
  border: 1px solid var(--color-text);
}
.photoswipe img:hover {
  opacity: 1;
  filter: contrast(1.2);
  transition: 0.5s ease-in-out;
}

footer {
  height: 5rem;
  padding-bottom: 10rem;
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  footer {
    padding: 3rem 3rem 10rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  footer {
    padding: 3rem 3rem 10rem;
  }
}
@media screen and (min-width: 1200px) {
  footer {
    padding: 3rem 6rem 10rem;
  }
}

/*# sourceMappingURL=main.css.map */
