/* Generated with that bootstrap css tool thing. */

:root {
  --black: #111111;
  --navy: #14213d;
  --white: #f8f7f2;
  --border: #d9d7cf;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
}

img {
  max-width: 100%;
}

.site-header,
.site-footer,
.page {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.brand {
  font-family: "Lora", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
}

.site-nav a.active {
  border-bottom: 2px solid var(--navy);
}

.hero {
  padding: 3rem 0 2rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: var(--navy);
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Lora", serif;
  margin: 0 0 0.5rem;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.hero-copy {
  font-size: 1.1rem;
  max-width: 700px;
  margin-bottom: 1.25rem;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.button-dark {
  background: var(--black);
  color: var(--white);
}

.button-light {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}

.info-grid,
.member-list,
.show-list {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: white;
  border: 1px solid var(--border);
  padding: 1.25rem;
  border-radius: 1rem;
  box-shadow: 0 6px 18px rgba(17, 17, 17, 0.05);
}

.card a {
  color: var(--navy);
  font-weight: 700;
}

.page-intro {
  padding: 1.5rem 0 1rem;
}

.role {
  color: var(--navy);
  font-weight: 700;
}

.show-section {
  margin-top: 1.5rem;
}

.zine-card {
  margin-top: 1rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 2rem;
  color: var(--navy);
}

@media (max-width: 640px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .site-nav {
    gap: 0.75rem;
  }
}
