/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}

/* Begin */

:root {
  --light: #f7f2ed;
  --dark: #e2d7cf;
  --red: #a42a2a;
  --yellow: #f4ba16;
  --green: #349e45;
  --black: #282828;
  --dm: "DM Sans", sans-serif;
  --mono: "DM Mono", monospace;
}

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

.black {
  color: var(--black);
}

.light {
  color: var(--light);
}

.bold {
  font-weight: 700;
}

.rounded {
  border-radius: 2rem;
}

body {
  background-color: var(--light);
  color: var(--red);
  font-family: var(--dm);
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal; 
  overflow-x: hidden;
}

main {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 4rem;
}

img {
  display: block;
  width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

figure {
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
}

iframe {
  border: none;
}

hr {
  border: none;
  height: 1px;
  background-color: black;
  overflow: hidden;
  width: 100%;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* Header */

header {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: space-between;
  align-items: flex-start;
  margin: 1.5rem;
}

header nav:nth-of-type(2) {
  margin-top: 1rem;
}

header nav:nth-of-type(2) span {
  font-size: 0.85rem;
  text-transform: uppercase;
  padding-right: 0.5rem;
}

nav a {
  padding: .3rem .6rem;
  border: 1px solid var(--red);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.8rem;
}

nav a.active {
  background-color: var(--red);
  color: var(--light);
}

nav a:nth-child(odd) {
  border-radius: 1rem;
}

nav a:hover {
  background-color: var(--red);
  color: var(--light);
}

.logo-home {
  max-width: 15vw;
}

.logo {
  max-width: 8vw;
}

/* Home */

.section-container {
  margin: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

section {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

section.call {
  font-size: 3rem;
  width: 100%;
  padding-right: 30%;
}

section.hero {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

section.hero img {
  width: 70%;
  border-radius: 2rem;
}

section.who-we-are {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 5rem;
  margin-bottom: 5rem;
}

section.who-we-are .section-copy {
  font-size: 1.75rem;
  line-height: 2.25rem;
}

section.donate {
  margin-bottom: 7rem;
}

.section-heading {
  text-transform: uppercase;
  border-bottom: 1px solid var(--black);
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.section-copy {
  font-size: 1.15rem;
}

a.button {
  background-color: var(--yellow);
  font-size: 3rem;
  color: var(--black);
  padding: 2rem 10rem;
  border-radius: 3rem;
  text-align: center;
}

section.become-member {
  width: 80%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-content: flex-start;
  position: relative;
  overflow: hidden;
}

.become-container {
  display: grid;
  grid-template-columns: 60% 40%;
  column-gap: 2rem;
  flex-direction: row;
  align-content: flex-start;
  position: relative;
  overflow: hidden;
  padding: 5rem 8rem;
}

.svg-container {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
}

section.become-member .bm-left div:first-child {
  font-size: 2vw;
  margin-bottom: 0.5rem;
}

section.become-member .bm-left div:nth-of-type(2) {
  font-size: 1.25vw;
  margin-bottom: 0.5rem;
}

section.become-member .bm-left div:nth-child(2) {
  margin-bottom: 2rem;
}

a.button-small {
  background-color: var(--green);
  color: var(--light);
  padding: 0.5rem 2rem;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 1rem;
}

section.become-member .bm-right {
  width: 100%;
}

.see-all a {
  padding: 0.5em;
  border: 1px solid var(--red);
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: bolder;
}

main.home .upcoming-events {
  padding-bottom: 3rem;
}

/* Default */

.page-title {
  width: 100%;
  border-top: 1px solid var(--red);
  border-bottom: 1px solid var(--red);
  padding: 1rem;
  text-align: center;
  font-size: 3.5rem;
  margin-top: 3rem;
  font-weight: 500;
}

section.blocks {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--black);
  font-weight: 700;
  line-height: 1.45rem;
}

section.blocks p, ol, figure {
  width: 55%;
}

section.blocks h1, h2, h3 {
  width: 70%;
  text-align: center;
}

section.blocks h1.center, section.blocks h2.center, section.blocks h3.center {
  text-align: center;
}

section.blocks h1.left, section.blocks h2.left, section.blocks h3.left {
  width: 55%;
  text-align: left;
}

section.blocks h1 {
  font-size: 2.75rem;
  line-height: 3rem;
}

section.blocks h2 {
  font-size: 2.25rem;
  line-height: 2rem;
}

section.blocks h3 {
  font-size: 1.75rem;
  line-height: 1.5rem;
}

section.blocks ol {
  width: 40%;
}

section.blocks ol li {
  width: max-content;
}

section.blocks ul {
  width: 40%;
  margin-top: 0;
}

section.blocks ul li p {
  width: 100%;
  display: block;
}

section.blocks ul li p:first-of-type {
  margin-top: 0;
}

section.blocks figure img {
  width: 80%;
  margin: 0 auto;
}

section.blocks figure:has(img) {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

section.blocks figcaption {
  font-family: var(--mono);
  font-weight: lighter;
  font-size: 0.8rem;
  width: 80%;
  margin: 0 auto;
  padding-top: 0.5rem;
}

section.blocks figure.video-embed {
  width: 80%;
  margin-top: 1rem;
}

section.blocks figure.video-embed figcaption {
  width: 100%;
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.embed-container iframe, .embed-container object, .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

section.blocks a {
  color: var(--red);
}

section.blocks a:hover {
  border-bottom: 1px solid var(--red);
}

/* About */

main.about-us section.board, main.about-us section.staff {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--black);
  font-weight: 700;
  line-height: 1.45rem;
  padding-bottom: 8rem;
  border-bottom: 1px solid var(--black);
}

main.about-us section.blocks {
  padding-bottom: 8rem;
  border-bottom: 1px solid var(--black);
}

.section-title {
  font-size: 2.75rem;
  font-weight: 500;
  color: var(--black);
}

main.about-us section.board {
  width: 100%;
}

div.board {
  width: 90%;
  margin-top: 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  column-gap: 3rem;
}

.board-text {
  padding-top: 0.5rem;
  font-size: 1.5rem;
}

.board-member {
  padding-bottom: 3rem;
}

main.about-us section.staff {
  width: 100%;
  border: none;
}

div.staff {
  width: 80%;
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
}

.staff-member {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  padding-bottom: 4rem;
}

.staff-left {
  width: 40%;
  padding-right: 5rem;
}

.staff-image {
  width: 60%;
}

.staff-text {
  padding-top: 0.5rem;
  font-size: 1.5rem;
}

.staff-role {
  font-family: var(--mono);
  font-weight: light;
}

.staff-email {
  font-family: var(--mono);
  color: var(--red);
}

.staff-bio p {
  font-size: 1.15rem;
  line-height: 1.75rem;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}

.staff-bio p:last-of-type {
  margin-top: 1.75rem;
}

.staff-right {
  width: 60%;
}

/* Event page */

section.event {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.event-details {
  width: 90%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  padding-top: 2rem;
}

.event-left {
  width: 30%;
  color: var(--black);
  font-size: 1.15rem;
  line-height: 1.75rem;
  font-weight: bold;
}

.event-right {
  width: 70%;
}

.event-left a {
  text-decoration: underline;
}

/* Events */

section.events {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.upcoming-events {
  width: 90%;
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: space-between;
  margin-top: 2rem;
  padding-bottom: 6rem;
  align-items: flex-start;
}

.upcoming {
  width: calc(50% - 0.5rem);
  border: 1rem solid var(--dark);
  padding: 1rem;
  color: var(--black);
}

.upcoming-image {
  margin-bottom: 1rem;
}

.upcoming-title {
  font-size: 2.5rem;
}

.upcoming-desc {
  font-size: 1.5rem;
  font-weight: bold;
  padding-bottom: 2rem;
}

.upcoming-meta {
  font-family: var(--mono);
  font-weight: lighter;
  text-transform: uppercase;
}

.upcoming-meta span {
  padding-left: 1rem;
  padding-right: 1rem;
}

.upcoming-meta span:first-of-type {
  padding-left: 0;
}

.events-archive {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  padding-bottom: 6rem;
}

.archive-event {
  width: 100%;
  background-color: var(--dark);
  padding: 2rem;
  color: var(--black);
  display: flex;
  flex-direction: row;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.archive-event-dates {
  width: max-content;
  padding-right: 4rem;
  font-family: var(--mono);
  font-weight: lighter;
}

.archive-event-title {
  width: max-content;
  font-size: 2rem;
}

/* Button block */

section.blocks a.button-block {
  color: var(--black);
  text-decoration: none;
}

section.blocks a.button-block:hover {
  border: none;
}

section.blocks a.button-block:first-of-type {
  margin-top: 2rem;
}

a.button-block {
  background-color: var(--yellow);
  border-radius: 6rem;
  margin-bottom: 2rem;
}

a.button-block.small {
  padding: 0.5rem 2rem;
}

a.button-block.medium {
  width: 35%;
  padding: 2rem;
  padding-left: 7rem;
  padding-right: 7rem;
  text-align: center;
  font-size: 2rem;
  line-height: 2.25rem;
  font-weight: 500;
}

a.button-block.large {
  width: 55%;
  padding: 3rem;
  padding-left: 10rem;
  padding-right: 10rem;
  text-align: center;
  font-size: 2.5rem;
  line-height: 2.75rem;
  font-weight: 500;
}

/* Twocolumn block */

section.blocks figure.twocolumn {
  width: 80%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 0;
  margin-bottom: 0;
  gap: 4rem;
  align-items: center;
}

section.blocks figure.twocolumn p, section.blocks figure.twocolumn figure {
  flex: 1 1 0;
  width: 0;
}

section.blocks figure.twocolumn figure img {
  width: 100%;
  margin: 0 auto;
}

section.blocks figure.twocolumn figure:has(img) {
  margin-top: 0;
  margin-bottom: 0;
}

/* Audio */

figure.audio {
  margin-top: 1rem;
}

figure.audio audio {
  width: 100%;
  filter: contrast(100%) invert(100%);
}

figure.audio figcaption {
  text-align: center;
}

/* Footer */

footer {
  /* background-image: url('data:image/svg+xml,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1306 293.9" style="enable-background:new 0 0 1306 293.9;" xml:space="preserve"><style type="text/css">.st0{fill:%23349E45;}</style><path class="st0" d="M1306,162.1C1046.9-46.1,307.7-61.8,0,162.1h335.7C203.6,188.3,85.2,231.9,0,293.9h1306c-75.6-60.7-192.1-105.1-326.8-131.9H1306z"/></svg>');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% 100%; */
  width: 100%;
  height: max-content;
  color: var(--light);
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 700;
  position: relative;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.svg-container.in-footer {
  height: max-content;
}

.social-media {
  width: 100%;
  padding-top: .5rem;
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.social-media a {
  width: 1rem;
  margin: .5rem;
}

.social-media a svg {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1000px) {
  
nav a {
  font-size: 0.7rem;
}
  
.svg-container.in-footer img {
  object-fit: fill;
}

.svg-container.in-footer {
    height: 100%;
}

header {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-between;
  align-items: center;
  margin: 1rem;
}

header div {
  width: 100%;
  order: 2;
  margin-top: 1rem;
}

header div nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: center;
  align-items: flex-start;
  gap: 0.5rem;
}

.logo-home, .logo {
    max-width: 25dvw;
}

main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  padding: 0 1rem 2rem 1rem;
}

.section-container {
  margin: 0;
}

section.call {
    padding-right: 0;
}

section.who-we-are {
  width: 100%;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

section.become-member {
  width: 100%;
  flex-direction: column;
  background-repeat: inherit;
}

.become-container {
  grid-template-columns: 1fr;
  padding: 2rem;
}

section.become-member .bm-left div:first-child {
  font-size: 1.5rem;
}

section.become-member .bm-left div:nth-of-type(2) {
  font-size: 1.25rem;
}

.svg-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 2rem;
}

section.donate {
    margin-bottom: 2rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
}

a.button {
  padding: 2rem 3rem;
}

.upcoming-events {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: space-between;
    margin-top: 2rem;
    padding-bottom: 6rem;
    align-items: flex-start;
}

.upcoming {
    width: 100%;
    padding: 1rem;
    margin-bottom: 2rem;
}

.page-title {
  font-size: 2rem;
  margin-top: 2rem;
  margin-bottom: 0;
}

section.blocks p, ol, figure {
    width: 100%;
}

a.button-block.medium {
    width: 100%;
    padding-left: 4rem;
    padding-right: 4rem;
    font-size: 1.5rem;
}

div.staff {
    width: 100%;
    margin-top: 3rem;
}

.staff-member {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    padding-bottom: 4rem;
}

.staff-left {
    width: 100%;
    padding-right: 0;
}

.staff-image {
    width: 100%;
}

.staff-right {
    width: 100%;
    margin-top: 1rem;
}

main.about-us section.blocks {
    padding-bottom: 4rem;
}

section.blocks ul {
    width: 100%;
    margin-top: 0;
}

main.about-us section.board, main.about-us section.staff {
    padding-bottom: 4rem;
}

footer {
    padding: 2rem 0 2rem 0;
    height: 100%;
}

section.become-member .bm-left {
    width: 100%;
    padding: 0;
}

section.become-member .bm-right {
    width: 100%;
    margin-top: 3rem;
}

.bm-left .button-small {
  margin-top: 1rem;
}

section.blocks h1, h2, h3 {
    width: 100%;
}

section.blocks figure.video-embed {
    width: 100%;
}

section.blocks figure img {
    width: 100%;
    margin: 0 auto;
}

section.blocks h2 {
    line-height: 2.5rem;
    text-align: center;
}

section.blocks figcaption {
    width: 100%;
}

.event-details {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    padding-top: 2rem;
}

.event-left {
    width: 100%;
    color: var(--black);
    font-size: 1.15rem;
    line-height: 1.75rem;
    font-weight: bold;
}

.event-right {
    width: 100%;
}

}