@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/fontawesome.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/brands.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/regular.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/solid.min.css');

:root {
  --maxwidth: 100%;
  --blue: #00e0ff;
  --yellow: #ffd500;
  --pink: #ff7ad4;
  --lightblue: #b3f6ff;
  --lightpink: #ffb3e6;
  --lightyellow: #fff2b3;
  --circle-r: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xml%3Aspace%3D%22preserve%22%20style%3D%22fill-rule%3Aevenodd%3Bclip-rule%3Aevenodd%3Bstroke-linejoin%3Around%3Bstroke-miterlimit%3A2%22%20viewBox%3D%220%200%20400%20400%22%3E%3Cg%20transform%3D%22translate(-6730.74%20-741.28)scale(1.45349)%22%3E%3Cpath%20d%3D%22M4630.74%20510h275.2v275.2h-275.2z%22%20style%3D%22fill%3Anone%22%2F%3E%3CclipPath%20id%3D%22a%22%3E%3Cpath%20d%3D%22M4630.74%20510h275.2v275.2h-275.2z%22%2F%3E%3C%2FclipPath%3E%3Cg%20clip-path%3D%22url(%23a)%22%3E%3Cpath%20d%3D%22M4309.54%20435c0-220.766%20179.23-400%20400-400v400z%22%20style%3D%22fill%3A%23231f20%22%20transform%3D%22matrix(-.688%200%200%20.688%207870.9%20485.92)%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  --circle-l: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xml%3Aspace%3D%22preserve%22%20style%3D%22fill-rule%3Aevenodd%3Bclip-rule%3Aevenodd%3Bstroke-linejoin%3Around%3Bstroke-miterlimit%3A2%22%20viewBox%3D%220%200%20400%20400%22%3E%3Cg%20transform%3D%22translate(-6730.74%20-741.28)scale(1.45349)%22%3E%3Cpath%20d%3D%22M4630.74%20510h275.2v275.2h-275.2z%22%20style%3D%22fill%3Anone%22%2F%3E%3CclipPath%20id%3D%22a%22%3E%3Cpath%20d%3D%22M4630.74%20510h275.2v275.2h-275.2z%22%2F%3E%3C%2FclipPath%3E%3Cg%20clip-path%3D%22url(%23a)%22%3E%3Cpath%20d%3D%22M4309.54%20435c0-220.766%20179.23-400%20400-400v400z%22%20style%3D%22fill%3A%23231f20%22%20transform%3D%22translate(1665.78%20485.92)scale(.688)%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");

  --font-sm: .75rem;
  --font-reg: 1rem;
  --font-med: 1.5rem;
  --font-lrg: 3rem;

  --foreground: var(--blue);
  --background: var(--lightblue);
  --font-color: black;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

body {
  font-size: 20px;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

li {
  list-style-type: none;
}

/* header>.content {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

header {
  background-color: var(--foreground);
}

header .content {
  --display: flex;
  display: var(--display);
  height: 4rem;
}

header h1 {
  width: 100%;
  background-image: url("/src/imgs/logo-001.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  position: relative;
}

header h1 a {
  display: inline-block;
  text-indent: -9999px;
  width: 100%;
  height: 100%;

  &::before {
    position: absolute;
    text-indent: initial;
    content: '\2630';
    height: calc(3rem - 6px);
    aspect-ratio: 1/1;
    border: 3px solid white;
    color: white;
    left: 0;
    border-radius: .5rem;
    margin: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-med);
  }
}

header nav {
  width: 100%;
  position: absolute;
  bottom: 100vh;
  height: 100vh;

  &.show {
    bottom: 0;
  }
}

header nav ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  flex-direction: column;
  font-size: 2rem;
  padding: 4rem 0 0 0;
  background: var(--foreground);
}

header ul li {
  list-style-type: none;
  margin-bottom: 1rem;

  a {
    text-decoration: none;
    font-weight: 900;
    font-family: "Nunito", sans-serif;
    color: white;
    display: block;
    text-shadow: 1px 1px black;
  }
} */


header,
main {
  --padding-inline: 1rem;
  --content-max-width: 800px;
  --breakout-max-width: 1200px;

  --breakout-size: calc((var(--breakout-max-width) - var(--content-max-width)) / 2);

  display: grid;
  grid-template-columns:
    [full-width-start] minmax(var(--padding-inline), 1fr) [breakout-start] minmax(0, var(--breakout-size)) [content-start] min(100% - (var(--padding-inline) * 2),
      var(--content-max-width)) [content-end] minmax(0, var(--breakout-size)) [breakout-end] minmax(var(--padding-inline), 1fr) [full-width-end];

  &> :not(.breakout) {
    grid-column: content;
  }

  &>.breakout {
    grid-column: breakout;
  }

  &>.full-width {
    position: relative;
    padding: 1rem 0;

    &::after {
      content: '';
      position: absolute;
      width: 300vw;
      height: 100%;
      background: inherit;
      z-index: -1;
      top: 0;
      left: -100vw;
    }
  }
}

header {
  background: var(--foreground);

  h1 {
    width: 100%;
    background-image: url("/src/imgs/logo-001.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center right;
    position: relative;

    a {
      display: block;
      width: 100%;
      height: 100%;
      text-indent: -9999px;
    }
  }

  label {
    position: relative;
    height: 100%;
    input {
      display: none;
    }
    &:after {
      position: absolute;
      text-indent: initial;
      content: '\2630';
      height: calc(3rem - 6px);
      aspect-ratio: 1/1;
      border: 3px solid white;
      color: white;
      left: -5rem;
      border-radius: .5rem;
      margin: .5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: var(--font-med);
    }
  }

  nav {
    display: none;
    position: fixed;
    top: 4rem; /* sits beneath the header .content */
    left: 0;
    right: 0;
    bottom: 0;
    /* ensure nav fits the viewport and padding doesn't cause overflow */
    width: 100vw;
    max-width: 100vw;
    max-height: calc(100vh - 4rem);
    background: var(--foreground);
    font-family: "Nunito", sans-serif;
    box-sizing: border-box;
    z-index: 2;
    overflow: auto;
    -webkit-overflow-scrolling: touch;

    ul {
      height: 100%;
      margin: 0;
      padding: 2rem 1rem;
      box-sizing: border-box; /* make padding included in width */
      display: flex;
      flex-direction: column;
      justify-content: center; /* center the group vertically */
      gap: 2rem; /* space between links */
      align-items: center;
      list-style: none;
    }

    ul li a {
      font-family: "Nunito", sans-serif;
      font-size: var(--font-lrg);
      color: white;
      text-shadow: 1px 1px black;
      text-decoration: none;
      font-weight: 900;
      display: block;
      text-align: center;
      width: 100%;
      box-sizing: border-box;
      padding: 0.25rem 1rem;
    }
  }

/* When the nav is open (checkbox checked) lock the background page from scrolling */
body:has(header input:checked) {
  overflow: hidden;
  height: 100%;
}

  label:has(input:checked)~nav {
    display: block;
  }

  .content {
    height: 4rem;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 4rem; /* reserve space for the hamburger */
  }

  label {
    z-index: 3;
  }

  h1 {
    z-index: 1;
  }
}

main {
  *+* {
    margin-top: 1rem;
  }
}

footer {
  background: var(--background);
  margin-top: 1rem;
  padding: 1rem 0;
  text-align: center;
  font-size: var(--font-sm);
}

.btn {
  border-radius: 4rem;
  background: var(--foreground);
  width: 100%;
  color: var(--font-color);
  font-weight: 800;
  text-align: center;
  display: block;
  padding: .5rem;
  text-decoration: none;
}

.hero {
  grid-column: full-width;
  display: grid;

  .panel {
    max-width: var(--content-max-width);
    position: relative;
    padding: 1rem 0;
    grid-row: 1;
    grid-column: 1;
    opacity: 0;
    transition: opacity 400ms ease;
    pointer-events: none;
    margin-top: 0;

    &.active {
      opacity: 1;
      pointer-events: auto;
    }

    &::after {
      content: '';
      position: absolute;
      width: 300vw;
      height: 100%;
      background: var(--bg);
      z-index: -1;
      top: 0;
      left: -100vw;
    }

    .card {
      h1 {
        font-size: var(--font-lrg);
        font-weight: 900;
        font-family: "Nunito", sans-serif;
        display: block;
        text-shadow: 1px 1px black;
        line-height: 2.5rem;
      }

      h2 {
        font-family: "Nunito", sans-serif;
        display: block;
        text-shadow: 1px 1px black;
        line-height: 2rem;
      }

      &:has(img) img {
        width: auto;
        margin: 0 auto;
        max-height: 25rem;
      }
    }
  }

  .product {
    --bg: var(--bg-color);

    .card h1,
    .card h2 {
      text-shadow: none;
    }

    .card:nth-child(2) {
      background: url('/src/imgs/product-bg.png') no-repeat center center / contain;
    }
  }

  .visit {
    --bg: var(--bg-img), var(--bg-color);
  }
}

.col {
  --columns: 1;
  --col-gap: 1rem;

  display: grid;
  column-gap: var(--col-gap);
  /* row + column gap */

  /* Keep the responsive auto-fit behavior */
  grid-template-columns: repeat(auto-fit,
      minmax(calc((var(--content-max-width) - (var(--columns) - 1) * var(--col-gap)) / var(--columns)),
        1fr));

  &.x2 {
    --columns: 2;
  }

  &.x3 {
    --columns: 3;
  }

  &.x4 {
    --columns: 4;
  }

  .card:nth-child(1) {
    grid-column: 1 / -1;
    /* span all columns */
  }
}

.card.a {
  a {
    position: relative;
    display: block;
    margin-bottom: calc(1ch + 1rem);

    img {
      border-radius: 1rem;
    }

    p {
      position: absolute;
      bottom: -2ch;
      border-radius: 4rem;
      background: var(--foreground);
      padding: 1rem;
      width: 100%;
      font-weight: 800;
      text-align: center;
      color: black;
      white-space: nowrap;
      font-size: var(--font-reg);
      overflow: hidden;
      text-overflow: ellipsis;
    }
  }
}

body.home {
  .hero {
    color: white;
  }

  #contact {
    border-radius: 1rem;
    width: 100%;
    background: var(--foreground);
    padding: 1rem;

    span {
      display: block;

      label {
        display: block;
        font-weight: 800;
        font-family: "Nunito", sans-serif;
      }

      input,
      textarea {
        margin-top: 0;
        border-radius: .5rem;
        width: 100%;
        border: 0;
        padding: .5rem;
      }

      .btn {
        background: white;
        color: var(--foreground);
      }
    }
  }

  .locations,
  .events {
    background: var(--background);

    img {
      border-radius: 1rem;
    }
  }
}

body.location {
  .hero {
    color: white;
  }
}

@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }

  header nav {
    all: revert;
    width: 100%;
  }

  header h1 a {
    &::before {
      all: revert;
    }
  }

  /* Desktop: hide mobile hamburger and make nav a standard horizontal row */
  header label:after {
    display: none;
  }

  header nav ul {
    padding: 0 1rem 0 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center; /* vertically center links */
    gap: 1rem; /* 1rem between each link */
    font-size: var(--font-med);
    list-style: none;
  }

  header nav ul li a {
    font-family: "Nunito", sans-serif;
    font-size: var(--font-med);
    color: white;
    text-shadow: 1px 1px black;
    text-decoration: none;
    font-weight: 900;
    display: inline-block;
    text-align: left; /* left-align text within each link */
    padding: 0;
  }

  /* remove the mobile left padding when on desktop */
  header .content {
    padding-left: 0;
  }

  header ul li {
    margin-bottom: 0;
    margin-right: 1rem;
    white-space: nowrap;

    &:last-child {
      margin-right: 0;
    }
  }

  .hero {
    .visit {
      display: grid;
      grid-template-areas:
        "one two"
        "three two";
      grid-template-columns: 50% 1fr;

      .card:nth-child(1) {
        grid-area: one;
      }

      .card:nth-child(2) {
        grid-area: two;
      }

      .card:nth-child(3) {
        grid-area: three;
      }

      &:nth-child(even) {
        grid-template-areas:
          "two one"
          "two three";
      }
    }

    .product {
      display: grid;
      grid-template-areas:
        "one two"
        "three two";
      grid-template-columns: 50% 1fr;
      color: black;

      .card:nth-child(1) {
        grid-area: one;
      }

      .card:nth-child(2) {
        grid-area: two;
      }

      .card:nth-child(3) {
        grid-area: three;
      }
    }
  }

  body.location {
    .details {
      display: grid;
      grid-template-columns: 50% 1fr;
      grid-column-gap: 1rem;
    }
  }

  /* body.product {
    .hero {
      grid-template-areas:
        "one one"
        "two three"
        "two four";
      grid-template-columns: 50% 1fr;
      h1, h2 {
        color: black;
      }
      .card:nth-child(1){
        grid-area: one;
      }
      .card:nth-child(2){
        grid-area: two;
      }
      .card:nth-child(3){
        grid-area: three;
      }
      .card:nth-child(4){
        grid-area: four;
      }
    }
  } */
}

