/* --- Box sizing --- */
*, *::before, *::after {
  box-sizing: border-box;
}

/* --- Reset margins and spacing --- */
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

/* --- Typography --- */
html {
  scroll-behavior: smooth;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  font-family: system-ui, sans-serif;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  font-family: inherit;
  background-color: #fff;
  color: #000;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

b, strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

code, kbd, samp, pre {
  font-family: ui-monospace, SFMono-Regular, monospace;
  font-size: 1em;
}

abbr[title] {
  text-decoration: underline dotted;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* --- Media defaults --- */
img, picture, video, canvas, svg, iframe, embed, object {
  display: block;
  max-width: 100%;
  vertical-align: middle;
}

/* --- Forms --- */
button, input, select, textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  outline: none;
  appearance: none;
  line-height: inherit;
}

button, [type=button], [type=reset], [type=submit] {
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
  cursor: pointer;
}

textarea {
  resize: vertical;
}

[role=button] {
  cursor: pointer;
}

[disabled] {
  cursor: default;
}

/* --- Accessibility: reduced motion --- */
html:focus-within {
  scroll-behavior: auto;
}

*, *::before, *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
  scroll-behavior: auto !important;
}

#background_wrap {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: -1;
  background-image: url("/images/fireplace.jpeg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#background_wrap.pizza-oven {
  background-image: url("/images/pizza-oven.jpeg");
}
#background_wrap.campsite-kitchen {
  background-image: url("/images/campsite-kitchen.jpeg");
}
#background_wrap.mill-house {
  background-image: url("/images/mill-house.jpeg");
}
#background_wrap.mill-bench {
  background-image: url("/images/mill-bench.jpeg");
}
#background_wrap.fireplace {
  background-image: url("/images/fireplace.jpeg");
}
#background_wrap.bell-tent {
  background-image: url("/images/bell-tent.jpg");
}
#background_wrap.solid {
  background-image: unset;
  background-color: rgb(205, 227, 207);
}
#background_wrap .credit {
  position: absolute;
  bottom: 0.25rem;
  left: 0.25rem;
  color: #ffffff;
  font-weight: 100;
}
#background_wrap .credit.black {
  color: #000000;
}

#main_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.25rem 2.5rem 2.5rem 2.5rem;
}
#main_wrap header {
  width: 100vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2.5rem;
}
#main_wrap header .button {
  margin: 0 !important;
  width: 75px;
  height: 75px;
  font-size: 1.7em;
}
#main_wrap header h1 {
  font-family: "Londrina Solid", sans-serif;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 3px;
  font-size: 2rem;
  background: rgba(133, 147, 112, 0.831372549);
  border-radius: 1000px;
  padding: 0.5rem 2.5rem;
  color: #ffffff;
}
#main_wrap header .logo {
  width: 75px;
}

#content_wrap {
  display: flex;
  justify-content: space-around;
  margin-top: 1.25rem;
  flex: 1;
}
#content_wrap.home {
  flex-direction: column;
}
#content_wrap.booking {
  justify-content: space-between;
  width: 100%;
}
#content_wrap.booking .text-container {
  width: 35%;
  padding: 1.25rem;
}
#content_wrap.booking .booking-container {
  flex: 1;
  margin-left: 1.25rem;
}
#content_wrap.contact {
  flex-direction: row;
}
#content_wrap.contact form {
  margin-bottom: 1.25rem;
}
#content_wrap.contact .text-container {
  flex: 1;
}
#content_wrap.contact .text-container:last-child {
  margin-left: 1.25rem;
}
#content_wrap.contact iframe {
  width: 100%;
}
#content_wrap.contact a {
  color: white;
}
#content_wrap.booking-details {
  min-width: 60%;
}
#content_wrap.booking-details .text-container {
  width: 100%;
}
#content_wrap.mill-bench {
  flex-direction: row;
}
#content_wrap.mill-bench .text-container {
  flex: 1;
  padding: 0.75rem;
  margin-right: 2.5rem;
}
#content_wrap.mill-bench .text-container:last-child {
  margin-right: 0;
}
#content_wrap.pitches {
  flex-direction: column;
}
#content_wrap.pitches .columns {
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
}
#content_wrap.pitches .columns .first {
  margin-right: 30px;
}
#content_wrap.pitches .columns div {
  flex: 1;
}

