
@font-face {
  font-family: 'Haunting Attraction';
  src: url('./fonts/HauntingAttraction.ttf') format('truetype');
  font-weight: light;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Tenor Sans';
  src: url('./fonts/TenorSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #08090D;
  --brown: #8C5B30;
  --orange: #F2762E;
  --clay: #D97A43;
  --red: #F24535;
}

*, *::before, *::after {
  box-sizing: border-box;
}

h1 {
    font-size: 64px;
    font-family: 'Haunting Attraction', sans-serif;
}

h2 {
    font-size: 48px;
    font-family: 'Haunting Attraction', sans-serif;
}

h3 {
    font-size: 36px;
    font-family: 'Haunting Attraction', sans-serif;
    justify-content: flex-start;
    color: var(--orange);
    margin: 0 0 20px 0;
}

p {
  font-family: 'Tenor Sans', serif;
  justify-content: flex-start;
  font-size: 18px;
  line-height: 1.6;
  margin: 10px 0 20px 0;
  max-width: 1200px;
}

.site-main {
  display: flex;
  flex-direction: column;
}

.site-header {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  width: 100vw;
  max-width: none;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: -21px;
  padding: 1.5rem 3rem;
  background: linear-gradient(135deg, var(--ink), var(--brown));
  border: 1px solid var(--orange);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.site-title {
  flex: 1 1 420px;
  min-width: 260px;
}

.site-title h1,
.site-title h2 {
  margin: 20px 0 20px 20px;
  font-family: 'Haunting Attraction', sans-serif;
}

.header-subtitle {
  margin: 20px 0 20px 20px;
  font-size: 24px;
  letter-spacing: 1px;
  font-family: 'Haunting Attraction', sans-serif;
  justify-content: center;
  align-items: center;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  flex: 1 1 280px;
  margin: 0;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

.site-nav li {
  margin: 0;
}

.site-nav a {
  color: var(--clay);
  text-decoration: none;
  padding: 0.55rem 0.9rem;
  font-family: 'Haunting Attraction', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.1;
}

.site-nav a:hover,
.site-nav a.active {
  background-color: rgba(8, 9, 13, 0.55);
  color: var(--orange);
  border-radius: 8px;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--orange);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.site-logo {
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 4px solid var(--orange);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  max-width: 140px;
  max-height: 140px;
}

body {
    margin: 0;
    padding: 6px 12px;
    background-color: var(--ink);
    font-family: 'Tenor Sans', sans-serif;
    color: var(--clay);
    display: flex;
    flex-direction: column;
}

main {
  max-width: 1450px;
  margin: 10px auto;
  padding: 6px 12px;
}

.schedule-header {
  justify-content: flex-start;
  font-size: 64px;
  font-family: 'Haunting Attraction', sans-serif;
  margin: 100px 0 50px 50px;
}

.events {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.event-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  margin: 0 0 1rem;
}

.filter-label {
  font-family: 'Haunting Attraction', sans-serif;
  font-size: 1.15rem;
  color: var(--clay);
  margin-right: 0.2rem;
}

.filter-btn {
  border: 1px solid var(--orange);
  background: var(--ink);
  color: var(--orange);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font-family: 'Tenor Sans', sans-serif;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--orange);
  color: var(--ink);
}

.event-card {
  background: rgba(140, 91, 48, 0.2);
  border: 1px solid var(--brown);
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.event-content {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr;
  gap: 1.25rem;
  align-items: center;
}

.event-card.is-hidden {
  display: none;
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 0.6rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--orange);
  color: var(--ink);
  padding: 0.3rem 0.6rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.event-info h3 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  margin: 0 0 0.45rem;
}

.event-meta {
  margin: 0 0 0.6rem;
  color: var(--orange);
  font-weight: 700;
}

.event-summary {
  margin: 0 0 0.6rem;
  font-size: 1.02rem;
}

.event-details {
  margin-top: 0.6rem;
}

.event-label {
  margin: 0 0 0.35rem;
  font-family: 'Haunting Attraction', sans-serif;
  font-size: 1.05rem;
  color: var(--clay);
}

.event-highlights {
  margin: 0;
  padding-left: 1.1rem;
}

.event-highlights li {
  margin-bottom: 0.4rem;
}

.event-highlights a {
  color: var(--orange);
}

.event-img {
  display: flex;
  justify-content: center;
}

.event-img img {
  width: 100%;
  max-width: 340px;
  height: auto;
  margin: 0;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  display: block;
}

img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 800px) {
  .schedule-header {
    margin: 60px 0 10px 0;
  }

  .event-filters {
    margin-bottom: 0.8rem;
  }

  .event-content {
    grid-template-columns: 1fr;
  }

  .event-card {
    padding: 1rem;
  }

  .event-img {
    order: -1;
  }
}

@media (max-width: 375px) {
  .event-info h3 {
    font-size: 1.4rem;
  }

  .event-summary,
  .event-details,
  .event-highlights li {
    font-size: 0.95rem;
  }
}

.header-actions,
.important-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: 100%;
}

