/*
Theme Name: shorties
*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
/* Basic reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

@property --shape-auto-rotation {
  syntax: "<angle>";
  inherits: true;
  initial-value: 0deg;
}
@keyframes shape-auto-rotate {
  from {
    --shape-auto-rotation: 0deg;
  }
  to {
    --shape-auto-rotation: 360deg;
  }
}
html {
  --shape-auto-rotation: 0deg;
  --home-corner-rotation: 20deg;
  --home-square-rotation: -27deg;
  --home-peach-rotation-offset: 68deg;
  --home-pink-rotation-offset: -72deg;
}

@media (prefers-reduced-motion: reduce) {
  html {
    animation: none;
  }
}
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #FCF4ED;
  --site-nav-offset: 6.5rem;
  padding-top: var(--site-nav-offset);
  scroll-padding-top: calc(var(--site-nav-offset) + 0.5rem);
}

p + h2 {
  margin-top: 1rem;
}

/* Breakpoints */
@font-face {
  font-family: "National Park";
  src: url("/wp-content/themes/shorties/fonts/NationalPark-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: block;
}
body {
  font-family: "National Park", sans-serif;
}

.transition-fade {
  opacity: 1;
}

html.is-changing .transition-fade {
  transition: opacity 0.14s ease;
  will-change: opacity;
}

html.is-animating .transition-fade {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  html.is-changing .transition-fade {
    transition: none;
  }
}
/* Wireframe navigation */
nav {
  --nav-top-offset: 1rem;
  --nav-current-top: var(--nav-top-offset);
  width: min(1100px, 100% - 2rem);
  position: fixed;
  top: var(--nav-current-top);
  left: 50%;
  z-index: 1000;
  margin: 0;
  padding: 0.65rem;
  border-radius: 0.9rem;
  background: #ffb3d2;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 1;
  transform: translate3d(-50%, 0, 0);
  transition: transform 0.25s ease, opacity 0.25s ease;
  will-change: transform;
}

body.admin-bar nav {
  --nav-current-top: calc(var(--nav-top-offset) + 32px);
}

@media screen and (max-width: 782px) {
  body.admin-bar nav {
    --nav-current-top: calc(var(--nav-top-offset) + 46px);
  }
}
nav.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, calc(-100% - var(--nav-current-top) - 0.75rem), 0);
}

nav .site-logo {
  margin: 0;
  line-height: 1;
  display: flex;
  align-items: center;
}

nav .site-logo a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #1f1f1f;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

nav .site-logo a:hover,
nav .site-logo a:focus-visible {
  background: transparent;
  color: #1f1f1f;
}

nav .nav-toggle {
  display: none;
  border-radius: 0.55rem;
  background: #FF6840;
  color: #1f1f1f;
  padding: 0.5rem;
  width: 2.4rem;
  height: 2.4rem;
  cursor: pointer;
  border: none;
}

nav .nav-toggle__icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.22rem;
}

nav .nav-toggle__icon span {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: #1f1f1f;
  border-radius: 99px;
}

nav .nav-toggle__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

nav .nav-close {
  display: none;
  border-radius: 0.55rem;
  background: #FF6840;
  color: #1f1f1f;
  padding: 0.5rem;
  width: 2.4rem;
  height: 2.4rem;
  cursor: pointer;
  border: none;
}

nav .nav-close__icon {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: square;
  stroke-linejoin: miter;
  fill: none;
  transform: translateX(1px);
}

nav ul,
nav .menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-left: auto;
}

nav li {
  margin: 0;
}

nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.8rem;
  border: 0;
  border-radius: 0.55rem;
  background: transparent;
  text-decoration: none;
  color: #1f1f1f;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.2;
  transition: all 0.2s ease, color 0.2s ease;
}

nav a:hover,
nav a:focus-visible,
nav .current-menu-item > a,
nav .current_page_item > a {
  background: #a9ccff;
  color: #000;
  outline: none;
}