.text-container {
  background: rgba(133, 147, 112, 0.831372549);
  border-radius: 4rem;
  width: auto;
  color: #ffffff;
  padding: 2rem;
}
.text-container .text {
  height: 100%;
}
.text-container.mill-house {
  margin: 0;
  height: fit-content;
}
.text-container.pizza-oven {
  margin-left: 40%;
}

.button-wrap {
  display: flex;
  justify-content: space-around;
}
.button-wrap.home .button {
  margin: 2rem;
}
.button-wrap.camping {
  margin-top: 2.5rem;
}
.button-wrap.camping .button {
  margin: 2.5rem;
}
.button-wrap.camping .button:first-child, .button-wrap.camping .button:last-child {
  margin-top: 10rem;
}
.button-wrap.vertical {
  flex-direction: column;
}

.button {
  font-family: "Londrina Solid", sans-serif;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 2rem;
  background: rgba(133, 147, 112, 0.831372549);
  height: 10rem;
  width: 10rem;
  border-radius: 1000px;
  text-decoration: none;
  margin: 1rem;
  text-transform: uppercase;
}
.button:hover {
  background: #444f34;
}
.button.small-font {
  font-size: 1.25rem;
  line-height: 1.25rem;
}
.button span {
  text-align: center;
  line-height: 2rem;
}

.input-wrap:not(.checkbox-wrap) {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.input-wrap:not(.checkbox-wrap) input, .input-wrap:not(.checkbox-wrap) textarea, .input-wrap:not(.checkbox-wrap) select {
  background: #b7c79f;
  padding: 2px 4px;
}
.input-wrap:not(.checkbox-wrap) textarea {
  height: 100px;
}

input[type=submit] {
  color: white;
  background: #b7c79f;
  width: 100%;
  border-radius: 1000px;
  padding: 1rem 0;
}
input[type=submit]:hover {
  background: #444f34;
}

input[type=checkbox] {
  appearance: checkbox;
}

[disabled] {
  cursor: not-allowed;
  background: #aaa !important;
  color: #605656 !important;
}

.booking-container #booking_tabs {
  display: flex;
  font-family: "Londrina Solid", sans-serif;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 3px;
  font-size: 1.5rem;
}
.booking-container #booking_tabs .tab {
  cursor: pointer;
  background: rgba(133, 147, 112, 0.831372549);
  width: auto;
  color: #ffffff;
  padding: 0.5rem 1rem;
  overflow: hidden;
}
.booking-container #booking_tabs .tab:first-child {
  border-top-left-radius: 1rem;
}
.booking-container #booking_tabs .tab:last-child {
  border-top-right-radius: 1rem;
}
.booking-container #booking_tabs .tab:not(.active) {
  background: #b7c79f;
}
.booking-container #booking_tabs .tab:not(.active):hover {
  background: #444f34;
}
.booking-container #booking_tab_content {
  background: rgba(133, 147, 112, 0.831372549);
  border-radius: 1rem;
  border-top-left-radius: 0;
  width: auto;
  color: #ffffff;
  padding: 1rem;
  overflow: hidden;
}
.booking-container #booking_tab_content .tab-content:not(.active) {
  display: none;
}
.booking-container #booking_tab_content form {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.booking-container #booking_tab_content form .input-wrap {
  margin-right: 1rem;
}
.booking-container #booking_tab_content form input[type=submit] {
  width: auto;
  padding: 0.5rem 2.5rem;
  margin-left: auto;
}
.booking-container #booking_tab_content .months {
  display: flex;
  align-items: flex-start;
}
.booking-container #booking_tab_content .months .month {
  width: 40%;
  margin: 0 auto;
}
.booking-container #booking_tab_content .months .month .calendar-header {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
}
.booking-container #booking_tab_content .months .month .calendar-header .month-label {
  width: 9.6rem;
  text-align: center;
}
.booking-container #booking_tab_content .months .month .calendar-header button {
  font-size: 2rem;
}
.booking-container #booking_tab_content .months .month .calendar-day, .booking-container #booking_tab_content .months .month .empty-day {
  width: 14.28%;
  aspect-ratio: 1/1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 1000px;
  margin: 3px;
}
.booking-container #booking_tab_content .months .month .calendar-day span, .booking-container #booking_tab_content .months .month .empty-day span {
  height: 1.5rem;
  font-size: 1rem;
}
.booking-container #booking_tab_content .months .month .calendar-day.partly-full, .booking-container #booking_tab_content .months .month .empty-day.partly-full {
  background-color: #ecab33;
}
.booking-container #booking_tab_content .months .month .calendar-day.empty, .booking-container #booking_tab_content .months .month .empty-day.empty {
  background-color: #96cf96;
}
.booking-container #booking_tab_content .months .month .calendar-day.selected, .booking-container #booking_tab_content .months .month .empty-day.selected {
  background-color: #223c09 !important;
}
.booking-container #booking_tab_content .months .month .calendar-day.unavailable, .booking-container #booking_tab_content .months .month .empty-day.unavailable {
  background-color: #6b6b6b !important;
}
.booking-container #booking_tab_content .months .month .calendar-day:hover:not(.empty-day):not(.unavailable), .booking-container #booking_tab_content .months .month .empty-day:hover:not(.empty-day):not(.unavailable) {
  cursor: pointer;
  background-color: #406d16;
}

