@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&family=Roboto+Serif:wght@300;500;900&display=swap");

:root {
  color-scheme: light;

  --font-body: "Roboto", Arial, sans-serif;
  --font-heading: "Roboto Slab", Georgia, serif;
  --font-serif: "Roboto Serif", Georgia, serif;

  --bulma-family-primary: var(--font-body);
  --bulma-family-secondary: var(--font-heading);
  --bulma-family-code: monospace;

  --rrf-blue: #093c77;
  --rrf-blue-dark: #132a45;
  --rrf-cloud: #6aa0de;
  --rrf-cloud-light: #add3ff;
  --rrf-super-light: #e0efff;
  --rrf-ink: #24212b;
  --rrf-muted: #626273;
  --rrf-white: #ffffff;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 4.5rem;
  font-family: var(--font-body);
}

body,
button,
input,
textarea,
select {
  font-family: var(--font-body);
}

body {
  color: var(--rrf-ink);
  font-weight: 400;
  background: var(--rrf-white);
}

h1,
h2,
h3,
h4,
h5,
h6,
.title {
  font-family: var(--font-heading);
}

.subtitle {
  font-family: var(--font-body);
}

.section h1,
.section h2,
.section h3,
.section h4,
.section h5,
.section h6,
.section .title,
.section .subtitle,
.impact-card h1,
.impact-card h2,
.impact-card h3,
.person-card h1,
.person-card h2,
.person-card h3 {
  color: var(--rrf-ink);
}

.rrf-name {
  font-family: "Roboto Serif", Georgia, serif;
}

.rrf-name-bold {
  font-weight: 900;
}

.rrf-name-normal {
  font-weight: 500;
}

.rrf-name-light {
  font-weight: 300;
}

.rrf-navbar {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(9, 60, 119, 0.12);
  backdrop-filter: blur(12px);
}

.rrf-wordmark {
  color: var(--rrf-blue-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.rrf-navbar .navbar-item {
  color: var(--rrf-muted);
  font-family: var(--font-body);
  font-weight: 700;
}

.rrf-navbar .navbar-item:hover,
.rrf-navbar .navbar-item:focus {
  color: var(--rrf-blue);
  background: transparent;
}

.rrf-hero {
  position: relative;
  min-height: 50vh;
  overflow: hidden;
  color: var(--rrf-white);
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(106, 160, 222, 0.28),
      transparent 32rem
    ),
    radial-gradient(
      circle at 85% 75%,
      rgba(173, 211, 255, 0.16),
      transparent 28rem
    ),
    linear-gradient(
      135deg,
      var(--rrf-blue-dark),
      var(--rrf-blue)
    );
}

.rrf-hero .hero-body {
  padding: 4rem 1.5rem;
}

.rrf-hero::after {
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  width: 28rem;
  height: 28rem;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 3rem rgba(255, 255, 255, 0.04),
    0 0 0 7rem rgba(255, 255, 255, 0.025);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 58rem;
  margin: 0 auto;
}

.rrf-hero h1,
.rrf-hero h2,
.rrf-hero h3,
.rrf-hero .title,
.rrf-hero .subtitle {
  color: var(--rrf-white);
}

.rrf-hero .title {
  max-width: 54rem;
  margin-right: auto;
  margin-left: auto;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.rrf-hero .subtitle {
  max-width: 43rem;
  margin: 1.5rem auto 0;
  font-weight: 300;
  line-height: 1.55;
}

.eyebrow,
.section-kicker {
  margin-bottom: 0.9rem;
  font-family: var(--font-serif);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
}

.eyebrow {
  color: var(--rrf-cloud-light);
}

.section-kicker {
  color: var(--rrf-blue);
}

.hero-actions {
  margin-top: 2rem;
}

.button.is-primary {
  color: var(--rrf-blue-dark);
  font-family: var(--font-body);
  font-weight: 700;
  background: var(--rrf-cloud);
  border-color: var(--rrf-cloud);
}

.button.is-primary:hover,
.button.is-primary:focus {
  color: var(--rrf-blue-dark);
  background: var(--rrf-white);
  border-color: var(--rrf-white);
}

.site-note {
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 300;
}

.community-link {
  color: var(--rrf-cloud-light);
  font-weight: 700;
}

.community-link:hover,
.community-link:focus {
  color: var(--rrf-white);
  text-decoration: underline;
}

.section {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.section-light {
  background: var(--rrf-white);
}

.section-accent {
  background: var(--rrf-super-light);
}

.section-heading {
  max-width: 48rem;
  margin: 0 auto 3rem;
}

.mission-panel {
  padding: 2.5rem;
  color: var(--rrf-white);
  background: var(--rrf-blue-dark);
  border-radius: 1.25rem;
  box-shadow: 0 1.5rem 3rem rgba(19, 42, 69, 0.16);
}

.mission-panel h1,
.mission-panel h2,
.mission-panel h3,
.mission-panel h4,
.mission-panel h5,
.mission-panel h6,
.mission-panel .title,
.mission-panel .subtitle,
.mission-panel p {
  color: var(--rrf-white);
}

.mission-panel-label {
  margin-bottom: 1rem;
  color: var(--rrf-cloud-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mission-panel p:last-child {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.6;
}

.impact-card,
.person-card {
  height: 100%;
  padding: 2rem;
  background: var(--rrf-white);
  border: 1px solid rgba(9, 60, 119, 0.1);
  border-radius: 1rem;
  box-shadow: 0 1rem 2.5rem rgba(19, 42, 69, 0.07);
}

.impact-number {
  margin-bottom: 1.5rem;
  color: var(--rrf-blue);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.impact-card p:last-child,
.person-card p {
  color: var(--rrf-muted);
  line-height: 1.65;
}

.person-card {
  text-align: center;
}

.person-initials {
  display: grid;
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  color: var(--rrf-white);
  font-size: 1.25rem;
  font-weight: 700;
  background: var(--rrf-blue);
  border-radius: 50%;
  place-items: center;
}

.person-role {
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.person-organization {
  font-size: 0.95rem;
}

.joining-message {
  max-width: 48rem;
  margin: 3rem auto 0;
  padding: 1.5rem;
  background: var(--rrf-cloud-light);
  border-radius: 1rem;
}

.logo-section {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
  background: var(--rrf-white);
  border-top: 1px solid rgba(9, 60, 119, 0.1);
}

.rrf-logo {
  width: min(24rem, 80vw);
  height: auto;
}

.about-text {
  max-width: 56rem;
  margin: 3rem auto 0;
  color: var(--rrf-ink);
  line-height: 1.7;
}

.site-footer {
  padding: 2rem 1.5rem;
  color: rgba(255, 255, 255, 0.75);
  background: var(--rrf-blue-dark);
}

.site-footer p {
  margin: 0;
}

@media screen and (max-width: 1023px) {
  .navbar-menu {
    border-top: 1px solid rgba(9, 60, 119, 0.1);
    box-shadow: 0 0.75rem 1.5rem rgba(19, 42, 69, 0.08);
  }
}

@media screen and (max-width: 768px) {
  .section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .rrf-hero {
    min-height: auto;
  }

  .rrf-hero .hero-body {
    padding: 3.5rem 1.5rem;
  }

  .rrf-hero .title {
    font-size: 2.65rem;
  }

  .rrf-wordmark {
    max-width: 16rem;
    line-height: 1.15;
  }

  .mission-panel {
    margin-top: 1rem;
    padding: 2rem;
  }
}