@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  padding: 0;
  margin: 0;
}

ul {
  list-style: none;
}

h1,
h2,
h3 {
  font-size: inherit;
  font-weight: normal;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

p {
  padding: 0;
  margin: 0;
}

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

.body-transition {
  opacity: 0;
  animation: fadeIn 2s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.hidden {
  display: none;
}

body {
  font-family: "neue-haas-unica", sans-serif;
  font-size: clamp(1.2rem, 1vw, 1rem);
  line-height: 140%;
  color: #e8e8e8;
  font-weight: 500;
  transition: all 0.3s ease;
  background: #141416;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/*  ARTICLES.HTML          */
.article-intro {
  font-size: clamp(3.8rem, 3.5vw, 4.2rem);
  line-height: 110%;
  font-weight: 600;
  margin: 0px 8px 0px 8px;
  padding: 0px 8px 0px 8px;
  margin-top: 2rem;
}

.title {
  color: #e8e8e8;
}

.subtitle {
  color: #696969;
}

.abstract {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 8px 8px 3rem 8px;
  font-size: clamp(1.4rem, 1.3vw, 1.3rem);
  line-height: 140%;
}

.abstract-paragraph {
  grid-column: 1;
  padding: 0px 8px 0px 8px;
}

/*  → TABLE OF CONTENT                */
.table-of-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 8rem 8px 0px 8px;
}

.toc-sections {
  grid-column: 2;
  padding: 0 2rem;
}
.toc-sections.toc-sections > li {
  border-bottom: 1px solid #f4f4f4;
}

/*  → MEDIA                     */
.article-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 8rem;
  padding: 8rem;
  background: #1a1a1a;
  box-sizing: border-box;
}

.article-image img {
  max-width: 80vw;
}

/*  → CONTENT                     */
.article-container {
  display: grid;
  grid-template-columns: 1fr 55% 1fr;
  max-width: 1440px;
  margin: 0 auto;
  gap: 1rem;
  padding: 1rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.article-container p,
.subsection {
  grid-column: 2;
}

.subsection {
  font-size: clamp(1.4rem, 1.3vw, 1.3rem);
  padding-top: 1rem;
}

/*  → MUSIC PLAYLIST                     */
.music-playlist {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 55% 1fr;
  max-width: 1440px;
  margin: 0 auto;
  gap: 1rem;
}

.gratitude,
.playlist,
.credits,
.wavy-line {
  grid-column: 2;
}

.playlist {
  padding-left: 0px !important;
}

.playlist li {
  padding-top: 2px;
  padding-bottom: 4px;
  border-bottom: 1px solid #f4f4f4;
}

.credits {
  color: #696969;
  margin-top: 4rem;
  margin-bottom: 1rem;
  text-align: center;
}

.record {
  color: #696969;
}

.wavy-line {
  --s: 12px;
  --b: 4px;
  --m: 0.6;
  margin-top: 3rem;
  margin-bottom: 3rem;
  background: white;
  --R: calc(var(--s) * sqrt(var(--m) * var(--m) + 1) + var(--b) / 2);
  height: calc(2 * var(--R));
  width: 100%;
  --_g: #0000 calc(99% - var(--b)), #000 calc(101% - var(--b)) 99%, #0000 101%;
  mask: radial-gradient(var(--R) at left 50% bottom calc(-1 * var(--m) * var(--s)), var(--_g)) calc(50% - 2 * var(--s)) calc(50% - var(--s) / 2 - var(--b) / 2)/calc(4 * var(--s)) calc(var(--s) + var(--b)) repeat-x, radial-gradient(var(--R) at left 50% top calc(-1 * var(--m) * var(--s)), var(--_g)) 50% calc(50% + var(--s) / 2 + var(--b) / 2)/calc(4 * var(--s)) calc(var(--s) + var(--b)) repeat-x;
}

/*  OBJECT.HTML          */
.object-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.5rem;
  padding: 8rem;
  background: #1a1a1a;
  box-sizing: border-box;
}

.object-paragraph {
  color: #696969;
}

/*  ABOUT.HTML                     */
/*  → SECTIONS                     */
.large-paragraph {
  font-size: clamp(3.8rem, 3.5vw, 4.2rem);
  line-height: 110%;
}

.small-text {
  font-size: clamp(1.2rem, 1vw, 1rem);
  padding-right: 200px;
  line-height: 110%;
  color: #818181;
}

.inline-link {
  color: gray;
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 20%;
  margin: 8px 8px 3rem 8px;
  font-size: clamp(1.4rem, 1.3vw, 1.3rem);
  line-height: 140%;
  margin-bottom: 4rem;
  margin-top: 12rem;
}

.intro-paragraph {
  grid-column: 1;
  padding: 0px 8px 0px 8px;
}

.contact-row {
  display: flex;
  padding-left: 16px;
}

.subject {
  width: 260px;
  color: #818181;
}

/*  INDEX.HTML                     */
/*  → GLOBAL HEADER                */
header {
  z-index: 1000;
  width: 100%;
  position: relative;
  transition: backdrop-filter 0.3s ease, box-shadow 0.3s ease, position 0.3s ease;
  padding: 8px 16px;
  top: 0;
  margin: 0;
  mix-blend-mode: difference;
}

.brand img {
  width: 16px;
  height: auto;
  position: relative;
  top: 2px;
  margin: 0 4px;
}

header.fixed-header {
  position: fixed;
}

header.scrolled-header {
  backdrop-filter: blur(20px);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-top: 0.5rem;
}

.header-container {
  position: absolute;
  left: 0;
}

.nav-links {
  display: flex;
  gap: 12px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.social {
  position: absolute;
  right: 0;
}

.full-text,
.short-text {
  color: #e8e8e8;
  font-weight: 500;
}

.brand .full-text {
  display: inline;
}

.brand .short-text {
  display: none;
}

.brand.scrolled .full-text {
  display: none !important;
}

.brand.scrolled .short-text {
  display: inline !important;
}

.nav-links div,
.extra-nav {
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-links div:hover,
.extra-nav:hover,
.social-link:hover {
  color: #e8e8e8;
  text-decoration: underline;
}

.active {
  color: #e8e8e8 !important;
}

/*  → LIST OF ARTICLES               */
main {
  margin: 16rem 16px 12rem 16px;
  padding: 0 16px 0 16px;
  position: relative;
}

main::before {
  content: "READ";
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  font-size: 20vw;
  font-weight: 900;
  color: rgba(255, 0, 0, 0.1);
  pointer-events: none;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
  font-family: "neue-haas-unica", sans-serif;
}

main:hover::before {
  opacity: 0.05;
  transform: translate(-50%, -50%) scale(1);
}

.article-row {
  grid-template-columns: 1fr;
  position: relative;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
  text-align: center;
  width: 100%;
  margin-bottom: 24px;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.6, 1);
  padding: 8px 0px 8px 0px;
}

.article-title {
  color: #696969;
  font-weight: 600;
  font-size: clamp(5.2rem, 5vw, 5rem);
  line-height: 110%;
}

.article-subtitle {
  color: #696969;
  font-size: clamp(1rem, 1vw, 1rem);
  line-height: 110%;
}

.article-title:hover {
  color: #e8e8e8;
}

.article-row {
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
  will-change: transform, opacity;
}

.article-list {
  position: relative;
  z-index: 1;
  margin-left: 1rem;
  margin-right: 1rem;
  margin-top: 2rem;
}

.about-list {
  position: relative;
  z-index: 1;
  margin-left: 1rem;
  margin-right: 1rem;
  margin-top: 2rem;
}

.about-row {
  display: grid;
  grid-template-columns: 80px 1fr 200px;
  gap: 1rem;
  align-items: center;
  padding: 8px 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.about-row:hover {
  color: #e8e8e8;
  padding-left: 50px;
}

.about-row span {
  color: #696969;
}

.about-row:hover span {
  color: #e8e8e8;
}

.about-row .year {
  font-weight: 500;
}

.about-row .keywords {
  text-align: right;
  font-size: 0.9em;
  color: #818181;
}

.intro-list {
  margin-left: 1rem;
  margin-right: 1rem;
  margin-top: 2rem;
}

.article-row-home {
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 2;
  mix-blend-mode: difference;
}

.article-row-home:hover {
  color: #e8e8e8;
  padding-left: 50px;
  border-bottom: 1px solid 1px solid #f4f4f4;
}

.article-row-home:hover .secret-code,
.article-row-home:hover .article-title {
  color: #e8e8e8;
}

/*  → RESPONSIVE               */
/*  → MAX-1240                 */
@media (max-width: 1240px) {
  .article-banner {
    margin-top: 6rem;
    padding: 5rem;
  }
  .article-banner img {
    max-width: 80%;
    height: auto;
    margin: 0 auto;
    display: block;
  }
  .social-link {
    position: relative;
  }
  .social-link.linkedin::before {
    content: "LI";
    display: inline;
  }
  .social-link.linkedin span {
    display: none;
  }
  .social-link.instagram::before {
    content: "IG";
    display: inline;
  }
  .social-link.instagram span {
    display: none;
  }
}
/*  → RESPONSIVE               */
/*  → MAX-768                  */
@media (max-width: 768px) {
  .large-paragraph {
    font-size: clamp(2.4rem, 2.3vw, 2.3rem);
  }
  .small-text {
    padding-right: 50px;
  }
  .about-intro {
    grid-template-columns: 1fr;
  }
  .article-title {
    font-size: 3rem;
    line-height: 3.8rem;
  }
  .article-container {
    grid-template-columns: 1fr;
    padding-left: 0px !important;
  }
  .abstract {
    grid-template-columns: 1fr;
    font-size: 1.2rem;
    line-height: 140%;
  }
  .table-of-content {
    grid-template-columns: 1fr;
  }
  .toc-sections {
    grid-column: 1;
    padding: 0 8px;
  }
  .title-container {
    font-size: 2rem;
    line-height: 2.2rem;
    font-weight: 600;
    margin: 0px 8px 0px 8px !important;
    padding: 0px 8px;
  }
  .music-playlist {
    grid-template-columns: 1fr;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .gratitude,
  .playlist,
  .credits,
  .wavy-line {
    grid-column: 1;
  }
  .abstract-paragraph {
    grid-column: 1;
  }
  .article-banner {
    margin-top: 3rem;
    padding: 4rem;
    box-sizing: border-box;
  }
  .article-banner img {
    max-width: 96%;
    height: auto;
    margin: 0 auto;
    display: block;
  }
  .article-item {
    height: 28px;
    font-size: 1.2rem;
  }
  .about-me {
    font-size: 1rem;
  }
  .table-of-content {
    margin-top: 1rem;
  }
  .article-banner {
    margin-top: 5rem;
  }
  .footer-list {
    padding: 1rem;
  }
  .social {
    display: none;
  }
  .about-row {
    grid-template-columns: 60px 1fr;
    gap: 0.5rem;
  }
  .about-row .keywords {
    display: none;
  }
}
.background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  z-index: -2;
}

.background-container img {
  width: 60vw;
  height: 60vh;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
}

.footer-list {
  margin-top: auto;
  padding: 1rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.active {
  text-decoration: underline !important;
}

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