/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400&family=Cormorant+Garamond:ital,wght@0,400;1,500&family=Ma+Shan+Zheng&display=swap');

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #000000;
  line-height: 1.8;
}

/* LINKS */
a {
  color: inherit;
  text-decoration: none;
}

/* HERO */
.title {
  height: 100vh;
  background: url('hero.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.title::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.title-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.title h1 {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 72px;
  opacity: 0;
  transform: translateY(30px);
  animation: titleReveal 1.8s ease forwards;
}

.title p {
  font-size: 16px;
  letter-spacing: 0.08em;
  opacity: 0.7;
  margin-top: 16px;
}

/* SECTIONS */
.content,
.work,
.journal,
.footer {
  padding: 160px 80px;
}

/* TEXT */
.text-block {
  max-width: 520px;
  font-size: 20px;
}

/* HEADINGS */
h2 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 36px;
  margin-bottom: 64px;
}

/* PROJECTS */
.work {
  display: grid;
  gap: 120px;
}

.project img {
  width: 100%;
  max-width: 1000px;
  display: block;
  margin: 0 auto;
  transition: transform 1.2s ease, opacity 1.2s ease;
}

.project:hover img {
  transform: scale(1.02);
  opacity: 0.95;
}

.meta {
  font-size: 14px;
  opacity: 0.7;
  margin-top: 16px;
}

/* JOURNAL */
.journal-list {
  max-width: 480px;
  margin: 0 auto;
  font-size: 18px;
}

.journal-list p {
  margin-bottom: 24px;
  cursor: pointer;
  transition: 0.6s ease;
}

.journal-list p:hover {
  opacity: 0.4;
}

/* FOOTER */
.footer {
  background: #0f0f0f;
  color: #ffffff;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  gap: 80px;
  text-align: center;
}

.footer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-question {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  opacity: 0.75;
  line-height: 1.6;
  max-width: 420px;
}

.footer a {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: opacity 0.6s ease;
}

.footer a:hover {
  opacity: 0.4;
}

.footer-bottom {
  margin-top: 140px;
  text-align: center;
  font-family: 'Ma Shan Zheng', cursive;
  font-size: 28px;
  opacity: 0.7;
}

/* SCROLL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* HERO ANIMATION */
@keyframes titleReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 768px) {

  .title h1 {
    font-size: 42px;
  }

  .content,
  .work,
  .journal,
  .footer {
    padding: 80px 24px;
  }

  h2 {
    font-size: 26px;
  }

  .text-block {
    font-size: 16px;
  }

  .footer-inner {
    gap: 60px;
  }
}