/* 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;
}

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

* {
  margin: 0;
  padding: 0;
  overflow-anchor: none !important;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

html {
  background-color: #000;
  scroll-behavior: smooth;
}

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;
}

@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;
  height: 100%;
}

.project-container {
  position: relative;
  width: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
  justify-content: flex-start;
}

.row {
  width: 100%;
  height: calc(100vw / var(--aspect-ratio));
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  align-items: stretch;
  opacity: 1;
  cursor: pointer;
  background-color: white;
  margin-left: 0px;
  transition: opacity 0.3s ease, height 1s, width 1s ease, margin-left 1s ease, background-color 0.3s ease, padding-left 0.3s ease;
}
.row-size-placeholder {
  width: 100%;
  height: calc(100vw / var(--aspect-ratio));
  position: absolute;
  pointer-events: none;
  visibility: hidden;
}

.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;
}

.row.active {
  cursor: default;
  justify-content: flex-start;
  transition: opacity 0.3s ease, height 1s, width 1s ease, margin-left 1s ease, background-color 0.3s ease, padding-left 0.3s ease;
}
.row.active img {
  pointer-events: all;
}

.row.active {
  height: calc(100vh - var(--active-margins) * 2);
  width: calc((100% - var(--active-margins) * 2) * var(--aspect-ratio));
  margin-left: max((100% - (100vh - var(--active-margins) * 2) * var(--first-image-ratio)) / 2, 0px);
  margin-right: max((100% - (100vh - var(--active-margins) * 2) * var(--last-image-ratio)) / 2, 0px);
}

.first-project .row.active,
.last-project .row.active {
  height: calc(100vh - var(--active-margins));
  width: calc((100vh - var(--active-margins)) * var(--aspect-ratio));
  margin-left: max((100% - (100vh - var(--active-margins)) * var(--first-image-ratio)) / 2, 0px);
  margin-right: max((100% - (100vh - var(--active-margins)) * var(--last-image-ratio)) / 2, 0px);
}

.row.active:hover {
  background-color: white;
}

.row-scroll-container {
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.project-info-container {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  z-index: 41;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  padding: 10px;
  opacity: 0;
  transition: opacity 1s ease;
}
.project-info-container .project-info {
  pointer-events: none;
}

.close-active {
  position: sticky;
  align-self: flex-end;
  top: 10px;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
  pointer-events: auto;
  font-size: 24px;
}
.close-active:hover {
  color: var(--color);
  text-shadow: 0px 0px 10px var(--color) 30;
  font-family: var(--main-font);
}

.row:hover ~ .project-info-container {
  opacity: 1;
  line-height: 1.2;
}

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

.project-info {
  position: sticky;
  justify-self: flex-end;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  left: 10px;
  bottom: 7.5px;
  z-index: 10;
}

.project-credits {
  display: flex;
  flex-direction: column;
  margin-top: 1lh;
}

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

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

.credit p:first-of-type {
  text-transform: uppercase;
}

.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:hover ~ .project-info-container > .project-info > .project-main,
.row.active ~ .project-info-container > .project-info > .project-main,
.row.active ~ .project-info-container > .project-info > .project-credits,
.row.active-extreme ~ .project-info-container > .project-info > .project-main,
.row.active-extreme ~ .project-info-container > .project-info > .project-credits {
  opacity: 1;
  pointer-events: auto;
  line-height: 1.2;
}

.row > img {
  cursor: pointer;
}

nav {
  position: fixed;
  z-index: 4;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

ol {
  z-index: 50;
  display: flex;
  gap: 20px;
  position: absolute;
  top: 10px;
  left: 10px;
  pointer-events: none;
}

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

ol > li:hover {
  color: var(--color);
  font-family: var(--main-font-italic);
}

nav > .top {
  position: relative;
  z-index: 50;
  width: 100%;
  height: 60px;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
}

nav > .bottom {
  position: relative;
  z-index: 10;
  width: 100%;
  bottom: 0;
  height: 60px;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  mix-blend-mode: multiply;
}

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

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

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

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

.about,
.project-index {
  opacity: 1;
  position: fixed;
  height: 100vh;
  width: 100%;
  z-index: 2;
  padding: 80px 50% 10px 10px;
  transition: opacity 0.5s ease;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about {
  background-color: rgb(0, 0, 0);
}

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

.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: 10px;
  z-index: 100;
}

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