/* h1,
h2,
h3,
h4,
h5 {
  font-family: "Nunito", sans-serif;
}

p,
li,
label,
button {
  font-family: "Montserrat", sans-serif;
}

li {
  list-style-type: none;
}

img {
  width: 100%;
}

header>.content,
section>.content {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

header {
  background-color: var(--foreground);
}

header .content {
  --display: flex;
  display: var(--display);
  height: 4rem;
}

header h1 {
  width: 100%;
  background-image: url("/src/imgs/logo-001.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  position: relative;
}

header h1 a {
  display: inline-block;
  text-indent: -9999px;
  width: 100%;
  height: 100%;

  &::before {
    position: absolute;
    text-indent: initial;
    content: '\2630';
    height: calc(3rem - 6px);
    aspect-ratio: 1/1;
    border: 3px solid white;
    color: white;
    left: 0;
    border-radius: .5rem;
    margin: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-med);
  }
}

header nav {
  width: 100%;
  position: absolute;
  bottom: 100vh;
  height: 100vh;

  &.show {
    bottom: 0;
  }
}

header nav ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  flex-direction: column;
  font-size: 2rem;
  padding: 4rem 0 0 0;
  background: var(--foreground);
}

header ul li {
  list-style-type: none;
  margin-bottom: 1rem;

  a {
    text-decoration: none;
    font-weight: 900;
    font-family: "Nunito", sans-serif;
    color: white;
    display: block;
    text-shadow: 1px 1px black;
  }
}

section .content {
  --display: flex;
  display: var(--display);
  flex-direction: column;
}

.card {
  width: 100%;
  padding: 0 1rem 1rem;
}

.hero {
  background: var(--background);

  .card {

    &.cutout {
      border-top-left-radius: 2rem;
      border-top-right-radius: 2rem;
      background: white;
      padding: 1rem;
    }
  }
  .visit {
    background: var(--background);
    background-position: bottom center;
    background-size: cover;
    color: white;
    h1 {
      font-size: var(--font-lrg);
      font-weight: 900;
      font-family: "Nunito", sans-serif;
      color: white;
      display: block;
      text-shadow: 1px 1px black;
      line-height: 3rem;
    }
    h2 {
      font-family: "Nunito", sans-serif;
      color: white;
      display: block;
      text-shadow: 1px 1px black;
      line-height: 3rem;
    }
  }
}

.pills {
  display: flex;
  justify-content: center;
  flex-direction: column;

  >a,
  >li {
    border: 3px solid var(--foreground);
    border-radius: 3rem;
    background: var(--foreground);
    color: white;
    padding: 0 1rem;
    font-size: var(--font-reg);
    font-family: "Nunito", sans-serif;
    font-weight: 1000;
    margin-bottom: 1rem;

    &:last-child {
      margin-bottom: 0;
    }
  }
}

.banners {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  li {
    margin-bottom: 1rem;
    width: 100%;

    &:last-child {
      margin-bottom: 0;
    }

    a {
      display: flex;
      align-items: center;
      border-radius: 50rem;
      background: var(--foreground);
      padding: .5rem;
      text-decoration: none;
      font-family: "Nunito", sans-serif;
      font-size: var(--font-reg);
      font-weight: 800;
      color: white;

      img {
        width: 4rem;
        border-radius: 100%;
        margin-right: 1rem;
        aspect-ratio: 1/1;
      }
    }
  }
}

.slideshow {
  ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.btn {
  border-radius: 4rem;
  background: var(--foreground);
  width: 100%;
  color: var(--font-color);
  font-weight: 800;
  text-align: center;
  display: block;
  padding: .5rem;
  text-decoration: none;
}

.home {
  .hero {
    .content {
      --display: grid;

      .panel {
        grid-row: 1;
        grid-column: 1;
        opacity: 0;
        transition: opacity 400ms ease;
        pointer-events: none;

        &.active {
          opacity: 1;
          pointer-events: auto;
        }
      }
    }
  }

  #contact {
    margin: 1rem 0;
    border-radius: 1rem;
    background: var(--foreground);
    color: var(--font-color);
    display: flex;
    flex-direction: column;
    padding: 1rem;

    span {
      display: block;
      margin-bottom: 1rem;

      label {
        display: block;
        font-weight: 800;
      }

      textarea,
      input {
        width: 100%;
        border: 0;
        border-radius: .5rem;
        padding: .5rem;
      }

      &:last-child {
        margin-bottom: 0;
      }
    }

    .btn {
      background: black;
      --font-color: white;
    }
  }

  .locations {
    background: var(--background);

    .content {
      padding: 0 1rem;

      .card {
        text-decoration: none;
        display: grid;
        padding: 0;
        position: relative;
        margin-bottom: 1rem;

        img {
          grid-row: 1;
          grid-column: 1;
          margin-bottom: 1rem;
        }

        p {
          background: var(--foreground);
          color: black;
          border-radius: 6rem;
          position: absolute;
          bottom: 0;
          font-size: var(--font-reg);
          grid-row: 1;
          grid-column: 1;
          width: 100%;
          padding: .5rem;
          text-align: center;
        }
      }
    }
  }

  .events {
    background: var(--background);

    .content {
      padding: 0 1rem;

      .card {
        text-decoration: none;
        display: grid;
        padding: 0;
        position: relative;
        margin-bottom: 1rem;

        img {
          grid-row: 1;
          grid-column: 1;
          margin-bottom: 1rem;
        }

        p {
          background: var(--foreground);
          color: black;
          border-radius: 6rem;
          position: absolute;
          bottom: 0;
          font-size: var(--font-reg);
          grid-row: 1;
          grid-column: 1;
          width: 100%;
          padding: .5rem;
          text-align: center;
        }
      }
    }
  }
}

.products {
  .products {
    .content {
      padding: 0 1rem;

      .card {
        text-decoration: none;
        display: grid;
        padding: 0;
        position: relative;
        margin-bottom: 1rem;

        img {
          grid-row: 1;
          grid-column: 1;
        }

        h2 {
          background: var(--foreground);
          color: black;
          border-radius: 6rem;
          position: absolute;
          bottom: 0;
          font-size: var(--font-reg);
          grid-row: 1;
          grid-column: 1;
          width: 100%;
          padding: .5rem;
          text-align: center;
        }
      }
    }
  }
}

.product {
  .hero {

    h2 {
      font-size: var(--font-lrg);
      font-weight: 900;
      font-family: "Nunito", sans-serif;
      color: white;
      display: block;
      text-shadow: 1px 1px black;
      line-height: 3rem;
    }

    h3 {
      font-size: var(--font-med);
    }

    h4 {
      font-size: var(--font-lrg);
    }

    .card:nth-child(2) {
      background: url("/src/imgs/product-bg.png");
      background-repeat: no-repeat;
      background-size: contain;
      background-position: center;
    }
  }

  .details {
    p {
      margin-bottom: 1rem;

      &:last-child {
        margin-bottom: 0;
      }
    }
  }

  .videos {
    background: var(--foreground);

    ul {
      display: flex;
      flex-direction: column;

      li {
        margin-bottom: 1rem;

        &:last-child {
          margin-bottom: 0;
        }

        iframe {
          width: 100%;
          aspect-ratio: 16/9;
        }
      }
    }
  }

  .events {
    ul {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;

      li {
        margin-bottom: 1rem;

        &:last-child {
          margin-bottom: 0;
        }

        a {
          text-decoration: none;
          text-align: center;
          color: black;

          p {
            font-weight: 800;
            font-family: "Nunito", sans-serif;
          }
        }
      }
    }
  }
}

.event {
  .hero {
    h2 {
      font-size: var(--font-lrg);
      font-weight: 900;
      font-family: "Nunito", sans-serif;
      color: white;
      display: block;
      text-shadow: 1px 1px black;
      line-height: 3rem;
    }

    h3,
    h4,
    h5,
    h6 {
      font-size: var(--font-med);
    }
  }

  .rsvp {
    a {
      display: block;
      border-radius: 6rem;
      background: var(--foreground);
      color: white;
      font-size: var(--font-med);
      padding: 0 1rem;
      text-align: center;
      text-decoration: none;
      font-weight: 900;
      font-family: 'Nunito', sans-serif;
    }
  }

  .details {
    p {
      margin-bottom: 1rem;
    }
  }

  .products {
    a {
      text-decoration: none;
      display: grid;
      padding: 0;
      position: relative;
      margin-bottom: 1rem;

      img {
        grid-row: 1;
        grid-column: 1;
      }

      p {
        background: var(--foreground);
        color: black;
        border-radius: 6rem;
        position: absolute;
        bottom: 0;
        font-size: var(--font-reg);
        grid-row: 1;
        grid-column: 1;
        width: 100%;
        padding: .5rem;
        text-align: center;
      }
    }
  }

  .faq {
    li {
      margin-bottom: 1rem;
    }
  }
}

.events {
  .events {
    .content {
      padding: 0 1rem;

      .card {
        text-decoration: none;
        display: grid;
        padding: 0;
        position: relative;
        margin-bottom: 1rem;
        min-height: 10rem;

        img {
          grid-row: 1;
          grid-column: 1;
          margin-bottom: 1rem;
        }

        h2 {
          background: var(--foreground);
          color: black;
          border-radius: 6rem;
          position: absolute;
          bottom: 0;
          font-size: var(--font-reg);
          grid-row: 1;
          grid-column: 1;
          width: 100%;
          padding: .5rem;
          text-align: center;
        }
      }
    }
  }
}

.locations {
  .locations {
    .content {
      padding: 0 1rem;

      .card {
        text-decoration: none;
        display: grid;
        padding: 0;
        position: relative;
        margin-bottom: 1rem;
        min-height: 10rem;

        img {
          grid-row: 1;
          grid-column: 1;
          margin-bottom: 1rem;
        }

        h2 {
          background: var(--foreground);
          color: black;
          border-radius: 6rem;
          position: absolute;
          bottom: 0;
          font-size: var(--font-reg);
          grid-row: 1;
          grid-column: 1;
          width: 100%;
          padding: .5rem;
          text-align: center;
        }
      }
    }
  }
}

.location {
  .hero {
    h2 {
      font-size: var(--font-lrg);
      font-weight: 900;
      font-family: "Nunito", sans-serif;
      color: white;
      display: block;
      text-shadow: 1px 1px black;
      line-height: 3rem;
    }

    h3 {
      font-size: var(--font-med);
    }

    .card:nth-child(2) {
      background: url("/src/imgs/product-bg.png");
      background-repeat: repeat;
      background-size: auto;
      background-repeat: no-repeat;
      background-size: contain;
      background-position: center;
    }

    .card:nth-child(3) {
      img {
        width: 33%;
      }
    }

    .card:nth-child(5),
    .card:nth-child(6) {
      background: white;
    }
  }

  .products {
    .content {
      padding: 0 1rem;

      li {
        text-decoration: none;
        display: grid;
        padding: 0;
        position: relative;
        margin-bottom: 1rem;
        min-height: 10rem;

        img {
          grid-row: 1;
          grid-column: 1;
          margin-bottom: 1rem;
        }

        p {
          background: var(--foreground);
          color: black;
          border-radius: 6rem;
          position: absolute;
          bottom: 0;
          font-size: var(--font-reg);
          grid-row: 1;
          grid-column: 1;
          width: 100%;
          padding: .5rem;
          text-align: center;
        }
      }
    }
  }

  .events {
    .content {
      padding: 0 1rem;

      li {
        text-decoration: none;
        display: grid;
        padding: 0;
        position: relative;
        margin-bottom: 1rem;
        min-height: 10rem;

        img {
          grid-row: 1;
          grid-column: 1;
          margin-bottom: 1rem;
        }

        p {
          background: var(--foreground);
          color: black;
          border-radius: 6rem;
          position: absolute;
          bottom: 0;
          font-size: var(--font-reg);
          grid-row: 1;
          grid-column: 1;
          width: 100%;
          padding: .5rem;
          text-align: center;
        }
      }
    }
  }
}

@media screen and (min-width: 768px) {
  header nav {
    all: revert;
    width: 100%;
  }

  header h1 a {
    &::before {
      all: revert;
    }
  }

  header nav ul {
    padding: 0 1rem;
    flex-direction: row;
    font-size: var(--font-reg);
  }

  header ul li {
    margin-bottom: 0;
    margin-right: 1rem;
    white-space: nowrap;

    &:last-child {
      margin-right: 0;
    }
  }

  .card {
    padding: 1rem;
  }

  .pills {
    flex-direction: row;

    >a,
    >li {
      margin-right: 1rem;
      margin-bottom: 0;
      text-align: center;
      width: 100%;

      &:last-child {
        margin-right: 0;
      }
    }
  }

  .hero {
    .content {
      position: relative;

      .cutout {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 60%;
        border-top-left-radius: 6rem;
        border-top-right-radius: 6rem;
        padding: 1rem 2rem 0;
      }
    }
  }

  .home {
    .hero {
      .panel.visit {
        display: grid;
        grid-template-areas:
          "one two";
        grid-template-columns: 50% 1fr;
        .card:nth-child(1) {
          grid-area: one;
        }
        .card:nth-child(2) {
          grid-area: two;
        }
      }
    }
    .details {
      .content {
        display: flex;
        flex-direction: row;
      }
    }

    .locations {
      .content {
        --display: grid;
        grid-template-areas:
          "one one one"
          "two three four";

        .card:nth-child(1) {
          grid-area: one;
        }

        .card:nth-child(2) {
          grid-area: two;
        }

        .card:nth-child(3) {
          grid-area: three;
        }

        .card:nth-child(4) {
          grid-area: four;
        }
      }
    }

    .events {
      .content {
        --display: grid;
        grid-template-areas:
          "one one one"
          "two three four";

        .card:nth-child(1) {
          grid-area: one;
        }

        .card:nth-child(2) {
          grid-area: two;
        }

        .card:nth-child(3) {
          grid-area: three;
        }

        .card:nth-child(4) {
          grid-area: four;
        }
      }
    }
  }

  .product {
    .hero {
      .content {
        --display: grid;
        grid-template-areas:
          "one three"
          "two three";
        grid-template-columns: 50% 1fr;
      }

      .card:nth-child(1) {
        grid-area: one;
      }

      .card:nth-child(2) {
        grid-area: three;
      }

      .card:nth-child(3) {
        grid-area: two;
      }
    }

    .details {
      .content {
        &:has(> :nth-child(2)):not(:has(> :nth-child(3))) {
          --display: grid;
          grid-template-areas:
            "one two"
          ;
          grid-template-columns: 50% 1fr;

          .card:nth-child(1) {
            grid-area: two;
          }

          .card:nth-child(2) {
            grid-area: one;
          }
        }

        &:has(> :nth-child(3)):not(:has(> :nth-child(4))) {
          --display: grid;
          grid-template-areas:
            "one two"
            "one three";
          grid-template-columns: 50% 1fr;

          .card:nth-child(1) {
            grid-area: three;
          }

          .card:nth-child(2) {
            grid-area: one;
            align-content: center;
          }

          .card:nth-child(3) {
            grid-area: two;
          }
        }
      }
    }

    .videos {
      ul {
        flex-direction: row;

        li {
          width: 50%;
          margin-right: 1rem;
          margin-bottom: 0;

          &:last-child {
            margin-right: 0;
          }
        }
      }
    }

    .events {
      background: var(--background);

      >.content {
        --display: block;
      }

      ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        align-items: start;

        li {
          margin: initial;
        }
      }
    }
  }

  .event {
    .hero {
      .content {
        --display: grid;
        grid-template-areas:
          "one three"
          "two three";
        grid-template-columns: 50% 1fr;

        .card:nth-child(1) {
          grid-area: one;
        }

        .card:nth-child(2) {
          grid-area: three;
        }

        .card:nth-child(3) {
          grid-area: two;
        }

        .cutout {
          width: 40%;
        }
      }
    }

    .location {
      >.content {
        flex-direction: row;
      }
    }

    .products {
      &>.content {
        --display: block;

        .card {
          ul {
            display: flex;

            li {
              width: 33%;
              margin-right: 1rem;
            }
          }
        }
      }
    }
  }

  .events {
    >.content {
      --display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;

      .card {
        margin-bottom: 0;
      }
    }
  }

  .products {
    >.content {
      --display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;

      .card {
        margin-bottom: 0;
      }
    }
  }

  .locations {
    >.content {
      --display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;

      .card {
        margin-bottom: 0;
      }
    }
  }

  .location {
    .hero .content {
      --display: grid;
      grid-template-areas:
        "one five"
        "two five"
        "three five"
        "four five";
      grid-template-columns: 40% 1fr;

      .card:nth-child(1) {
        grid-area: one;
      }

      .card:nth-child(2) {
        grid-area: five;
        align-content: center;
        background: url("/src/imgs/product-bg.png");
        background-repeat: repeat;
        background-size: auto;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
      }

      .card:nth-child(3) {
        grid-area: four;

        img {
          width: 33%;
        }
      }

      .card:nth-child(5) {
        grid-area: two;
        background: initial;
      }

      .card:nth-child(6) {
        grid-area: three;
        background: initial;
      }
    }

    .products .content {
      --display: flex;

      ul {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
      }
    }

    .events .content {
      --display: flex;

      ul {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
      }
    }
  }
} */