nav .nav-menu > .btn,
nav .nav-menu > .menu-item.btn,
nav .nav-menu > li:has(> a.btn),
nav .menu > .btn,
nav .menu > .menu-item.btn,
nav .menu > li:has(> a.btn) {
  margin-left: auto;
}

nav .btn > a,
nav .menu-item.btn > a,
nav a.btn {
  padding: 0.52rem 0.9rem;
  border: 1px solid #FF6840;
  border-radius: 999px;
  color: #000;
  font-weight: 600;
  background: #22b573;
  border-color: #22b573;
}

nav .btn > a:hover,
nav .btn > a:focus-visible,
nav .menu-item.btn > a:hover,
nav .menu-item.btn > a:focus-visible,
nav a.btn:hover,
nav a.btn:focus-visible {
  background: #FF6840;
  border-color: #FF6840;
  color: #000;
}

body.nav-open {
  overflow: auto;
}

@media (max-width: 899px) {
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: fixed;
  }
  nav .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  nav.is-open .nav-toggle {
    display: none;
  }
  nav.is-open .nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  nav #primary-menu,
  nav .nav-menu,
  nav .menu {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 0;
    margin-top: 0;
    margin-left: 0;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
    transition: max-height 0.2s ease, opacity 0.2s ease, visibility 0.2s ease, margin-top 0.2s ease;
  }
  nav.is-open #primary-menu,
  nav.is-open .nav-menu,
  nav.is-open .menu {
    display: flex;
    max-height: 70vh;
    margin-top: 0.3rem;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  nav li,
  nav .nav-menu > .btn,
  nav .nav-menu > .menu-item.btn,
  nav .nav-menu > li:has(> a.btn),
  nav .menu > .btn,
  nav .menu > .menu-item.btn,
  nav .menu > li:has(> a.btn) {
    margin-left: 0;
  }
  nav a,
  nav .btn > a,
  nav .menu-item.btn > a,
  nav a.btn {
    font-size: 1rem;
    padding: 0.6rem 1rem;
  }
}
@media (max-width: 599px) {
  nav {
    --nav-top-offset: 0.6rem;
    width: calc(100% - 1.2rem);
    margin: 0;
    padding: 0.55rem;
  }
  nav ul,
  nav .menu {
    gap: 0.4rem;
  }
  nav a {
    padding: 0.45rem 0.65rem;
    font-size: 0.9rem;
  }
}
/* Home page template */
.page-home {
  position: relative;
  width: min(1100px, 100% - 2rem);
  margin: 0 auto 2rem;
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  html {
    animation: shape-auto-rotate 45s linear infinite;
  }
  html::before {
    content: "";
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 70px;
    height: 70px;
    background: #FFBA7B;
    pointer-events: none;
    transform-origin: center;
    transform: rotate(calc(var(--home-square-rotation) + var(--home-peach-rotation-offset) + var(--shape-auto-rotation)));
    will-change: transform;
    z-index: 10;
  }
  html::after {
    content: "";
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 70px;
    height: 70px;
    background: #ffb3d2;
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
    pointer-events: none;
    transform-origin: center;
    transform: rotate(calc(var(--home-corner-rotation) + var(--home-pink-rotation-offset) + var(--shape-auto-rotation)));
    will-change: transform;
    z-index: 10;
  }
  body::before {
    content: "";
    position: fixed;
    top: 20px;
    left: 20px;
    width: 70px;
    height: 70px;
    background: #22b573;
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
    pointer-events: none;
    transform-origin: center;
    transform: rotate(calc(var(--home-corner-rotation) + var(--shape-auto-rotation)));
    will-change: transform;
    z-index: 10;
  }
  body::after {
    content: "";
    position: fixed;
    top: 20px;
    right: 20px;
    width: 70px;
    height: 70px;
    background: #a9ccff;
    pointer-events: none;
    transform-origin: center;
    transform: rotate(calc(var(--home-square-rotation) + var(--shape-auto-rotation)));
    will-change: transform;
    z-index: 10;
  }
}
iframe {
  border-radius: 0.9rem;
}

