@import url("https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
:root {
  --color-primary: #2261a5;
  --color-accent: #d72638;
  --color-light: #ffffff;
  --color-text-primary: #000000;
  --color-text-secondary: #757575;
  --color-divider: #bdbdbd;
}

* {
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: "Newsreader";
}
button {
  all: unset;
}
.button-primary,
.button-accent {
  padding: 10px 20px;
}
.button-primary {
  background-color: var(--color-primary);
}
.button-accent {
  background-color: var(--color-accent);
}
a {
  color: unset;
  text-decoration: unset;
}
a.button-primary {
  text-decoration: none;
  color: var(--color-light);
  display: inline-block;
}
a:has(button) {
  text-decoration: none;
  color: var(--color-light);
}
h1,
h2,
h3,
header a {
  font-family: "Roboto", "Helvetica Neue", sans-serif;
}
h1 {
  font-size: 40px;
  margin-bottom: 15px;
}
h2 {
  font-size: 24px;
  margin-bottom: 15px;
}
h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 22px;
  }
  h3 {
    font-size: 18px;
  }
}
p,
li {
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  ul {
    padding-left: 10px;
  }
}
main {
  max-width: 1200px;
  margin: 0 auto;
}
section {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  section {
    margin-bottom: 30px;
  }
}

/* ////////////////////////////////////////////////////////////////////////////////////
HEADER
/////////////////////////////////////////////////////////////////////////////////////*/
header {
  margin: auto;
  background-color: var(--color-primary);
}
header.container {
  padding: 20px;
}
header nav a,
header h3 {
  color: var(--color-light);
}
header nav a {
  text-decoration: none;
  /* padding-bottom: 5px; */
  border-bottom: 1px solid var(--color-primary);
}
header nav ul {
  list-style-type: none;
  display: flex;
}
header nav ul li {
  padding: 10px 20px;
  display: flex;
  align-items: center;
}
header nav ul li.current-menu-item a {
  border-bottom: 1px solid var(--color-light);
}

header .hamburger-button,
header nav.mobile-nav,
header .mobile-nav-wrapper {
  display: none;
}
body > header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body > header > a {
  margin: 0;
  color: var(--color-light);
  text-decoration: none;
  line-height: 24px;
}
body > header > a,
.hamburger-button {
  padding: 10px 20px;
}

@media screen and (max-width: 768px) {
  body > header {
    align-items: unset;
  }
  header .hamburger-button,
  header .mobile-nav-wrapper,
  header nav.mobile-nav.show,
  header nav.mobile-nav ul {
    display: block;
  }
  header nav.desktop-nav {
    display: none;
  }
  header .hamburger-button-wrapper {
    display: flex;
    justify-content: flex-end;
  }
}

/* ////////////////////////////////////////////////////////////////////////////////////
HOME - HERO
/////////////////////////////////////////////////////////////////////////////////////*/
body.home main {
  margin: unset;
  max-width: unset;
}
.home.hero {
  margin: -30px;
  height: 85vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.home.hero .button-primary {
  margin-top: 20px;
}
.home.hero button a {
  text-decoration: none;
  color: var(--color-light);
}
.home .caption-attribution {
  width: 75%;
  display: flex;
  justify-content: flex-end;
  gap: 5px;
  position: absolute;
  bottom: 5px;
  right: 10px;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
	.home .caption-attribution .caption {
		display: none;
	}
}
/* ////////////////////////////////////////////////////////////////////////////////////
HOME - Dates
/////////////////////////////////////////////////////////////////////////////////////*/
section.events {
  margin-top: 40px;
  padding: 60px;
}
section.events .event {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-divider);
}
section.events .event.headings {
  font-weight: bold;
}
section.events .event p a {
  text-decoration: none;
  color: var(--color-text-primary);
}
section.events .event p a:hover {
  text-decoration: underline;
}
section.events .event .event-item {
  width: 120px;
}
@media screen and (max-width: 768px) {
  section.events {
    padding: 0;
  }
}
/* ////////////////////////////////////////////////////////////////////////////////////
ABOUT page
/////////////////////////////////////////////////////////////////////////////////////*/
body.page-id-31 main a {
  text-decoration: underline;
}
body.page-id-31 .text-wrapper {
  max-width: 600px;
}
body.page-id-31 .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
body.page-id-31 .grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.page-id-31 .grid h1 {
  align-self: center;
  justify-self: center;
}
body.page-id-31 .grid p {
  align-self: center;
  grid-column: 2 / span 2;
  padding: 50px;
}
body.page-id-31 .grid img:nth-of-type(8) {
  object-position: right;
}
@media screen and (max-width: 768px) {
  body.page-id-31 .grid {
    grid-template-columns: 1fr;
  }
  body.page-id-31 .grid p {
    align-self: center;
    grid-column: unset;
    padding: unset;
  }
}
/* ////////////////////////////////////////////////////////////////////////////////////
CONTACT page
/////////////////////////////////////////////////////////////////////////////////////*/
body.page-id-39 .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
body.page-id-39 .grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 500px;
}
@media screen and (max-width: 768px) {
	body.page-id-39 .grid {
		grid-template-columns: 1fr;
	}
}
/* ////////////////////////////////////////////////////////////////////////////////////
EVENT archive page
/////////////////////////////////////////////////////////////////////////////////////*/
body.post-type-archive-event .event {
  justify-content: space-around;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 80px;
}
body.post-type-archive-event .event img {
  max-width: 200px;
}
body.post-type-archive-event .event h2 {
    max-width: 350px;
}
body.post-type-archive-event .event .text-wrapper {
  width: 500px;
}
body.post-type-archive-event .event .text-wrapper .flex {
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  body.post-type-archive-event h1 {
    text-align: center;
    margin-top: 20px;
  }
  body.post-type-archive-event .event h2 {
      margin-top: 10px;
  }
  body.post-type-archive-event .event {
    flex-direction: column;
    align-items: center;
  }
  body.post-type-archive-event .event .text-wrapper .flex {
    justify-content: center;
    flex-direction: column;
  }
  body.post-type-archive-event .event .text-wrapper {
    max-width: 300px;
  }
}
/* ////////////////////////////////////////////////////////////////////////////////////
EVENT single
/////////////////////////////////////////////////////////////////////////////////////*/
body.single-event main section.single__content {
  max-width: 800px;
  margin: 0 auto;
}
body.single-event main section.single__content img {
  display: block;
  margin: 0 auto 20px;

}
body.single-event main section.single__content h1,
body.single-event main section.single__content p {
  text-align: center;
}
/* ////////////////////////////////////////////////////////////////////////////////////
404
/////////////////////////////////////////////////////////////////////////////////////*/
body.error404 main {
    text-align: center;
}
/* ////////////////////////////////////////////////////////////////////////////////////
UTILITY
/////////////////////////////////////////////////////////////////////////////////////*/
.container {
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .container {
    padding: 20px;
  }
}
/* tailwind-esque utility classes */
.text-center {
  text-align: center;
}
.inline-block {
  display: inline-block;
}
.no-underline {
  text-decoration-line: none;
}
/* flexbox */
.flex {
  display: flex;
}
.justify-center {
  justify-content: center;
}

/* color */
.bg-light {
  background-color: var(--color-light);
}
