@charset "UTF-8";
:root {
  --white: white;
  --black: black;
  --lightBoxShadow: 0 0 8px rgba(0,0,0,0.05);
  --headingFontSize: clamp(1rem, 1.8vw, 2rem);
  --projectHeadingFontSize: clamp(1.4rem, 2.4vw, 2.4rem);
  --regFontSize: clamp(0.8rem, 1vw, 1rem);
  --smallFontSize: clamp(0.6rem, 0.8vw, 0.875rem);
}

[data-theme=dark] {
  --white: black;
  --black: white;
  --lightBoxShadow: 0 0 12px rgba(255,255,255,0.05);
}

* {
  transition: background-color 0.6s ease, color 0.6s ease;
}

a {
  text-decoration: underline;
  cursor: none;
}

body {
  height: 100vh;
  width: 100%;
  background-color: var(--white);
  font-family: "Manrope";
  overflow-y: hidden;
  cursor: none;
}

#custom-cursor {
  position: fixed;
  pointer-events: none;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  z-index: 10001;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#custom-cursor img {
  height: 1vw;
  width: 1vw;
  max-width: 30px;
  max-height: 30px;
}

[data-theme=dark] .menu_container #nightmode-toggle .icon-sun {
  display: none;
}
[data-theme=dark] .menu_container #nightmode-toggle .icon-moon {
  display: block;
}

@keyframes pageTransition {
  0% {
    transform: translateY(100%);
  }
  40% {
    transform: translateY(0%);
  }
  60% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(100%);
  }
}
.page-transition {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: white;
  mix-blend-mode: difference;
  z-index: 1000;
  left: 0;
  top: 0;
  transform: translateY(100%);
}
.page-transition.active {
  animation: pageTransition 1.4s ease forwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(20px);
  }
}
@keyframes slideInMenu {
  from {
    transform: translateY(-50%) translateX(100%);
  }
  to {
    transform: translateY(-50%) translateX(0);
  }
}
@keyframes slideOutMenu {
  from {
    transform: translateY(-50%) translateX(0);
  }
  to {
    transform: translateY(-50%) translateX(100%);
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  z-index: 300;
}
header nav {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  padding: 20px;
}
header nav h1 {
  font-size: var(--headingFontSize);
  color: var(--black);
  font-weight: 900;
}
header nav h1 a {
  text-decoration: none;
}
header nav button {
  z-index: 400;
  cursor: none;
}
header nav button svg line {
  stroke: var(--black);
  stroke-width: 20;
  stroke-dasharray: 200;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.3s ease;
}
header nav button svg {
  height: 1.75vw;
  width: 1.75vw;
  max-height: 30px;
  max-width: 30px;
  fill: var(--black);
}
header nav button.active .line-mid {
  stroke-dashoffset: -66;
}
header nav button.active .line-bot {
  stroke-dashoffset: -100;
}
header nav .menu_container {
  display: none;
  position: fixed;
  right: 0px;
  padding: 0 0px 0 40px;
  top: 50%;
  transform: translateY(-50%);
  text-align: right;
  color: var(--black);
  font-size: var(--regFontSize);
  font-weight: 500;
  height: 100dvh;
  z-index: 200;
  flex-direction: column;
  justify-content: center;
  background-color: var(--white);
  box-shadow: var(--lightBoxShadow);
}
header nav .menu_container.active {
  display: flex;
  animation: slideInMenu 0.6s ease forwards;
}
header nav .menu_container.active li {
  opacity: 0;
  animation: slideIn 0.3s ease forwards;
}
header nav .menu_container.active li:nth-child(1) {
  animation-delay: 0.3s;
}
header nav .menu_container.active li:nth-child(2) {
  animation-delay: 0.4s;
}
header nav .menu_container.active li:nth-child(3) {
  animation-delay: 0.5s;
}
header nav .menu_container.active li:nth-child(4) {
  animation-delay: 0.6s;
}
header nav .menu_container.closing {
  display: flex;
  animation: slideOutMenu 0.6s ease 0.3s forwards;
}
header nav .menu_container.closing li {
  opacity: 1;
  animation: slideOut 0.3s ease forwards;
}
header nav .menu_container.closing li:nth-child(1) {
  animation-delay: 0.3s;
}
header nav .menu_container.closing li:nth-child(2) {
  animation-delay: 0.2s;
}
header nav .menu_container.closing li:nth-child(3) {
  animation-delay: 0.1s;
}
header nav .menu_container.closing li:nth-child(4) {
  animation-delay: 0s;
}
header nav .menu_container li {
  padding-right: 20px;
}
header nav .menu_container li span {
  display: inline-block;
  transform: translateX(0);
  transition: transform 0.3s ease;
  font-size: var(--headingFontSize);
  text-transform: uppercase;
  font-weight: 900;
}
header nav .menu_container li:hover span {
  transform: translateX(-20px);
}
header nav .menu_container #nightmode-toggle {
  border-radius: 100px;
  height: 32px;
  width: 32px;
  position: fixed;
  bottom: auto;
  right: auto;
  display: grid;
  place-content: center;
  bottom: 20px;
  right: 20px;
}
header nav .menu_container #nightmode-toggle .icon-sun {
  display: block;
  height: 1.75vw;
  width: 1.75vw;
  max-height: 30px;
  max-width: 30px;
}
header nav .menu_container #nightmode-toggle .icon-moon {
  display: none;
  fill: white;
  height: 1.75vw;
  width: 1.75vw;
  max-height: 30px;
  max-width: 30px;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding: 20px;
  font-size: var(--smallFontSize);
}
footer ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--black);
}