.page-home section {
  border-radius: 0.9rem;
  background: #FCF4ED;
  padding: 1.2rem;
  display: grid;
  gap: 0.75rem;
}

.page-home h1,
.page-home h2 {
  margin: 0;
  line-height: 1.2;
  color: #1f1f1f;
}

.page-home h1 {
  font-size: clamp(1.5rem, 4vw, 2.1rem);
}

.page-home h2 {
  font-size: clamp(1.15rem, 3vw, 1.45rem);
}

.page-home p {
  margin: 0;
  line-height: 1.55;
  color: #2f2f2f;
  max-width: 65ch;
}

.page-home img {
  width: 100%;
  height: auto;
  border-radius: 0.7rem;
  object-fit: cover;
}

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.52rem 0.9rem;
  border: 1px solid #FF6840;
  border-radius: 999px;
  background: #FF6840;
  color: #000;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.9rem;
  line-height: 1.2;
}

.page-home .btn:hover,
.page-home .btn:focus-visible {
  background: #FCF4ED;
  border-color: #FF6840;
  color: #FF6840;
}

.page-home .home-hero .hero-subheading {
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: black;
  font-weight: 500;
  margin-top: 0.35rem;
  margin-bottom: -0.75rem;
}

.page-home .home-about,
.page-home .home-info {
  display: flex;
  gap: 1rem;
  align-items: start;
}

.page-home .home-about .home-about-content,
.page-home .home-info .home-info-content {
  flex: 1.1;
  min-width: 0;
  display: grid;
  gap: 0.75rem;
}

.page-home .home-about img,
.page-home .home-info img {
  flex: 1;
  min-width: 0;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 599px) {
  .page-home {
    width: calc(100% - 1.2rem);
    margin-bottom: 1.25rem;
    gap: 0.75rem;
  }
  .page-home section {
    padding: 0.9rem;
  }
  .page-home .home-about,
  .page-home .home-info {
    flex-direction: column;
  }
  .page-home .home-info {
    flex-direction: column-reverse;
  }
  .page-home .home-about .home-about-content,
  .page-home .home-about img,
  .page-home .home-info .home-info-content,
  .page-home .home-info img {
    width: 100%;
    height: auto;
  }
}
/* About page template */
.page-about {
  width: min(1100px, 100% - 2rem);
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.page-about section {
  border-radius: 0.9rem;
  background: #FCF4ED;
  padding: 1.2rem;
  display: grid;
  align-content: start;
  gap: 0.75rem;
}

.page-about .about-intro,
.page-about .about-links {
  grid-column: 1/-1;
}

.page-about .about-equipment {
  grid-column: 1;
  grid-row: 2;
}

.page-about .about-hours {
  grid-column: 2;
  grid-row: 2;
}

.page-about h1,
.page-about h2 {
  margin: 0;
  line-height: 1.2;
  color: #1f1f1f;
}

.page-about h1 {
  font-size: clamp(1.5rem, 4vw, 2.1rem);
}

.page-about h2 {
  font-size: clamp(1.15rem, 3vw, 1.45rem);
}

.page-about p,
.page-about li {
  line-height: 1.55;
  color: #2f2f2f;
}

section ul {
  list-style-position: inside;
}

.page-about p,
.page-about ul {
  margin: 0;
}

.page-about ul {
  padding-left: 1.1rem;
  display: grid;
  gap: 0.3rem;
}

.page-about img {
  width: 100%;
  height: auto;
  border-radius: 0.7rem;
  object-fit: contain;
}

.about-image,
.info-image {
  margin-left: auto;
}
@media (max-width: 599px) {
  .about-image,
  .info-image {
    max-width: 80%;
    margin: 0 auto;
  }
}

.page-about .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.52rem 0.9rem;
  border: 1px solid #FF6840;
  border-radius: 999px;
  background: #FF6840;
  color: #000;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.9rem;
  line-height: 1.2;
}

.page-about .btn:hover,
.page-about .btn:focus-visible {
  background: #FCF4ED;
  border-color: #FF6840;
  color: #FF6840;
}