.header-actions ul,
.important-buttons ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  width: 100%;
}

.header-actions li,
.important-buttons li {
  margin: 0;
}

.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1.75rem;
  max-width: 1100px;
  margin: 2rem auto 3rem auto;
  padding: 2rem;
  background: rgba(140, 91, 48, 0.2);
  border: 1px solid var(--brown);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.about img {
 width: 100%;
  max-width: 340px;
  height: auto;
  margin: 0;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  display: block;
}

.about h1,
.about h2 {
  width: 100%;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.about p {
  width: 100%;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--clay);
  text-align: left;
}

@media (max-width: 900px) {
  .about {
    padding: 1.5rem;
  }
}

@media (max-width: 700px) {
  .about {
    padding: 1rem;
  }

  .about p {
    font-size: 0.95rem;
  }
}

footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  max-width: none;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 1.5rem;
  padding: 1.5rem 3rem;
  border-radius: 18px;
  border: 1px solid var(--orange);
  background: linear-gradient(135deg, var(--ink), var(--brown));
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  color: var(--clay);
  font-family: 'Tenor Sans', sans-serif;
}

footer a {
  color: var(--clay);
  text-decoration: none;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

footer a:hover {
  color: var(--orange);
  text-decoration: underline;
}

footer .left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 0;
  flex: 1 1 320px;
  min-width: 220px;
}

footer .left p {
  margin: 0;
  color: inherit;
}

.footer-logo {
  display: flex;
  flex: 1 1 320px;
  justify-content: center;
  align-items: center;
  min-width: 220px;
}

.footer-logo img {
  width: auto;
  max-width: 180px;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

.social-media {
  display: flex;
  flex: 1 1 320px;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
}

.social-media a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--orange);
  border: 2px solid var(--clay);
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-media a:hover {
  transform: translateY(-2px);
  background: var(--red);
}

.social-media img {
  width: 24px;
  height: 24px;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
}

@media (max-width: 700px) {
  .site-header,
  footer {
    padding: 1rem 1.5rem;
  }

  .site-header {
    flex-direction: column;
    align-items: center;
  }

  .site-title,
  .site-nav,
  .header-actions,
  footer .left,
  .footer-logo,
  .social-media {
    width: 100%;
  }

  .site-nav,
  .header-actions,
  .social-media {
    justify-content: center;
  }

  .site-nav ul,
  .header-actions ul {
    justify-content: center;
    gap: 0.6rem;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }

  .social-media {
    margin-top: 0.8rem;
  }
}

@media (max-width: 900px) {
  .site-header {
    justify-content: center;
    text-align: center;
    padding: 1.25rem;
  }

  .site-title,
  .site-nav,
  .site-logo,
  .header-actions {
    width: 100%;
  }

  .site-nav {
    justify-content: center;
  }

  .site-nav ul,
  .header-actions ul {
    justify-content: center;
  }

  .header-subtitle {
    margin-left: 0;
  }

  .header-actions ul {
    gap: 0.6rem;
  }
}

@media (max-width: 600px) {
  .site-header,
  footer,
  main {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .site-nav a {
    font-size: 1rem;
    padding: 0.55rem 0.75rem;
  }

  .schedule-header {
    margin: 3rem 0 1rem 0;
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .event-card {
    padding: 1rem;
  }

  .event-img img {
    max-width: 100%;
  }
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  max-width: 1100px;
  margin: 2rem auto 3rem auto;
  padding: 2rem;
  background: rgba(140, 91, 48, 0.2);
  border: 1px solid var(--brown);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.contact h1,
.contact h2 {
  width: 100%;
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.8rem);
  text-align: center;
}

.contact p {
  width: 100%;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--clay);
  text-align: left;
}

.contact form {
  width: 100%;
}

.contact fieldset {
  border: 1px solid var(--brown);
  border-radius: 18px;
  padding: 1.5rem;
  background: var(--ink);
}

.contact legend {
  font-family: 'Haunting Attraction', sans-serif;
  font-size: 1.5rem;
  padding: 0 0.5rem;
}

.contact label,
.contact input,
.contact textarea {
  width: 100%;
  font-family: 'Tenor Sans', serif;
}

.contact label {
  margin-top: 1rem;
  font-weight: 700;
}

.contact input,
.contact textarea {
  margin-top: 0.5rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--brown);
  border-radius: 12px;
  background: rgba(140, 91, 48, 0.2);
}

