
:root {
  --text-color: #23264f;
  --bg-color: #fefdef;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: 'Shippori Mincho', serif;
  margin: 0;
  padding: 0;
}

header, nav, main, footer {
  max-width: 800px;
  margin: auto;
  padding: 2rem;
}

h1, h2 {
  font-weight: 700;
  margin: 0;
}

h1.title {
  letter-spacing: 0.2em;
}

h1.title a {
  text-decoration: none;
  color: inherit;
}

/* Shared nav: hand-drawn image underline, no text underline */
nav {
  padding: 0;
  margin-bottom: 2rem;
  text-align: center;
}

nav a,
nav a:visited {
  margin: 0 1rem;
  color: var(--text-color);
  text-decoration: none;
  font-weight: 400;
  position: relative;
  padding-bottom: 20px;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 130%;
  height: 35px;
  background-image: url("../images/underline-submissions home.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  pointer-events: none;
}

/* Inner pages: title on the left, nav on the same line to the right */
.site-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}

.site-header nav {
  padding: 0;
  margin: 0;
}

.site-header nav a {
  margin: 0 0 0 2rem;
}

.email-underline {
  position: relative;
  padding-bottom: 20px;
  text-decoration: none;
  color: inherit;
}

.email-underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 32px;
  background-image: url("../images/underline-submissions.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  pointer-events: none;
}

.style-guide-wrapper {
  max-width: 800px;
  margin: 3rem auto 1rem;
  text-align: right;
  padding: 0 2rem;
}

.style-guide-link {
  position: relative;
  text-decoration: none;
  color: var(--text-color);
}

/* Footer */
.footer-wrapper {
  text-align: center;
  margin-top: 4rem;
}

.logo-bottom {
  height: 50px;
  width: auto;
  display: block;
  margin: 0 auto;
}

.footer-text {
  font-size: 0.75rem;
  margin-top: 0.5rem;
  color: var(--text-color);
}

a, a:visited {
  color: inherit;
  text-decoration: underline;
}