.page-about .about-links a:not(.btn) {
  color: #1f1f1f;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 599px) {
  .page-about {
    width: calc(100% - 1.2rem);
    margin-bottom: 1.25rem;
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .page-about section {
    padding: 0.9rem;
  }
  .page-about .about-intro,
  .page-about .about-hours,
  .page-about .about-equipment,
  .page-about .about-links {
    grid-column: auto;
    grid-row: auto;
  }
}
/* Contact page template */
.page-contact {
  width: min(1100px, 100% - 2rem);
  margin: 0 auto 2rem;
  display: grid;
  gap: 1rem 2rem;
}

.page-contact section {
  border-radius: 0.9rem;
  background: #FCF4ED;
  padding: 1.2rem;
  display: grid;
  gap: 0.75rem;
}

.page-contact .contact-side {
  display: grid;
  gap: 1rem;
}

.page-contact h1,
.page-contact h2 {
  margin: 0;
  line-height: 1.2;
  color: #1f1f1f;
}

.page-contact h1 {
  font-size: clamp(1.5rem, 4vw, 2.1rem);
}

.page-contact h2 {
  font-size: clamp(1.15rem, 3vw, 1.45rem);
}

.page-contact p,
.page-contact li {
  line-height: 1.55;
  color: #2f2f2f;
}

.page-contact p,
.page-contact ul {
  margin: 0;
}

.page-contact ul {
  padding-left: 1.1rem;
  display: grid;
  gap: 0.3rem;
}

.page-contact .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.52rem 0.9rem;
  border: 1px solid #FF6840;
  border-radius: 999px;
  background: #FF6840;
  color: #000;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.9rem;
  line-height: 1.2;
}

.page-contact .btn:hover,
.page-contact .btn:focus-visible {
  background: #FCF4ED;
  border-color: #FF6840;
  color: #FF6840;
}

.page-contact a:not(.btn) {
  color: #1f1f1f;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-contact .contact-quick {
  display: grid;
  gap: 0.35rem;
  padding: 0.6rem 0;
  border-radius: 0.7rem;
  background: #FCF4ED;
}

.page-contact .contact-quick p {
  margin: 0;
}

.page-contact .wpcf7-form {
  display: grid;
  gap: 0.6rem;
}

.page-contact .wpcf7-form input,
.page-contact .wpcf7-form textarea,
.page-contact .wpcf7-form select {
  width: 100%;
  border-radius: 0.55rem;
  padding: 0.6rem 0.7rem;
  background: #FCF4ED;
  color: #1f1f1f;
  border: 1px solid #000;
}

.page-contact .wpcf7-form input[type=submit] {
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.52rem 0.9rem;
  border: 1px solid #FF6840;
  border-radius: 999px;
  background: #FF6840;
  color: #000;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
}

.page-contact .wpcf7-form input[type=submit]:hover,
.page-contact .wpcf7-form input[type=submit]:focus-visible {
  background: #FCF4ED;
  color: #FF6840;
}

@media (min-width: 900px) {
  .page-contact {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
  }
  .page-contact .contact-intro {
    grid-column: 1/-1;
  }
  .page-contact .contact-form-block {
    grid-column: 1;
    grid-row: 2;
  }
  .page-contact .contact-side {
    grid-column: 2;
    grid-row: 2;
  }
}
@media (max-width: 599px) {
  .page-contact {
    width: calc(100% - 1.2rem);
    margin-bottom: 1.25rem;
    gap: 0.75rem;
  }
  .page-contact section {
    padding: 0.9rem;
  }
}
/* Book page template */
.page-book {
  width: min(1100px, 100% - 2rem);
  margin: 0 auto 2rem;
  display: grid;
  gap: 1rem;
}

.page-book section {
  border-radius: 0.9rem 0;
  background: #FCF4ED;
  padding: 1.2rem;
  display: grid;
  gap: 0.75rem;
}

.page-book h1,
.page-book h2 {
  margin: 0;
  line-height: 1.2;
  color: #1f1f1f;
}

