@charset "UTF-8";
/* ========================================
   Variables
======================================== */
/* ========================================
   Base and Reset
======================================== */
*, *::before, *::after {
  box-sizing: border-box; }

html {
  font-size: 19px;
  background: #aba475;
  background: fixed linear-gradient(160deg, #aba475 29%, #dedbcd 50%, #9e976c 70%); }
  @media (max-width: 1025px) {
    html {
      font-size: 16px; } }

body {
  margin: 3vw auto;
  font-family: "Nunito Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-optical-sizing: auto;
  line-height: 1.6;
  color: #444;
  background-color: #fafafa;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  max-width: 980px; }
  @media (max-width: 1025px) {
    body {
      font-size: 16px;
      margin: 36px; } }
  @media (max-width: 768px) {
    body {
      margin: 18px; } }

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px; }
  img.unleashed {
    max-width: unset;
    width: 100%;
    aspect-ratio: 400 / 169; }
  @media (max-width: 768px) {
    img.mobile {
      aspect-ratio: 4 / 3;
      object-fit: cover;
      object-position: 0 9%; } }

.hidden {
  display: none; }

/* ========================================
   Links & Buttons
======================================== */
a {
  color: #df4805;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 0.5px;
  transition: color 0.2s ease; }
  a:hover {
    text-decoration: none; }
  a.button {
    display: inline-block;
    margin-top: 20px;
    padding: 0.6em 1.5em;
    border-radius: 9999px;
    border: 2px solid transparent;
    background-color: #df4805;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    text-decoration: none; }
    a.button:hover {
      background-color: #ad3804;
      transform: translateY(-2px); }
    a.button:focus {
      outline: 3px solid #fdb89a;
      outline-offset: 2px; }
    a.button:active {
      transform: translateY(0);
      background-color: #943003; }
  a[href*="maps.app.goo.gl"] {
    position: relative;
    padding-left: 1.2em; }
    a[href*="maps.app.goo.gl"]::before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      width: 1.1em;
      height: 1.1em;
      transform: translateY(-50%);
      background: no-repeat center/contain url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='%23df4805' viewBox='0 0 24 24'><path d='M12 2C8.14 2 5 5.14 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.86-3.14-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5S10.62 6.5 12 6.5s2.5 1.12 2.5 2.5S13.38 11.5 12 11.5z'/></svg>"); }

/* ========================================
   Header with Two Rows & Toggle Nav
======================================== */
header {
  display: grid;
  grid-template-rows: auto auto;
  justify-items: center;
  row-gap: 1.5rem;
  padding: 1rem 2rem;
  background-color: #fff;
  border-bottom: 1px solid #dedbcd;
  border-radius: 20px 20px 0 0;
  position: relative;
  align-items: center; }
  header .logo {
    grid-row: 1; }
    header .logo img {
      height: 185px;
      width: auto; }
  header nav {
    grid-row: 2;
    width: 100%; }
    header nav ul {
      display: flex;
      justify-content: center;
      list-style: none;
      gap: 4rem;
      margin: 0;
      padding: 0; }
    header nav a {
      font-weight: 700;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      border-bottom: 2px solid transparent;
      text-decoration: none;
      padding-bottom: 2px;
      transition: border-bottom-color 0.2s ease; }
      header nav a:hover {
        border-bottom-color: #df4805; }
      header nav a.current {
        color: #000;
        border-bottom-color: #df4805; }
  header .nav-toggle {
    display: none; }
  @media (max-width: 1025px) {
    header {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      /* Toggle button base */
      /* SVG sizing (optional) */
      /* Lines shared styles */
      /* Closed state (hamburger) — default, no changes needed */
      /* Open state: when the button has .active */
      /* morph into X */ }
      header .logo img {
        height: 80px; }
      header nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-10px);
        transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
        border-top: 1px solid #e0e0e0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        background-color: #df4805; }
        header nav.nav-open {
          max-height: 500px;
          opacity: 1;
          transform: translateY(0); }
        header nav ul {
          flex-direction: column;
          gap: 0;
          padding: 1rem 0; }
          header nav ul li {
            padding: 0.75rem 2rem; }
            header nav ul li a {
              display: block;
              color: rgba(255, 255, 255, 0.8); }
              header nav ul li a.current {
                color: #fff;
                border-bottom-color: #fff; }
      header .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        padding: 6px;
        border: none;
        background: transparent;
        cursor: pointer;
        color: #444;
        /* uses your existing variable */
        transition: transform 0.2s ease; }
      header .nav-icon {
        display: block;
        width: 28px;
        height: 24px; }
      header .nav-icon__line {
        transform-origin: center;
        transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1), opacity 0.25s ease; }
      header .nav-toggle.active {
        color: #df4805;
        /* change color when open if desired */ }
      header .nav-toggle.active .nav-icon__line--top {
        transform: translateY(7px) translateX(-6px) rotate(45deg); }
      header .nav-toggle.active .nav-icon__line--mid {
        opacity: 0;
        transform: scaleX(0.8); }
      header .nav-toggle.active .nav-icon__line--bot {
        transform: translateY(-6px) translateX(-6px) rotate(-45deg); } }

/* ========================================
   Main Content
======================================== */
main {
  max-width: 880px;
  margin: 2rem auto 4rem;
  padding: 0 1.5rem;
  min-height: 20vh; }
  main h1, main h2, main h3 {
    line-height: 1.2;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-weight: 900;
    color: #7f784d;
    background: -webkit-linear-gradient(0deg, #aba475, #7f784d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; }
    main h1 span, main h2 span, main h3 span {
      display: block;
      font-size: 66%;
      font-weight: 700; }
      @media (min-width: 768px) {
        main h1 span, main h2 span, main h3 span {
          display: inline-block;
          margin-left: 15px; } }
  main h1 {
    font-size: clamp(1.8rem, 4vw + 1rem, 2.5rem);
    margin-bottom: 1rem; }
  main h2 {
    font-size: clamp(1.5rem, 3vw + 0.8rem, 2rem);
    margin-bottom: 0.75rem; }
  main h3 {
    margin-bottom: 8px; }
  main p, main ul {
    margin-top: 0; }
  main hr {
    background: #dedbcd;
    margin: 30px 0; }
  main .intro {
    font-size: 120%;
    font-weight: 600; }
  @media (min-width: 768px) {
    main .row {
      display: flex;
      gap: 60px; } }
  main .row .col {
    width: 100%; }
    main .row .col p {
      font-size: 99%; }
    main .row .col h3 {
      margin: 6px 0; }
    main .row .col img {
      margin-bottom: 15px; }
  main ol {
    list-style: none;
    padding: 0; }
    main ol li {
      padding-bottom: 15px; }
  main dl.event-details dd {
    font-weight: 700;
    padding-bottom: 25px;
    margin: 0; }
  main address {
    font-style: normal; }
  main dl.home {
    margin-top: 2.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1rem;
    background-color: #df4805;
    color: #fff;
    font-size: 90%; }
    main dl.home dt, main dl.home dd {
      padding: 0 0.5rem 1rem; }
    main dl.home dt {
      padding-bottom: 0; }
    main dl.home dd {
      font-weight: 700;
      margin-bottom: 12px;
      margin-left: 0; }
    main dl.home a {
      color: #fff; }
    @media (min-width: 768px) {
      main dl.home {
        display: grid;
        grid-template-columns: max-content 1fr;
        row-gap: 0.75rem;
        column-gap: 0;
        align-items: start;
        padding: 1rem 1.5rem; }
        main dl.home dt, main dl.home dd {
          padding: 0.25rem 0.5rem 1rem; }
        main dl.home dt, main dl.home dd {
          border-bottom: 1px solid #eaeaea; }
          main dl.home dt:last-of-type, main dl.home dd:last-of-type {
            border-bottom: none;
            padding-bottom: 0.5rem; }
        main dl.home dt {
          text-align: right; }
        main dl.home dd {
          text-align: left;
          margin: 0; } }

/* ========================================
   Footer
======================================== */
footer {
  background-color: #7f784d;
  border-top: 1px solid #e0e0e0;
  text-align: center;
  padding: 1.5rem;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  border-radius: 0 0 20px 20px;
  font-size: 90%; }
  footer img {
    max-width: 150px;
    margin: 0 auto 20px; }
    @media (min-width: 768px) {
      footer img {
        max-width: 240px;
        margin-bottom: 30px; } }
  footer a {
    color: #fff;
    font-weight: 500; }

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