@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: brandon-grotesque, "Helvetica Neue", Helvetica, Arial, Montserrat, sans-serif;
  color: #00026b;
  background: #fff;
  line-height: 1.7;
  font-size: 16px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover,
a:focus {
  color: #555;
}

.page-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}


.site-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 1rem;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  text-align: center;
}

.brand {
  order: 1;
}

.brand a {
  display: inline-block;
  transition: opacity 0.2s ease;
}

.brand a:hover {
  opacity: 0.9;
}

.brand img {
  height: 60px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 400;
  order: 2;
}

.site-nav a {
  padding: 0.35rem 0.5rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover {
  border-bottom-color: #00026b;
  color: #00026b;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-top: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 4px auto;
  background: #00026b;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-main {
  flex: 1;
  width: 100%;
  padding: 0;
  margin: 0;
}
.site-main {
  flex: 1;
  width: 100%;
  padding: 2rem 1rem;
  margin: 0 auto;
  max-width: 980px;
}

.site-main img[style*="width: 100%"] {
  display: block;
  height: auto;
}

.home-intro {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.home-intro .eyebrow {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 2rem;
  font-weight: 400;
  color: #00026b;
}

.button {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  font-size: 0.75rem;
  border: 2px solid #00026b;
  padding: 0.9rem 1.5rem;
  transition: all 0.3s ease;
  background: transparent;
  color: #00026b;
  cursor: pointer;
}

.button:hover {
  background: #00026b;
  color: #fff;
}

.home-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.page-article {
  max-width: 820px;
  margin: 1rem auto;
  padding: 0 1rem;
  text-align: left;
  color: #00026b;
}

.page-article h1 {
  margin-bottom: 1.2rem;
}

.page-article h2,
.page-article h3 {
  display: block;
  width: 100%;
  margin: 2rem 0 1rem;
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #00026b;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  text-align: left;
}

.page-article p {
  margin: 0 0 1.5rem;
}

.page-event .event-intro {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0 2.5rem;
}

.image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  border: 1px solid rgba(0, 2, 107, 0.2);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0, 2, 107, 0.04), rgba(0, 2, 107, 0.08));
  color: rgba(0, 2, 107, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
}

.event-list {
  margin: 0 0 2rem;
  padding-left: 1.1rem;
  color: #00026b;
}

.event-list li {
  margin-bottom: 0.65rem;
}

.page-article iframe {
  border: none;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  min-height: 560px;
  width: 100%;
  margin: 2.5rem auto 3rem;
}

.page-article img {
  margin-bottom: 2rem;
}

.home-card {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.home-card a {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  display: block;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.home-card a:hover {
  color: #666;
}

.home-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
}

.home-social {
  padding: 3rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.home-social p {
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.home-social a {
  margin: 0 0.5rem;
  transition: color 0.2s ease;
}

.home-social a strong {
  font-weight: 600;
}

.site-footer {
  width: 100%;
  padding: 3rem 2rem;
  margin-top: auto;
  background: #f8f8f8;
  border-top: 1px solid #e0e0e0;
}
.footer-grid {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid h2 {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  font-weight: 600;
  color: #00026b;
}

.footer-grid p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.8;
  color: #666;
}

.footer-grid a {
  color: #00026b;
}

.footer-grid a:hover {
  color: #999;
}

.page-article {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.page-article h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0 0 2rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-family: brandon-grotesque, "Helvetica Neue", Arial, sans-serif;
  color: #00026b;
  text-transform: uppercase;
}

.page-article h2 {
  font-size: 1.4rem;
  margin: 2.5rem 0 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-family: brandon-grotesque, "Helvetica Neue", Arial, sans-serif;
  color: #00026b;
  text-transform: uppercase;
}

.page-article h3 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.75rem;
  font-weight: 700;
  font-family: brandon-grotesque, "Helvetica Neue", Arial, sans-serif;
  color: #00026b;
}

/* Center headings in article pages to match the source site's layout */
.page-article h1,
.page-article h2,
.page-article h3 {
  text-align: center;
}

/* Center iframes (PDF embeds) inside article content */
.page-article iframe {
  display: block;
  margin: 1.25rem auto;
  max-width: 100%;
}

.page-article p {
  margin: 1rem 0;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
}

.page-article img {
  max-width: 100%;
  height: auto;
  margin: 2rem 0;
  display: block;
}

@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
  }

  .site-nav {
    width: 100%;
    justify-content: center;
    gap: 0.75rem;
    display: none;
    flex-direction: column;
    margin-top: 1rem;
  }

  .site-nav.show {
    display: flex;
  }

  .site-nav a {
    text-align: center;
    padding: 0.75rem 0.5rem;
    border-radius: 4px;
    background: #f8f8f8;
    border-bottom: none;
  }

  .site-nav a:hover {
    background: #00026b;
    color: #fff;
    border-bottom-color: transparent;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 1rem;
    top: 1.25rem;
  }

  .site-header {
    position: relative;
  }

  .home-intro {
    padding: 2rem 1.5rem;
  }

  .home-grid {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .home-social {
    padding: 2rem 1.5rem;
  }

  .site-footer {
    padding: 2rem 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .page-article {
    padding: 2rem 1.5rem;
  }
}