.page-book h1 {
  font-size: clamp(1.5rem, 4vw, 2.1rem);
}

.page-book h2 {
  font-size: clamp(1.15rem, 3vw, 1.45rem);
}

.page-book p {
  margin: 0;
  line-height: 1.55;
  color: #2f2f2f;
}

.page-book .book-embed__placeholder {
  min-height: 360px;
  border: 1px dashed #bfbfbf;
  border-radius: 0.7rem;
  background: #fafafa;
  padding: 1rem;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 0.25rem;
}

@media (max-width: 599px) {
  .page-book {
    width: calc(100% - 1.2rem);
    margin-bottom: 1.25rem;
    gap: 0.75rem;
  }
  .page-book section {
    padding: 0.9rem;
  }
  .page-book .book-embed__placeholder {
    min-height: 280px;
  }
}
/* Default page template */
.page-default {
  width: min(1100px, 100% - 2rem);
  margin: 0 auto 2rem;
  display: grid;
  gap: 1rem;
}

.page-default__content {
  border-radius: 0.9rem;
  background: #FCF4ED;
  padding: 1.2rem;
  display: grid;
  gap: 0.75rem;
}

.page-default .entry-title {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  line-height: 1.2;
  color: #1f1f1f;
}

.page-default .entry-content {
  display: grid;
  gap: 0.75rem;
}

.page-default .entry-content p,
.page-default .entry-content li {
  line-height: 1.55;
  color: #2f2f2f;
}

.page-default .entry-content p,
.site-main section p,
section p {
  max-width: 65ch;
}

.page-default .entry-content img {
  width: 100%;
  height: auto;
  border-radius: 0.7rem;
}

@media (max-width: 599px) {
  .page-default {
    width: calc(100% - 1.2rem);
    margin-bottom: 1.25rem;
  }
  .page-default__content {
    padding: 0.9rem;
  }
}
/* Footer */
.site-footer {
  width: min(1100px, 100% - 2rem);
  margin: 1.25rem auto 1rem;
  border-radius: 0.9rem;
  background: #FFBA7B;
  padding: 0.9rem;
  margin-top: 83px;
}

.site-footer__inner {
  display: grid;
  gap: 0.75rem;
}

.site-footer__address {
  margin: 0.35rem 0 0.6rem;
  text-align: center;
  color: #2f2f2f;
  font-size: 1.05rem;
  line-height: 1.45;
}

.footer-menu {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 0 0 0.6rem;
  padding: 0;
}

.footer-menu li {
  margin: 0;
}

.footer-menu a {
  display: inline;
  padding: 0;
  border-radius: 0;
  text-decoration: none;
  color: #1f1f1f;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
  font-weight: 500;
}

.footer-menu a:hover,
.footer-menu a:focus-visible {
  color: #000;
  text-decoration: underline;
}

.site-footer__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  color: #2f2f2f;
  font-size: 0.85rem;
  margin: 0;
}

.site-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.site-credit a {
  color: #1f1f1f;
  text-decoration: none;
  font-weight: 600;
}

.site-credit a:hover,
.site-credit a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 599px) {
  .site-footer {
    width: calc(100% - 1.2rem);
    padding: 0.7rem;
    margin-top: 83px;
  }
  .footer-menu {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.35rem;
  }
  .site-footer__address {
    text-align: left;
  }
  .site-footer__meta {
    flex-direction: column;
    align-items: flex-start;
  }
}
.site-footer__logo {
  margin-left: auto;
  margin-right: auto;
  margin-top: -83px;
}

main section.contact-hours,
main section.contact-location,
main section.about-hours {
  background-color: #FFBA7B;
  padding: 1.2rem;
}

main section.contact-location {
  background: #ffb3d2;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-radius: 0.9rem;
  background: #FFBA7B;
  padding: 0.9rem;
  border: none;
  margin: 0;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-radius: 0.9rem;
  background: #22b573;
  padding: 0.9rem;
  border: none;
  margin: 0;
}