@keyframes infoSlideIn {
  from {
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}
@keyframes infoSlideOut {
  from {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  to {
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
  }
}
.info__mobile {
  background: var(--white);
  color: var(--black);
  visibility: hidden;
  padding: 10px;
  text-align: center;
  position: fixed;
  z-index: 299;
  left: 50%;
  bottom: 80px;
  height: auto;
  width: calc(100vw - 40px);
  transform: translateX(-50%) translateY(20px);
  border: 1px solid var(--black);
  border-radius: 3px;
  pointer-events: none;
}
.info__mobile svg {
  fill: var(--black);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
section {
  display: none;
}
section.active {
  display: block;
  animation: fadeIn 0.4s ease forwards;
}
section.closing {
  display: block;
  animation: fadeOut 0.4s ease forwards;
}

.back-button, .link-button, .submit-button {
  display: flex;
  gap: 5px;
  align-items: center;
  margin: 20px 0 0 0;
  font-size: var(--regFontSize);
  width: -moz-fit-content;
  width: fit-content;
  color: var(--black);
  background-color: var(--white);
}
.back-button svg, .link-button svg, .submit-button svg {
  height: 16px;
  width: 16px;
  margin-right: 4px;
  transform: translateX(0);
  transition: transform 0.3s ease;
  fill: var(--black);
}
.back-button:hover svg, .link-button:hover svg, .submit-button:hover svg {
  transform: translateX(-4px);
}

.link-button, .submit-button {
  margin-top: 0px;
}
.link-button svg, .submit-button svg {
  fill: var(--black);
}
.link-button:hover svg, .submit-button:hover svg {
  transform: translateX(4px);
}

.back-button {
  position: absolute;
  top: 75px;
  left: 20px;
}

.submit-button {
  margin-bottom: 0px;
  color: var(--white);
  background-color: var(--black);
  padding: 10px;
  border-radius: 3px;
  width: 100px;
}
.submit-button svg {
  fill: var(--white);
}

.gallery {
  height: 100%;
  align-items: center;
  justify-content: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.gallery.active {
  display: flex;
}
.gallery .gallery__container {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
}
.gallery .gallery__container img {
  display: block;
  height: 70vh;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 5px;
  box-shadow: 0 0px 8px rgba(0, 0, 0, 0.1), 0 0px 20px rgba(0, 0, 0, 0.05);
  position: relative;
}
.gallery .gallery__container img.transition_active {
  filter: grayscale(1);
}
.gallery .gallery__container .gallery__info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: var(--regFontSize);
  margin-top: 8px;
  color: var(--black);
}
.gallery .gallery__container .gallery__youtube {
  display: none;
  height: 60vh;
  width: 106.6666666667vh;
  border: none;
  border-radius: 5px;
  box-shadow: 0 0px 8px rgba(0, 0, 0, 0.1), 0 0px 20px rgba(0, 0, 0, 0.05);
}
.gallery.youtube-mode .gallery__container img,
.gallery.youtube-mode .gallery__info {
  display: none;
}
.gallery.youtube-mode .gallery__youtube {
  display: block;
}

.projects {
  height: 100vh;
  max-width: 100vw;
  overflow-x: scroll;
  scrollbar-width: none;
  padding: 120px 20px 0px 20px;
  gap: 20px;
  position: relative;
}
.projects.active {
  display: flex;
}
.projects .project {
  width: 27.5vw;
  flex-shrink: 0;
  height: 100%;
  color: var(--black);
}
.projects .project .project_content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.projects .project .project_content .heading {
  font-size: var(--projectHeadingFontSize);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 0;
}
.projects .project .project_content .text {
  font-size: var(--regFontSize);
  line-height: 1.3;
  text-align: justify;
  margin-bottom: 4px;
}
.projects .project .project_content .preview img {
  width: 100%;
  height: 100%;
  border-radius: 3px;
  box-shadow: 0 0px 8px rgba(0, 0, 0, 0.1), 0 0px 20px rgba(0, 0, 0, 0.05);
  outline: 1px solid transparent;
  transition: outline-color 0.3s ease;
}
.projects .project .project_content .preview img:hover {
  outline-color: var(--black);
}
.projects .project .project_content .ph_heading {
  height: clamp(1.5rem, 2.4vw, 3.5rem);
  background-color: rgba(169, 169, 169, 0.6);
  width: 100%;
  border-radius: 2px;
}
.projects .project .project_content .text {
  line-height: 1.2;
  margin-bottom: 10px;
}
.projects .project .project_content .ph_text {
  height: 1rem;
  background-color: rgba(169, 169, 169, 0.6);
  width: 100%;
  border-radius: 2px;
}
.projects .project .project_content .ph_preview {
  background-color: rgba(169, 169, 169, 0.6);
  height: 270px;
  width: 100%;
  border-radius: 2px;
  display: grid;
  place-content: center;
}

.about {
  height: 100%;
  width: 100vw;
  gap: 20px;
  color: var(--black);
}
.about .about__hero-mobile {
  display: none;
}
.about.active {
  display: flex;
}
.about .profile_image {
  height: 100vh;
  width: auto;
}
.about .profile_image img {
  display: block;
  height: 100%;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.about .about_content {
  display: flex;
  flex-direction: column;
  max-height: 100vh;
  overflow-y: scroll;
  margin-top: 80px;
  margin-bottom: 40px;
  padding-right: 20px;
  width: 100%;
}
.about .about_content .heading {
  font-size: var(--headingFontSize);
  font-weight: 900;
  margin-bottom: 6px;
  line-height: 1;
}
.about .about_content p {
  margin-bottom: 12px;
  font-size: var(--regFontSize);
}
.about .about_content .exhibitions_list {
  display: flex;
  flex-direction: column;
  color: var(--black);
  margin-bottom: 40px;
}
.about .about_content .exhibitions_list li {
  overflow: hidden;
  font-size: var(--regFontSize);
  padding: 12px 0;
  border-bottom: 1px solid var(--black);
}
.about .about_content .exhibitions_list li:last-child {
  border-bottom: none;
}
.about .about_content .exhibitions_list li .info {
  display: flex;
  justify-content: space-between;
}
.about .about_content .exhibitions_list li .description {
  max-height: 0;
  opacity: 0;
  transition: all 0.3s ease;
  max-width: 85%;
}
.about .about_content .exhibitions_list li:hover .description {
  padding: 12px 0;
  max-height: 160px;
  opacity: 1;
}
.about .about_content .contact form {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  cursor: none;
  margin-bottom: 20px;
}
.about .about_content .contact form input, .about .about_content .contact form textarea {
  font-family: "Manrope", sans-serif;
  font-size: var(--regFontSize);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 5px;
  border-style: none;
  background-color: transparent;
  border-radius: 0px !important;
  border-bottom: 1px solid var(--black);
  outline: none;
  cursor: none;
  color: var(--black);
}
.about .about_content .contact form input::-moz-placeholder, .about .about_content .contact form textarea::-moz-placeholder {
  color: var(--black);
}
.about .about_content .contact form input::placeholder, .about .about_content .contact form textarea::placeholder {
  color: var(--black);
}
.about .about_content .contact form textarea {
  border-bottom: none !important;
  resize: none;
}

.impressum {
  height: 100%;
  width: 100vw;
  color: var(--black);
}
.impressum.active {
  display: flex;
}
.impressum .impressum__hero-mobile {
  display: none;
}
.impressum .impressum_image {
  height: 100vh;
  width: auto;
}
.impressum .impressum_image img {
  display: block;
  height: 100%;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.impressum .impressum_datenschutz {
  height: calc(100% - 140px);
  overflow-y: scroll;
  margin-top: 80px;
  padding: 0px 20px 20px 20px;
}
.impressum .impressum_datenschutz .datenschutzerklärung_header {
  font-size: var(--headingFontSize);
  margin-bottom: 8px;
  font-weight: 900;
}
.impressum .impressum_datenschutz .datenschutzerklärung__big_header {
  font-size: var(--regFontSize);
  font-weight: 700;
  margin-bottom: 5px;
}
.impressum .impressum_datenschutz .datenschutzerklärung__small_header {
  font-size: var(--regFontSize);
  font-weight: 500;
  margin-bottom: 5px;
}
.impressum .impressum_datenschutz .datenschutzerklärung__text {
  font-size: var(--regFontSize);
  margin-bottom: 15px;
  line-height: 1.4;
  font-weight: 300;
  text-align: justify;
}

body:has(#about.active) header h1,
body:has(#about.active) footer ul li:first-child,
body:has(#impressum.active) header h1,
body:has(#impressum.active) footer ul li:first-child {
  color: white;
}

@media (max-width: 599px) {
  body:has(#about.active) footer ul li:first-child,
  body:has(#impressum.active) footer ul li:first-child {
    color: var(--black);
  }
  body:has(#about.active) header nav button svg line,
  body:has(#impressum.active) header nav button svg line {
    stroke: white;
  }
  body:has(#about.active) header nav button.active svg line,
  body:has(#impressum.active) header nav button.active svg line {
    stroke: var(--black);
  }
}
@media (max-width: 599px) {
  html, body {
    overflow: hidden;
    height: 100dvh;
  }
  body {
    cursor: auto;
  }
  footer {
    background-color: var(--white);
  }
  #custom-cursor {
    display: none;
  }
  section {
    max-width: 100dvw;
    height: 100dvh;
    overflow: hidden;
  }
  .gallery .gallery__container {
    width: 100%;
    padding: 0 20px;
  }
  .gallery .gallery__container img {
    height: auto;
    max-height: 60vh;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .gallery .gallery__container .gallery__youtube {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
  .back-button {
    display: none;
  }
  .projects {
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: scroll;
    margin-top: 60px;
    padding: 0 20px 80px 20px;
    height: calc(100dvh - 60px);
    gap: 40px;
  }
  .projects .project {
    width: 100%;
    min-width: unset;
    height: auto;
  }
  .about {
    flex-direction: column;
  }
  .about .profile_image {
    display: none;
  }
  .about .about__hero-mobile {
    display: block;
    width: 100%;
    height: 35vh;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
  .about .about_content {
    margin-top: 0;
    padding: 0px 20px 80px 20px;
    flex: 1;
    margin-bottom: 50px;
  }
  .about .about_content .exhibitions_list li .info {
    flex-direction: column;
    gap: 2px;
    font-weight: 700;
  }
  .about .about_content .exhibitions_list li .info span:last-child {
    opacity: 0.5;
    font-size: var(--smallFontSize);
  }
  .about .about_content .exhibitions_list li .description {
    max-height: none;
    opacity: 1;
    padding: 8px 0 0 0;
  }
  .about .about_content .exhibitions_list li:hover .description {
    max-height: none;
    padding: 8px 0 0 0;
  }
  .impressum {
    flex-direction: column;
  }
  .impressum .impressum_image {
    display: none;
  }
  .impressum .impressum__hero-mobile {
    display: block;
    width: 100%;
    height: 35vh;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: bottom;
       object-position: bottom;
    flex-shrink: 0;
  }
  .impressum .impressum_datenschutz {
    margin-top: 20px;
    margin-bottom: 50px;
    padding: 0px 20px 80px 20px;
    flex: 1;
    overflow-y: scroll;
    max-height: none;
  }
  nav .menu_container {
    width: 45%;
    padding: 0 20px !important;
  }
  #menu-button svg {
    height: 24px;
    width: 24px;
  }
  header nav .menu_container li {
    padding-right: 0;
    margin-bottom: 5px;
  }
  #nightmode-toggle .icon-sun,
  #nightmode-toggle .icon-moon {
    height: 24px !important;
    width: 24px !important;
  }
  .info__mobile.active {
    visibility: visible;
    pointer-events: auto;
    animation: infoSlideIn 0.5s ease forwards;
  }
  .info__mobile.closing {
    visibility: visible;
    animation: infoSlideOut 0.5s ease forwards;
  }
  input, textarea, button {
    cursor: auto;
  }
}/*# sourceMappingURL=styles.css.map */