/* SCSS Variable */
/* CSS Variable */
@font-face {
  font-family: syncro-book;
  src: url("/assets/fonts/Syncro-Book.woff2");
}
@font-face {
  font-family: syncro-italic;
  src: url("/assets/fonts/Syncro-Italic.woff2");
}
:root {
  --main-font: syncro-book, serif;
  --main-font-italic: syncro-italic, serif;
  --font-weight: 400;
  --font-size: 13px;
  --text-line-height: 1.1;
  --letter-spacing: 2px;
  --text-color: white;
  --active-margins: 35px;
  --color: yellow;
}
@media screen and (max-width: 580px) {
  :root {
    --font-size: 12px;
    --active-margins: 20px;
  }
}

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

* {
  margin: 0;
  padding: 0;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
}
*:focus-visible {
  outline: none;
}

html {
  background-color: #000;
  overflow-anchor: none;
  scroll-behavior: smooth;
  scroll-padding-top: var(--active-margins);
  overflow: hidden;
  height: 100%;
  width: 100%;
}

body {
  font-family: var(--main-font);
  font-size: var(--font-size);
  color: var(--text-color);
  line-height: var(--text-line-height);
  letter-spacing: var(--letter-spacing);
  font-weight: var(--font-weight);
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-behavior: smooth;
  height: 100%;
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  overscroll-behavior-y: none;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

input,
button,
textarea,
select {
  font: inherit;
}

button,
.btn {
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  border: none;
  cursor: pointer;
}

button:hover,
.btn:hover {
  background: lightgray;
}

@font-face {
  font-family: Helvetica;
  src: url("/assets/fonts/");
}
ol li {
  list-style-type: none;
}

*::selection {
  color: var(--color);
  text-shadow: 0px 0px 10px var(--color) 75;
  background-color: none;
}

/* CSS Custom */
body {
  background-color: #000;
  margin: 0;
  padding: 0;
}

a {
  color: white;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(255, 255, 255, 0.6);
  text-underline-offset: 4px;
  transition: color 0.3s ease, font-family 0.3s ease;
}
a:hover {
  color: var(--color);
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-thickness: 1px;
  font-family: var(--main-font-italic);
}

.gallery-container {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 580px) {
  .gallery-container {
    flex-direction: row;
    height: 100%;
    align-items: stretch;
  }
}

.project-container {
  position: relative;
  width: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
@media screen and (max-width: 580px) {
  .project-container {
    width: auto;
    min-height: 0;
    height: 100%;
  }
}

body.stop-transition .row {
  transition: none;
}

.row {
  width: 100%;
  height: calc(100vw / var(--horizontal-aspect-ratio));
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  align-items: stretch;
  opacity: 1;
  cursor: pointer;
  background-color: white;
  margin-left: 0px;
  pointer-events: auto;
  transition: opacity 1s ease, height 1s ease, width 1s ease, margin-left 1s ease, margin-right 1s ease, background-color 0.3s ease, margin-top 1s ease, margin-bottom 1s ease;
}
.row-size-placeholder {
  width: calc(100dvh / var(--vertical-aspect-ratio));
  height: calc(100dvw / var(--horizontal-aspect-ratio));
  position: absolute;
  pointer-events: none;
  visibility: hidden;
}
@media screen and (hover: hover) {
  .row:hover {
    background-color: var(--color);
  }
}
.row img {
  mix-blend-mode: multiply;
  object-fit: cover;
  flex-shrink: 0;
  height: 100%;
  width: auto;
  pointer-events: none;
}
@media screen and (max-width: 580px) {
  .row img {
    width: 100%;
    height: auto;
  }
}
.row:target {
  cursor: default;
  justify-content: flex-start;
  height: calc(100vh - var(--active-margins) * 2);
  width: calc((100vh - var(--active-margins) * 2) * var(--horizontal-aspect-ratio) - 1px);
  margin-left: max((100% - (100vh - var(--active-margins) * 2) * var(--first-image-horizontal-ratio)) / 2, 0px);
  margin-right: max((100% - (100vh - var(--active-margins) * 2) * var(--last-image-horizontal-ratio)) / 2, 0px);
  margin-top: 0px;
  margin-bottom: 0px;
}
.row:target img {
  pointer-events: auto;
}
@media screen and (max-width: 580px) {
  .row:target {
    width: calc(100vw - var(--active-margins) * 2);
    height: calc((100dvw - var(--active-margins) * 2) * var(--vertical-aspect-ratio) - 1px);
    margin-left: 0px;
    margin-right: 0px;
    margin-top: max((100dvh - (100vw - var(--active-margins) * 2) * var(--first-image-vertical-ratio)) / 2, 0px);
    margin-bottom: max((100dvh - (100vw - var(--active-margins) * 2) * var(--last-image-vertical-ratio)) / 2, 0px);
  }
}
.row:target.first-row, .row:target.last-row {
  height: calc(100vh - var(--active-margins));
  width: calc((100vh - var(--active-margins)) * var(--horizontal-aspect-ratio) - 1px);
  margin-left: max((100% - (100vh - var(--active-margins)) * var(--first-image-horizontal-ratio)) / 2, 0px);
  margin-right: max((100% - (100vh - var(--active-margins)) * var(--last-image-horizontal-ratio)) / 2, 0px);
  margin-top: 0px;
  margin-bottom: 0px;
}
@media screen and (max-width: 580px) {
  .row:target.first-row, .row:target.last-row {
    width: calc(100vw - var(--active-margins));
    height: calc((100dvw - var(--active-margins)) * var(--vertical-aspect-ratio) - 1px);
    margin-left: 0px;
    margin-right: 0px;
    margin-top: max((100dvh - (100vw - var(--active-margins)) * var(--first-image-vertical-ratio)) / 2, 0px);
    margin-bottom: max((100dvh - (100vw - var(--active-margins)) * var(--last-image-vertical-ratio)) / 2, 0px);
  }
}
.row:target:hover {
  background-color: white;
}
.row.other-rows {
  opacity: 0.6;
}
@media screen and (max-width: 580px) {
  .row {
    height: 100%;
    width: calc(100dvh / var(--vertical-aspect-ratio));
    flex-direction: column;
  }
}

.row-active-right-margin {
  width: max((100vw - (100vh - var(--active-margins) * 2) * var(--last-image-horizontal-ratio)) / 2, 0px);
}
.row-active-right-margin.collapsed {
  width: 0px;
}
.row-active-right-margin {
  transition: width 1s ease;
  display: block;
  flex-shrink: 0;
}

.row-scroll-container {
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media screen and (max-width: 580px) {
  .row-scroll-container {
    height: 100dvh;
    overflow-y: scroll;
    overflow-x: hidden;
  }
}

.project-info-container {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  z-index: 17;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  padding: 10px 10px 0 10px;
  opacity: 0;
  transition: opacity 0.5s ease;
}
@media screen and (max-width: 580px) {
  .project-info-container {
    padding: 0px;
    height: auto;
    justify-content: end;
    z-index: 17;
  }
  .project-info-container .project-info {
    position: sticky !important;
    z-index: 17;
  }
}
.project-info-container .project-info {
  pointer-events: none;
}

.close-target {
  position: sticky;
  align-self: flex-end;
  top: 10px;
  z-index: 13;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
  pointer-events: none;
  font-size: 24px;
  text-decoration: none;
}
.close-target:hover {
  color: var(--color);
  text-shadow: 0px 0px 10px var(--color) 30;
  font-family: var(--main-font);
  text-decoration: none;
}
@media screen and (max-width: 580px) {
  .close-target {
    display: none;
  }
}

@media screen and (hover: hover) {
  .row:hover ~ .project-info-container,
  .row:hover ~ .project-info-container > .project-info > .project-main {
    opacity: 1;
    line-height: 1.2;
  }
}
.project-main {
  margin-bottom: 10px;
  pointer-events: none !important;
}

:target ~ .project-info-container {
  opacity: 1;
  line-height: 1.2;
}
:target ~ .project-info-container .project-info {
  pointer-events: auto;
}
:target ~ .project-info-container .close-target {
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: auto;
}

@media screen and (hover: hover) {
  .row:hover ~ .project-info-container.hidden {
    opacity: 0;
  }
}
.project-info {
  position: sticky;
  justify-self: flex-end;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  left: 10px;
  bottom: 0px;
  z-index: 13;
}
@media screen and (max-width: 580px) {
  .project-info {
    left: 0px;
    z-index: 19;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(255, 255, 255, 0));
    width: 100%;
    max-width: 100%;
    padding: 20px 10px 10px 10px;
    margin: 0px;
    box-sizing: border-box;
    overflow: hidden;
  }
}

.project-credits {
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 580px) {
  .project-main {
    padding-bottom: 0px;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    flex-wrap: wrap;
  }
  .project-main > p {
    min-width: 0;
    flex-shrink: 1;
    overflow-wrap: break-word;
    word-break: break-word;
  }
}

.project-main,
.project-index-items,
.credit {
  display: flex;
  gap: 10px;
}

.project-index-items {
  text-decoration: none;
  transition: color 0.3s;
}
.project-index-items:hover {
  color: var(--color);
  font-family: var(--main-font-italic);
  cursor: pointer;
  text-shadow: 0px 0px 10px var(--color) 30;
  text-decoration: none;
  transition: color 0.3s;
}

.credit p:first-of-type {
  text-transform: uppercase;
  max-width: 50%;
}

.project-info .project-main {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-info .project-credits {
  opacity: 0;
  line-height: 0;
  transition: opacity 0.3s ease, line-height 0.6s ease;
}

.row:target ~ .project-info-container > .project-info > .project-main,
.row:target ~ .project-info-container > .project-info > .project-credits {
  margin-bottom: 10px;
  opacity: 1;
  pointer-events: auto;
  line-height: 1.2;
}

@media screen and (hover: hover) {
  .row:hover ~ .project-info-container > .project-info > .project-main {
    opacity: 1;
    pointer-events: auto;
    line-height: 1.2;
  }
}
.row:target ~ .project-info-container > .project-info > .project-main {
  margin-bottom: 10px;
}

.row > img {
  cursor: pointer;
}
.row > img.active-image {
  cursor: default;
}

nav {
  position: fixed;
  z-index: 19;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 580px) {
  nav {
    z-index: 20;
  }
}

ol {
  z-index: 50;
  display: flex;
  gap: 20px;
  position: absolute;
  top: 10px;
  left: 10px;
  pointer-events: none;
}
@media screen and (max-width: 580px) {
  ol {
    left: calc(10px + var(--active-margins));
  }
}

ol > li {
  cursor: pointer;
  pointer-events: auto;
  transition: color 0.3s ease, font-family 0.3s ease;
}

@media screen and (min-width: 580px) {
  ol > li:hover {
    color: var(--color);
    font-family: var(--main-font-italic);
  }
}

.top-gradient {
  position: fixed;
  z-index: 12;
  top: 0;
  width: 100%;
  height: 60px;
  pointer-events: none;
  background: linear-gradient(to top, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.5));
  mix-blend-mode: multiply;
}
@media screen and (max-width: 580px) {
  .top-gradient {
    z-index: 19;
  }
}

.bottom-gradient {
  position: fixed;
  z-index: 12;
  bottom: 0;
  width: 100%;
  height: 60px;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(255, 255, 255, 0));
  mix-blend-mode: multiply;
}
@media screen and (max-width: 580px) {
  .bottom-gradient {
    z-index: -1;
  }
}

.about-bottom {
  position: fixed;
  z-index: 10;
  width: 100%;
  bottom: 0;
  min-height: 60px;
  flex-shrink: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(255, 255, 255, 0));
  mix-blend-mode: multiply;
}

