/* Basic CSS Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  font-size: 100%; /* Or simply leave it blank to respect user default */
}

body {
  color: #333;
  font-family: sans-serif;
  font-size: 16px;
  line-height: 22px;
}

.site-title {
  font-family: "Questrial", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.25rem;
  text-decoration: none;
  color: #333333;
}

.break {
  display: block;
}

header.site-header {
  padding-top: 1rem;
}

.header-container {
  padding: 0.25rem;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-nav {
  border-bottom: 2px solid #333333;
  margin-bottom: 2rem;
}

.menu-icon {
  display: block;
  width: 30px;
  height: 20px;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.menu-icon span {
  display: block;
  height: 2px;
  width: 100%;
  background: #333333;
  position: relative;
  top: 9px;
}
.menu-icon span::before, .menu-icon span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #333333;
  left: 0;
}
.menu-icon span::before {
  top: -8px;
}
.menu-icon span::after {
  top: 8px;
}

.menu {
  display: none;
}

.menu.is-open {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: white;
  z-index: 10;
}
.menu.is-open a {
  font-size: 2rem;
  padding: 1rem 1rem 0.25rem 1rem;
  border: none;
  color: #333333;
  text-decoration: none;
}
.menu.is-open a:hover {
  background: #333333;
  color: #fff;
}
.menu.is-open a.selected {
  border-bottom: 1px solid #333333;
}

.home h2 {
  text-align: center;
}
.home .logo {
  width: 100%;
  max-width: 175px;
  display: block;
  margin: 0 auto 1rem auto;
}

@media (min-width: 768px) {
  .break {
    display: inline;
  }
  .home h2 {
    text-align: left;
  }
  .home .logo {
    max-width: 12rem;
    float: right;
    margin-left: 1rem;
    margin-top: 3rem;
  }
  .home h3 {
    clear: both;
  }
  .header-container {
    display: block;
  }
  .header-container h1 {
    display: block;
    text-align: center;
  }
  .site-nav {
    border-bottom: 2px solid #333333;
    border-top: 2px solid #333333;
    padding: 1rem 0;
    margin: 1rem 0 3rem 0;
  }
  .menu-icon {
    display: none;
  }
  .menu {
    display: block;
    text-align: center;
  }
  .menu a {
    border-right: 1px solid #333333;
    padding: 0.5rem;
    color: #333333;
    font-family: "Questrial", sans-serif;
    text-decoration: none;
    font-size: initial;
  }
  .menu a:hover {
    background: #333333;
    color: #fff;
  }
  .menu a.selected {
    font-weight: bold;
  }
  .menu a:last-child {
    border-right: 0;
  }
  .menu.is-open {
    display: block;
    position: static;
    width: auto;
    height: auto;
    background: none;
    flex-direction: row;
    justify-content: initial;
    align-items: initial;
  }
}
main {
  max-width: 900px;
  margin: 0 auto;
}
main .container {
  padding: 0 1rem;
}

p {
  margin: 1rem 0;
}

ul {
  padding: 0 1rem; /* Inner spacing */
  list-style-type: disc; /* Ensure default disc style */
}

ul li {
  margin: 5px 0; /* Spacing between list items */
  color: #333333; /* Darker text color for readability */
  line-height: 1.4; /* Improved readability with more vertical space */
}

.hero {
  width: 100%;
  border-top-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
  margin: 0 0 2rem 0;
}

h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 2.1rem;
}

h3 {
  font-size: 1.75rem;
  border-left: 0.5rem solid #333333;
  padding: 0.5rem;
  margin: 1rem 0;
  line-height: 1.85rem;
}

.site-footer {
  background-color: #333333;
  color: #fff;
  border-top: 0.3rem solid #333333;
  margin-top: 3rem;
}
.site-footer .footer-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-wrap: wrap;
}
.site-footer .footer-col {
  flex: 1 1 50%;
  padding: 0 1rem;
  box-sizing: border-box;
  /* Added text-align: center for mobile */
  text-align: left;
}
.site-footer {
  /* Target the "Follow Us" column (second .footer-col) */
}
.site-footer .footer-col:nth-child(2) {
  /* Right align for desktop */
  text-align: right;
}
.site-footer .footer-col:last-child {
  flex-basis: 100%;
  text-align: center;
  padding-top: 1rem; /* Add some space above copyright */
}
.site-footer h3 {
  font-size: 1.25rem;
  margin: 0.25rem 0; /* Reduced margin */
  border-left: none;
  padding-left: 0;
  /* On desktop, align left for first column, right for second */
}
@media (min-width: 768px) {
  .site-footer h3 {
    text-align: left; /* Default for first col */
  }
}
.site-footer {
  /* Specific alignment for the second h3 on desktop */
}
@media (min-width: 768px) {
  .site-footer .footer-col:nth-child(2) h3 {
    text-align: right;
  }
}
.site-footer ul {
  list-style: none;
  padding: 0;
}
.site-footer li {
  margin-bottom: 0.25rem; /* Reduced margin */
}
.site-footer a {
  color: #fff;
  text-decoration: none;
}
.site-footer a:hover {
  color: #ccc;
}

