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

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  background: #f2f2f2;
  font-family: "Athelas", bold;
  overflow-x: hidden;
  width: 100%;
}

.site-header {
  align-items: center;
  display: flex;
  justify-content: center;
  left: 0;
  mix-blend-mode: difference;
  padding: 40px 60px;
  position: fixed;
  text-transform: uppercase;
  top: 0;
  width: 100%;
  z-index: 100;
}

.site-logo {
  border-bottom: none;
  box-shadow: none;
  color: #f2f2f2;
  font-size: 1.4rem;
  font-weight: 700;
  left: 60px;
  position: absolute;
  text-decoration: none;
  text-transform: none;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
}
.site-nav a {
  color: #f2f2f2;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: opacity 0.25s ease;
}
.site-nav a:hover {
  opacity: 0.7;
}

.gallery-page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px;
  margin-top: -30px;
}

.project-intro {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 30px;
}

.page-title {
  color: #010101;
  font-family: "Athelas", bold;
  font-size: 2.5rem;
  margin-top: 240px;
  margin-bottom: 32px;
}



.project-intro-image {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: transparent;
  margin-top: 120px;
}

.project-intro-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.project-intro-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-intro-text p {
  color: #010101;
  font-family: "Helvetica", normal;
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
  margin-bottom: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
  .site-header {
    justify-content: flex-start;
    padding: 20px 20px;
  }
  .site-logo {
    font-size: 1.3rem;
    left: auto;
    position: static;
  }
  .site-nav {
    margin-left: auto;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .site-nav a {
    font-size: 0.72rem;
    letter-spacing: 0.03em;
  }

  .gallery-page {
  max-width: 900px;
  margin: 0;
  padding: 40px 40px;
  margin-bottom: 0;
}

  .project-intro {
    grid-template-columns: 1fr;
    gap: 0px;
  }

  .page-title {
  color: #010101;
  font-family: "Athelas", bold;
  font-size: 2.3rem;
  margin-top: 45px;
  margin-left: 45px;
  margin-bottom: 20px;
}

  .project-intro-image {
  width: 100%;
  margin-top: 80px;
}

.project-intro-image img {
  width: 60%;
  display: block;
  object-fit: cover;
  margin-left: 100px;
    margin-top: 88px;
}

  .project-intro-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-left: 45px;
    margin-right: 45px;
    padding-bottom: 16px;
    padding-top: 0;
    text-align: justify;
  }
}

@media (max-width: 500px) {
  .site-header {
    padding: 18px 16px;
  }
  .site-nav {
    gap: 10px;
  }
  .site-nav a {
    font-size: 0.68rem;
  }

  .gallery-page {
    padding: 60px 20px;
  }

    .gallery-page {
  margin-bottom: 20px;
}

  .page-title {
    margin-top: 50px;
    font-size: 2rem;
  }

  .project-intro-image {
  width: 100%;
  margin-top: 70px;
}

.project-intro-image img {
  width: 80%;
  display: block;
  object-fit: cover;
  margin-left: 40px;
  margin-top: 70px;
}

  .project-intro-text p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}
