/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Source Serif 4", sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  top: -300px;
  left: -10%;
  width: 120%;
  height: 300px;
  z-index: -1;
  background: radial-gradient(circle at 20% 50%, rgba(255, 107, 237, 0.8) 0%, transparent 50%), radial-gradient(circle at 90% 30%, rgba(30, 144, 255, 0.7) 0%, transparent 50%), radial-gradient(circle at 10% 80%, rgba(75, 0, 130, 0.7) 0%, transparent 50%);
  background-size: 200% 200%;
  animation: gradientShift 15s ease infinite;
  filter: blur(40px);
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%, 100% 100%, 50% 0%, 100% 50%, 80% 80%, 20% 100%;
  }
  33% {
    background-position: 50% 70%, 80% 80%, 70% 30%, 90% 60%, 60% 90%, 30% 80%;
  }
  66% {
    background-position: 100% 50%, 60% 60%, 30% 60%, 80% 40%, 70% 70%, 10% 90%;
  }
}
main {
  max-width: 1200px;
  margin: 0 auto;
  min-height: 100%;
}

h1 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #222;
}

h2 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 2rem;
  margin-bottom: 16px;
  margin-top: 32px;
  color: #333;
  font-weight: 400;
}

h3 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

.content {
  line-height: 1.6;
}

ul, ol li {
  padding-left: 32px;
}

.mb-xl {
  margin-bottom: 24px;
}

.toggle-button, .link {
  text-decoration-color: #d5c3ff;
  color: #4f20bd;
}
.toggle-button:hover, .link:hover {
  text-decoration: underline;
  color: #4f20bd;
  text-decoration-thickness: 2px;
  text-decoration-color: #d5c3ff;
  text-underline-offset: 3px;
}

.link {
  text-decoration: none;
}

.document {
  display: flex;
  flex-direction: column;
  margin: 0 24px;
}
.document h1 {
  margin: 0 150px;
  line-height: 1.4;
  font-weight: 400;
  margin-top: 64px;
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  .document h1 {
    margin-left: 0;
    margin-right: 0;
    margin-top: 32px;
  }
}
.document h2 {
  margin: 0 150px 8px 150px;
  font-size: 1.3rem;
  font-weight: 400;
}
@media (max-width: 900px) {
  .document h2 {
    margin-left: 0;
    margin-right: 0;
  }
}
.document h2.hero {
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 0px;
}
.document p, .document ol, .document ul {
  font-size: 1.5rem;
  color: #555;
  font-weight: 300;
}
.document p + h2, .document ol + h2, .document ul + h2 {
  margin-top: 40px;
}
.document p + p, .document ol + p, .document ul + p {
  margin-top: 24px;
}
.document p {
  margin: 0 150px;
}
@media (max-width: 900px) {
  .document p {
    margin-left: 0;
    margin-right: 0;
  }
}
.document ol, .document ul {
  margin: 0 150px 0 150px;
}
@media (max-width: 900px) {
  .document ol, .document ul {
    margin-left: 0;
    margin-right: 0;
  }
}
.document .big {
  font-size: 1.5rem;
  line-height: 1.4;
  font-family: "Source Serif 4", sans-serif;
  color: #555;
  font-weight: 300;
  margin-bottom: 24px;
}
.document .big.project {
  margin-bottom: 0;
}
.document .expandable-content {
  max-height: 1000px;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
  opacity: 1;
}
.document .expandable-content.collapsed {
  max-height: 0;
  opacity: 0;
}
.document .expandable-content.collapsed + p .toggle-button {
  margin-top: 0;
}
.document .toggle-button {
  display: block;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.1rem;
  color: #4f20bd;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}
.document .toggle-button:active {
  transform: translateY(0);
}
.document img {
  max-width: 100%;
  margin: 40px 0;
}
.document figure {
  margin: 40px 0;
  padding: 0;
}
.document figure + figure {
  margin-top: 0;
}
.document figure img {
  margin: 0;
  display: block;
  box-shadow: 0px 6px 12px rgba(10, 0, 40, 0.2);
  border-radius: 12px;
  corner-shape: squircle;
}
.document figure img.no-shadow {
  box-shadow: none;
}
.document figure.two-up .two-up-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.document figure.two-up .two-up-container img {
  max-width: 48%;
}
.document figure figcaption {
  margin-top: 16px;
  font-size: 1.1rem;
  color: #858585;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Header and Navigation */
header {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
  font-size: 1.5rem;
  padding: 12px 16px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}
header a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 4px;
  transition: background-color 0.3s;
}
header a:hover {
  text-decoration: underline;
  color: #4f20bd;
  text-decoration-thickness: 2px;
  text-decoration-color: #d5c3ff;
  text-underline-offset: 3px;
}
header nav {
  display: flex;
  font-size: 1.1rem;
}
header nav a {
  color: #4f20bd;
}
@media (max-width: 900px) {
  header {
    flex-direction: column;
    padding-right: 8px;
    padding-left: 8px;
  }
  header a {
    padding-bottom: 0px;
  }
}

/* Project List */
.project-list {
  display: grid;
  gap: 32px;
  margin-top: 24px;
  margin-bottom: 64px;
  margin-left: 150px;
  margin-right: 150px;
}
@media (max-width: 900px) {
  .project-list {
    grid-template-columns: 1fr;
    margin-left: 0;
    margin-right: 0;
  }
}

.role-tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 0 150px 24px 150px;
}
@media (max-width: 900px) {
  .role-tags {
    margin-left: 0;
    margin-right: 0;
  }
}
.role-tags .role-tag {
  background-color: rgb(246, 255, 180);
  color: rgb(99, 112, 0);
  border-radius: 12px;
  corner-shape: squircle;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.1rem;
  padding: 0 8px;
}

.project-item {
  display: flex;
  flex-direction: row;
  text-decoration: none;
  color: inherit;
  transition: 0.2s;
  background-position: center;
  background-size: 300%;
}
.project-item .title-tag {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.project-item .title-tag .tag {
  background-color: rgb(246, 255, 180);
  color: rgb(99, 112, 0);
  border-radius: 12px;
  corner-shape: squircle;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.1rem;
  padding: 0 8px;
}
@media (max-width: 900px) {
  .project-item .title-tag {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-bottom: 8px;
  }
}
.project-item:hover h3 {
  text-decoration: underline;
  color: #4f20bd;
  text-decoration-thickness: 2px;
  text-decoration-color: #d5c3ff;
  text-underline-offset: 3px;
}
.project-item:hover .tag, .project-item:hover .description {
  text-decoration: none;
}
.project-item h3 {
  text-decoration-color: #d5c3ff;
  color: #4f20bd;
  font-weight: 400;
  font-size: 1.5rem;
  transition: 0.2s;
}
.project-item .description {
  color: #555;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
}
.project-item .content {
  display: flex;
  flex-direction: column;
  align-self: end;
  width: 100%;
}

/* Footer */
footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 64px;
  padding: 20px;
  color: #858585;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.1rem;
  line-height: 1.3;
}
@media (max-width: 900px) {
  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

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