.contact input[type="submit"] {
  width: auto;
  margin-top: 1rem;
  background-color: var(--red);
  color: var(--ink);
  border-color: var(--orange);
  font-weight: 700;
}

.contact a {
  margin: 0px 0 20px 0;
}

@media (max-width: 900px) {
  .contact {
    padding: 1.5rem;
  }
}

@media (max-width: 700px) {
  .contact {
    padding: 1rem;
  }

  .contact p {
    font-size: 0.95rem;
  }

  .contact legend {
    font-size: 1.25rem;
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  text-decoration: none;
  padding: 0.75rem 1rem;
  font-family: 'Haunting Attraction', sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  line-height: 1;
  background-color: var(--orange);
  border: 1px solid var(--orange);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.button:hover {
  background-color: var(--red);
  transform: translateY(-1px);
}

:where(a, button, input, textarea, select):focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.page-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  max-width: 1100px;
  margin: 2rem auto 3rem auto;
  padding: 2rem;
  background: rgba(140, 91, 48, 0.2);
  border: 1px solid var(--brown);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.page-card h1,
.page-card h2,
.page-card h3,
.page-card h4 {
  width: 100%;
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.8rem);
  text-align: center;
}

.page-card p,
.page-card ul {
  width: 100%;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--clay);
  text-align: left;
}

.page-card ul li {
  margin-bottom: 0.5rem;
}

.page-card ul {
  padding-left: 1.2rem;
}

.page-card form {
  width: 100%;
}

.page-card fieldset {
  border: 1px solid var(--brown);
  border-radius: 18px;
  padding: 1.5rem;
  background: var(--ink);
}

.page-card legend {
  font-family: 'Haunting Attraction', sans-serif;
  font-size: 1.5rem;
  padding: 0 0.5rem;
}

.page-card label,
.page-card input,
.page-card textarea,
.page-card select {
  width: 100%;
  font-family: 'Tenor Sans', serif;
}

.page-card label {
  margin-top: 1rem;
  font-weight: 700;
}

.page-card input,
.page-card textarea,
.page-card select {
  margin-top: 0.5rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--brown);
  border-radius: 12px;
  background: rgba(140, 91, 48, 0.2);
}

.page-card input[type="submit"] {
  width: auto;
  margin-top: 1rem;
  background-color: var(--red);
  color: var(--ink);
  border-color: var(--orange);
  font-weight: 700;
}

.page-card label + input,
.page-card label + textarea,
.page-card label + select {
  margin-top: 0.5rem;
}

.sponsor-form {
  align-items: stretch;
}

.sponsor-form h1 {
  text-align: center;
}

.sponsor-form-wrapper {
  width: 100%;
  min-height: 1200px;
  background: var(--ink);
  border: 1px solid var(--brown);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(20, 20, 20, 0.03);
}

.sponsor-form-wrapper iframe {
  display: block;
  width: 100%;
  min-height: 1200px;
  border: 0;
  background: var(--ink);
}

@media (max-width: 900px) {
  .page-card {
    padding: 1.5rem;
  }

  .sponsor-form-wrapper,
  .sponsor-form-wrapper iframe {
    min-height: 1100px;
  }
}

@media (max-width: 700px) {
  .page-card {
    padding: 1rem;
  }

  .page-card p {
    font-size: 0.95rem;
  }

  .page-card legend {
    font-size: 1.25rem;
  }
}

@media (max-width: 800px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .site-title,
  .site-nav,
  .site-logo {
    justify-self: center;
    text-align: center;
  }

  .site-nav ul {
    justify-content: center;
    flex-wrap: wrap;
  }

  

  .fall-fest > p,
  .fall-fest-copy,
  .fall-fest-image {
   
    justify-self: start;
  }
}

@media (max-width: 375px) {
  .site-nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-nav a {
    font-size: 1rem;
  }
}