.project-info-container > .project-info > .project-main > p {
  z-index: 20;
}

.project-info {
  max-width: 50%;
}
@media screen and (max-width: 580px) {
  .project-info {
    max-width: 100%;
  }
}

.credit p:first-child {
  flex-shrink: 0;
}

.scroll-helper {
  height: 4000px;
  display: block;
  flex-shrink: 0;
}

.nav-active {
  font-family: var(--main-font-italic);
}

.about,
.project-index {
  opacity: 1;
  position: fixed;
  height: 100dvh;
  width: 100%;
  z-index: 18;
  isolation: isolate;
  padding: 80px 50% 10px 10px;
  transition: opacity 0.5s ease;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 580px) {
  .about,
  .project-index {
    padding: 80px 10px 10px 10px;
  }
}

.about {
  background-color: rgb(0, 0, 0);
  justify-content: space-between;
}

.project-index {
  background-color: rgba(0, 0, 0, 0.5);
  align-items: flex-start;
}

.about.hidden,
.bottom.hidden,
.project-index.hidden {
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.about-general > *:not(:first-child) {
  text-indent: 40px;
}

#contact-mail {
  margin-top: 1lh;
  margin-bottom: 2lh;
}

.section-title {
  margin-top: 2lh;
  margin-bottom: 1lh;
  text-transform: uppercase;
}

.year {
  font-variant-numeric: tabular-nums;
}

.website-credits {
  position: relative;
  font-size: 10px;
  line-height: 1.4;
  margin-top: 30vh;
  margin-bottom: 0px;
  z-index: 100;
}

@media screen and (max-width: 580px) {
  html {
    overflow: hidden;
  }
  body {
    overflow-x: auto;
    overflow-y: hidden;
  }
  body.row-active {
    overflow-x: hidden;
  }
  body.row-active .project-container {
    height: 100dvh;
    overflow-y: hidden;
    overflow-x: hidden;
    flex-shrink: 0;
  }
  body.row-active .row-scroll-container {
    height: 100dvh;
    overflow-y: scroll;
    overflow-x: hidden;
    flex-shrink: 0;
  }
  body.row-active .row {
    overflow-y: hidden;
    flex-shrink: 0;
  }
  .scroll-helper {
    width: 4000px;
    height: unset;
    flex-shrink: 0;
  }
}
.row-scroll-container::-webkit-scrollbar {
  display: none;
}

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