.home hr {
  margin: 1rem 0;
}

.flyer-card {
  position: relative;
  background-color: #1e1f23;
  color: #ffffff;
  padding: 3rem 1.5rem 2.5rem 1.5rem;
  margin: 0 0 2.5rem 0;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.flyer-card h1, .flyer-card h2, .flyer-card h3 {
  border: none;
  padding: 0;
  margin: 0;
  background: none;
  line-height: 1.15;
}
.flyer-card .flyer-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}
.flyer-card .flyer-title-main {
  font-family: "Pirata One", "Germania One", cursive, serif;
  font-size: 3rem;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 0.2rem;
  font-weight: normal;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.flyer-card .flyer-title-sub,
.flyer-card .flyer-title-fest {
  font-family: "Germania One", "Playfair Display", serif;
  text-align: center;
  font-size: 2.5rem;
  line-height: 1.15;
  color: #ffffff;
  font-weight: normal;
  font-style: italic;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.flyer-card .flyer-title-fest {
  margin-bottom: 1.5rem;
}
.flyer-card .flyer-graphic {
  margin: 1.25rem auto 1.75rem auto;
}
.flyer-card .flyer-graphic .flyer-heart-img {
  max-width: 330px;
  width: 82%;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}
.flyer-card .flyer-activities {
  font-family: "Germania One", "Playfair Display", serif;
  font-size: 1.45rem;
  line-height: 1.35;
  color: #ffffff;
  margin: 0 0 1.25rem 0;
  letter-spacing: 0.02em;
}
.flyer-card .flyer-tagline {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1.55rem;
  line-height: 1.3;
  color: #ffffff;
  margin: 0 0 2rem 0;
  letter-spacing: 0.03em;
}
.flyer-card .flyer-join {
  font-family: "Pirata One", "Germania One", serif;
  font-size: 2.4rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-weight: normal;
  letter-spacing: 0.03em;
}
.flyer-card .flyer-dates {
  font-family: "Germania One", "Playfair Display", serif;
  font-size: 1.45rem;
  line-height: 1.35;
  color: #ffffff;
  margin: 0 0 2rem 0;
  letter-spacing: 0.02em;
}
.flyer-card .flyer-info-text {
  font-family: "Germania One", sans-serif;
  font-size: 1.2rem;
  color: #ffffff;
  margin: 0 0 0.25rem 0;
}
.flyer-card .flyer-link {
  font-family: "Germania One", "Playfair Display", serif;
  font-size: 1.35rem;
  color: #ffffff;
  text-decoration: underline;
  word-break: break-word;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.flyer-card .flyer-link:hover {
  color: #dddddd;
  opacity: 0.9;
}
.flyer-card .flyer-checkerboard {
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: 85px;
  height: 85px;
  pointer-events: none;
}
.flyer-card .flyer-checkerboard.flyer-checker-left {
  left: 0;
}
.flyer-card .flyer-checkerboard.flyer-checker-right {
  right: 0;
}
@media (max-width: 600px) {
  .flyer-card {
    padding: 2rem 1rem 2rem 1rem;
  }
  .flyer-card .flyer-title-main {
    font-size: 2.2rem;
  }
  .flyer-card .flyer-title-sub,
  .flyer-card .flyer-title-fest {
    font-size: 1.9rem;
  }
  .flyer-card .flyer-heart-img {
    max-width: 250px;
  }
  .flyer-card .flyer-activities {
    font-size: 1.25rem;
  }
  .flyer-card .flyer-tagline {
    font-size: 1.3rem;
  }
  .flyer-card .flyer-join {
    font-size: 1.95rem;
  }
  .flyer-card .flyer-dates {
    font-size: 1.25rem;
  }
  .flyer-card .flyer-info-text {
    font-size: 1.05rem;
  }
  .flyer-card .flyer-link {
    font-size: 1.15rem;
  }
  .flyer-card .flyer-checkerboard {
    width: 55px;
    height: 55px;
  }
}

/*# sourceMappingURL=styles.css.map */