/* Text Pages Styles (CV, Contact, Exhibitions) */
.page--text {
  width: 100%;
  min-height: 100vh;
  padding-top: var(
    --header-height
  ); /* Account for fixed header with 4 stacked menu items */
}

.page--text .text-content {
  max-width: var(--max-text-width);
}

/* Section styling for CV page */
.page--text .section {
  margin-bottom: var(--spacing-lg);
}

.page--text .section__title {
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height);
  margin-bottom: var(--spacing-md);
}

/* Entry styling (for exhibitions, press mentions) */
.entry {
  margin-bottom: var(--spacing-md);
}

.entry__year {
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height);
}

.entry__content {
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height);
}

/* Contact Page */
.page--contact {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
}

.contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-link {
  display: block;
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height);
}

.contact-link--underline {
  text-decoration: underline;
  text-decoration-color: var(--color-secondary);
  text-underline-offset: 2px;
}

/* Responsive */
@media (max-width: 640px) {
  .page--text {
    padding-top: 160px;
  }
}