#payment-form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 20px 20%;
}
#payment-form button {
  padding: 0.5rem;
  background: #444f34;
  border-radius: 300px;
  width: 100%;
  margin-top: 25px;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f0f0f0;
}
body .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  padding: 10px;
}
body img {
  width: 100%;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.2s;
}
body img:hover {
  transform: scale(1.05);
}
body .lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  flex-direction: column;
}
body .lightbox img {
  max-width: 90vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  border-radius: 8px;
}
body img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 8px;
}
body .caption {
  color: #fff;
  margin-top: 10px;
  font-size: 1.2rem;
}
body .lightbox:target {
  display: flex;
}

@media screen and (max-width: 900px) {
  h1 {
    text-align: center;
  }
  .home, .camping {
    flex-direction: column;
  }
  .home .button, .camping .button {
    margin: 5px !important;
  }
  #content_wrap {
    flex-direction: column;
  }
  #content_wrap.mill-bench, #content_wrap.contact, #content_wrap.booking {
    flex-direction: column !important;
  }
  #content_wrap.mill-bench .text-container, #content_wrap.contact .text-container, #content_wrap.booking .text-container {
    width: auto;
    margin: 10px !important;
  }
  #content_wrap.home {
    width: 100%;
  }
  .button-wrap.vertical {
    flex-direction: row;
  }
  .button-wrap.home {
    flex-wrap: wrap !important;
    flex-direction: row;
  }
  .text-container.mill-house {
    margin: 5px;
  }
  .text-container.pizza-oven {
    margin: 5px;
  }
  .booking-container form {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 600px) {
  #main_wrap {
    padding: 10px;
  }
  .button-wrap.vertical .button {
    font-size: 12px;
    width: 6rem;
    height: 6rem;
  }
  .button-wrap.vertical .button span {
    line-height: 1em;
  }
  #main_wrap header {
    padding: 0 0.5rem;
  }
  #main_wrap header a {
    font-size: 16px !important;
  }
  #main_wrap header h1 {
    font-size: 18px !important;
  }
  .button-wrap.home {
    flex-wrap: wrap !important;
  }
}
html, body {
  width: 100vw;
  height: 100vh;
  font-family: "Nunito Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100, "YTLC" 500;
}

p, ul {
  font-size: 1.15rem;
}

p {
  margin-top: 10px;
  margin-bottom: 5px;
}

h3 {
  font-family: "Londrina Solid", sans-serif;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 3px;
  font-size: 2rem;
  text-align: center;
  margin-top: 15px;
}

h4 {
  font-family: "Londrina Solid", sans-serif;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 3px;
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 15px;
}