:root {
    --laf-pink: #F2878A;
    --laf-blue: #87CEE9; 
    --laf-pale-blue: #cbe8f3;
    --laf-brown: #2B1A10;
    --laf-gray: #706363;
    --laf-green: #24712C;
    --laf-mint: #e8fdea;
}

* {
	box-sizing: border-box;
	line-height: 1.5;
}

a {
  color: var(--laf-brown);
}

body {
	display: flex;
	min-height: 100vh;
	flex-direction: column;
	background-size: cover;
	background-color: #ead9cf;
}

.content-block ul {
	padding-left: 20px;
}

.mark {
	width: min(17vw, 100px);
	height: min(17vw, 100px);
	padding: 7px;
	border-radius: 50%;
	background-color: var(--laf-blue);
	border-radius: 50%;
	box-shadow: 0 0 0 8px var(--laf-green), 0 0 0 12px var(--laf-pink);
	position: relative;
	margin: 10px 20px;
	top: 10px;
	grid-area: mark;
  z-index: 99;
}

h1, h2, h3 {
	font-family: phoreuscherokee, sans-serif;
}

.header * {
  color: var(--laf-brown);
}

.header {
	margin: 0;
	width: 100%;
  background-color: white;
  float: left;
  height: 120px;
  border-bottom: 1px solid var(--laf-brown);
}

@media (width < 550px) {
  .header {
    height: 24vw;
  }
  .small-nav-open .main.navigation {
    top: 24vw !important;
  }
}

.logo {
  float: left;
  cursor: pointer;
}

.header__title {
  float: right;
}


.main.navigation {
  display: none;
}


@media (width > 1070px) { 
  .main.navigation {
    display: block;
    border-bottom: 1px solid white;
    border-radius: 0;
    height: 31px;
    padding-left: 8px;
    margin: 41px 10px auto auto;
    float: right;
  }

  .main.navigation .close {
    display: none;
  }

  .hamburger {
    display: none;
  }
}

@media (width <= 1070px) {
  .main.navigation {
    display: none;
    background-color: var(--laf-blue);
  }

  .main.navigation li {
    display: block;
    margin: 12px;
  }

  .main.navigation ul {
    margin: 0 15px;
  }

  .hamburger {
    display: block;
    float: right;
    font-size: 40px;
    padding: 20px 40px;
    cursor: pointer;
  }

  .small-nav-open .hamburger {
    display: none;
  }

  .small-nav-open .main.navigation {
    display: block;
    position: absolute;
    top: 120px;
    width: 100%;
  }
  .small-nav-open .main.navigation .close {
    display: block;
    float: right;
  }
}

.header__title {
	margin: auto;
	text-align: right;
	grid-area: title;
}

.header__title h1 {
	margin: 35px auto 0;
	text-transform: uppercase;
	font-size: min(5.5vw, 28px); 
	line-height: 1.2;
}

@media (width < 600px) {
  .header__title h1 {
    margin-top: 6vw;
    font-size: min(5.5vw, 28px); 
  }
}

.header__title h2 {
	font-style: italic;
	font-size: 4vw;
	margin-top: -1vw;
}


@media (min-width: 480px){
	.header__title h2 {
		margin-top: -10px;
		font-size: 18px;
	}
}

.navigation {
	grid-area: nav;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}


.navigation li {
	display: inline-flex;
	align-items: center;
	justify-content: center;
  position: relative;
}

.navigation ul {
  padding: 0;
  margin: 0;
}

.navigation :is(a, input) {
	width: 100%;
	font-family: phoreuscherokee, sans-serif;
	padding: 2px 11px 4px;
  background-color: transparent;
  text-decoration: none;
  border: none;
}

@media (min-width: 400px) {
	.navigation {
		flex-direction: row;
	}
	.navigation a {
		width: auto;
	}
}

.navigation .top-level:hover :is(a, input) {
	color: var(--laf-green);
}

.main {
	text-align: center;
	flex: 1;
}

.content-block {
	margin: 21px auto;
	max-width: 760px;
	text-align: left;
	padding: 5px 20px;
	background-color: #ecf8fd;
	border-radius: 10px;
	height: 100%;
}

footer {
	background-color: var(--laf-blue);
	width: 100%;
}

.introduction__title {
	margin-top: 0;
	padding-top: 20px;
}

.join-button {
  background-color: var(--laf-green);
  padding: 3px 6px;
  border-radius: 5px;
  color: white;
	text-decoration: none;
  font-family: phoreuscherokee;
}

.join-button:hover {
  background-color: var(--laf-blue);

}

.join-button a {
  color: white;
}

.join-button:hover a {
  color: var(--laf-brown);
}

.cta {
	margin: 21px;
}

.contact h2 {
	padding-top: 21px !important;
}

.logo-signup input {
	border: 0 !important;
	border-radius: 4px;
  padding: 6px 12px;
}

.logo-signup input[type=submit] {
	font-family: phoreuscherokee;
	background-color: var(--laf-green);
  color: white;
}

.contact__interest {
	padding: 0;
	margin: 0;
}

.contact__interest li {
	display: inline-block;
	list-style: none;
	margin-right: 15px;
}

table {
	width: 100%;
}

table th, table td {
	padding: 5px 20px;
}

@media (max-width:529px) {
	.header {
		width: 100%;
	}
	.content-block {
		margin-top:0;
	}
}

.popup {
  display:none;
}

.active.popup {
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(200,200,200, 0.5);
  top: 0;
  left: 0;
}

.active.popup .modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  border-radius: 10px;
}

.popup-inner {
  margin: 20px 30px;
}

.popup-inner a {
  background-color: white;
  text-decoration: underline;
}

.close-popup {
  float: right;
}

.popup-inner p {
  clear: right;
}

td.money {
  text-align: right;
}

tr.tax {
    border-top: 1px solid black;
}
tr.total {
    font-weight: bold;
}

#mc_embed_signup_scroll ul {
  list-style-type: none;
  padding-left: 0;
}

#mc_embed_signup_scroll ul input {
  margin-right: 5px;
}

.mc-field-group {
  padding: 4px 0;
}

.indicates-required {
  text-align: right;
  font-size: 11px;
  margin-right: 4%;
}

.asterisk {
  color: #e85c41;
  font-size: 150%;
  font-weight: normal;
  position: relative;
  top: 5px;
}

div.mce_inline_error {
  display: inline-block;
  margin: 2px 0 1em 0;
  padding: 3px;
  background-color: rgba(255,255,255,0.85);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: normal;
  z-index: 1;
  color: #e85c41;
}

input.mce_inline_error {
  border: 2px solid #e85c41;
}

.content-block #mc-embedded-subscribe {
  margin-left: 0;
  background-color: var(--laf-green);
  color: white;
  font-family: phoreuscherokee, sans-serif;
  border: none;
  border-radius: 5px;
  padding: 5px 10px;
}

.st2{fill:#FFFFFF;}
.st3{fill:none;}
.st4{fill:#FFFFFF;stroke:#000000;stroke-miterlimit:10;}
.st5{fill:none;stroke:#000000;stroke-width:4;stroke-miterlimit:10;}
.st6{fill:#C1C1C1;stroke:#C1C1C1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.gate{display:none;}
.gate.show{display:initial;}
.st8{display:inline;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
circle {display:none;}
circle.post {display:initial;}
circle.gate{
fill:var(--laf-pink) !important;
stroke:#74070a !important;
}
circle.line{
fill:var(--laf-blue);
stroke:#03506d;
}
.paddock{
  stroke:none;
  fill:#b6eabb;
}
.paddock.in-use{
fill:var(--laf-green);stroke:#392315;stroke-miterlimit:10;
}
.next{stroke:#392315;stroke-miterlimit:10;}
circle {
  fill:#392315;
  stroke:#392315;
  stroke-miterlimit:10;
}
#control{cursor:pointer;}
#explanation {height: 100px; width: 75%;}

#holzerwood,#colmonton {
fill:none;
stroke:#392315;
stroke-width:4;stroke-miterlimit:10;
}

#barn,#courtyard {
  stroke:#392315;
  stroke-width: 1;
}

#barn {
  fill:#392315;
}

.blur #barn, .blur #courtyard {
  display: none;
}

#colmonton .area {
  fill:#b6eabb;
}

#holzerwood.blur,#colmonton.blur .area {
  fill:#b6eabb;
  stroke:#b6eabb;
}
#holzerwood.focus,#colmonton.focus .area {
  fill: #93d69a;
  stroke:#93d69a;
}

#colmonton.blur .field rect {
  fill:#b6eabb;
  stroke:#b6eabb;
}

.field rect { 
  fill: #709574;
  stroke: #709574;
}

.field circle {
  stroke: none;
}

.field .forage {
  fill:var(--laf-green);
  stroke:#392315;
  stroke-miterlimit:10;
  scale: 100% 90%;
}

.field.intensive rect { 
  fill:green;
  stroke:#392315;
}

.calendar-day {
  height: 150px;
  transition: all 0.2s ease;
  position: relative;
  width: 14.28%; /* Equal width for all 7 days (100% ÷ 7) */
  border: 1px solid #dee2e6; /* Add consistent border to calendar days */
}

.demo {
  margin-top: -120px;
}

#speed {
  margin: 6px 15px;
  accent-color: #392315;
  direction: rtl;
}

#demo-nav {
  margin: 0;
  padding: 0;
  display: flex;
}

#demo-nav li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 33%;
}

#demo-nav .active {
	background-color: #24712d;
  color: white;
}

#demo-nav a {
  padding: 4px 10px;
  border-radius: 10px;
  text-decoration: none;
}

#demo-nav li:hover a {
	background-color: var(--laf-pink);
	color: white;
}

#toolbar {
  background-color: #7f614f;
  padding: 10px 15px;
  border-radius: 10px;
  margin-top: 15px;
}

#toolbar label, #toolbar input  {
  float:right;
  color: white;
}
#toolbar button {
  width: 60px;
  border: none;
  border-radius: 10px;
}

.pressed {
  background-color: gray;
  cursor: default;
}


img.flower-share {
 width: 32%;
}

.padding-global {
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: 20px;
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
}

.padding-global h2 {
	margin: 0;
	padding-top: 25px;
}

.padding-global:is(.index, .find-us, .flock, .login) {
  align-items: center;
  display: flex;
}

.padding-global:is(.index, .find-us, .flock) .photo-background-thing {
  color: white;
}

.padding-global:is(.login, .signup-form) .heading-block {
  color: white;
}

.how-we-farm .padding-global:not(:first-of-type) .heading-block h2 {
  font-size: min(6vw, 2em);
}

.how-we-farm .padding-global:not(:last-of-type) .photo-background-thing {
  border-bottom: var(--laf-gray) solid 1px;
  padding-bottom: 20px;
}

.heading-block p {
  font-weight: normal;
  font-size: 24px !important;
}

.heading-block.detailed h2 {
	font-size: min(7vw, 2.5em);
}

.heading-block.detailed :is(p, li, td) {
	text-align: left;
	font-size: min(4vw, 18px) !important;
}

.heading-block.detailed td.subtotal {
	text-align: right;
}

.padding-global.index {
	background-image: linear-gradient(#00000080, #00000080), url("barn.jpg");
  min-height: 100svh;
  max-height: 60rem;
}

.padding-global.find-us {
	background-image: linear-gradient(#00000080, #00000080), url("stand.jpg");
  min-height: 100svh;
  max-height: 60rem;
;
}

.padding-global.signup-form {
	background-image: linear-gradient(#00000080, #00000080), url("chestnuts.jpg");
  min-height: 72svh;
}

@media (width < 500px) {
	background-image: linear-gradient(#00000080, #00000080), url("chestnuts-mobile.jpeg");
}

.odd {
  background-color: var(--laf-green);
}

.login .description-block, .description-block.heavy {
  text-align: left;
}

@media (min-width: 900px) {
  .photo-background-thing {
    grid-column-gap: 3rem;
    grid-row-gap: 4rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: center;
    display: grid;
    flex: 1;
  }
}

.photo-background-thing h2 {
  font-size: min(9vw, 3em);
}

.photo-background-thing {
  font-size: min(5vw, 24px);
  font-family: PhoreusCherokee;
  color: var(--laf-brown);
  text-align: center;
}

.photo-background-thing a {
  color: white;
}

.member-base .photo-background-thing {
	color: var(--laf-brown);
	align-items: normal;
}

.member-base .photo-background-thing a {
	color: var(--laf-brown);
}

.member-base .photo-background-thing a:hover {
	color: var(--laf-green);
}

.index__cta {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.index__cta li {
  font-size: max(2vw, 30px);
  display: inline-block;
  flex: 1;
}


@media (width > 1035px) {
	.index__cta li {
		font-size: max(2vw, 20px);
	}
  .index__cta li:last-of-type {
    margin-left: 20px;
  }
}

@media (width <= 1035px) {
	.index__cta {
		display: block;
	}
  .index__cta li {
		display: block;
		width: 100%;
  }
  .index__cta li:last-of-type {
    margin-top: 20px;
  }
}


.index__cta .join-button {
  padding: 5px 20px;
  text-decoration: none;
  font-family: PhoreusCherokee;
}

.padding-global.footer {
  padding-top: 50px;
  padding-bottom: 50px;
}

.footer__content {
  text-align: center;
}

.logo-signup {
  text-align: center;
}

@media (min-width: 860px) {
  .footer__content {
    display: grid;
    grid-column-gap: 8vw;
    grid-row-gap: 1rem;
    grid-template-rows: auto;
    grid-template-columns: .75fr 1fr;
    align-items: start;
    text-align: left;
  }
  
  .logo-signup {
    text-align: left;
  }
}
@media (550px < width < 860px) {
  .logo-signup {
    padding: 50px;
}
}

.footer__content h3 {
  font-size: 36px;
  margin-top: 0;
}

.footer img {
  width: 190px;
  height: 190px;
}

@media (min-width: 380px) {
  .contact-follow {
    display: grid;
    grid-column-gap: 8vw;
    grid-row-gap: 1rem;
    grid-template-rows: auto;
    grid-template-columns: .75fr 1fr;
    align-items: start;
    margin-top: 20px;
  }
}

@media (width <= 470px) {
  .hamburger {
    padding: 20px 10px 20px 0;
  }
}

@media (width <= 470px) {
  .hamburger {
    padding: 2.5vw 10px 20px 0;
  }
}

.contact address {
  font-style: normal;
}

.follow img {
  width: 35px;
  height: 35px;
}

.follow ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.follow li * {
  display: inline-flex;
}

.follow a {
  text-decoration: none;
  align-items: center;
}

.follow h4 {
  font-family: phoreuscherokee;
  font-weight: normal;
  font-size: 20px;
  margin: 10px 20px;
}

.footer__copyright {
  margin-top: 40px;
  border-top: var(--laf-brown) 1px solid;
  padding-top: 30px;
  font-family: phoreuscherokee;
}

@media (width > 900px) {
  .mtg-photos {
    display:flex;
  }

  .mtg-photos div {
    flex: 1;
  }
}
@media (600px < width <= 900px) {
  .mtg-photos {
    display:grid;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
  }
}

@media (width < 600px) {
  .mtg-photos div:not(:last-of-type) {
    margin-bottom: 20px;
  }
}

.mtg-photos div {
  margin: 5px;
  padding: 10px;
  background-color: white;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
}


.mtg-photos img {
  max-width: 100%;
}

.mtg-photos h3 {
  font-family: "adobe-handwriting-ernie", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  font-size: 30px;
  margin: 10px;
}

:is(.heading-block, .description-block) .join-button {
  text-decoration: none;
  padding: 10px 40px;
  width: 100%;
  display: block;
  text-align: center;
	color: white !important;
}

:is(.member-base main, .signup-form) form,
.description-block > p.standalone {
  background-color: var(--laf-mint);
  color: var(--laf-brown);
  padding: 20px 30px;
  margin: 20px;
  border-radius: 10px;
}

.signup-form a {
  color: var(--laf-brown);
}

:is(.member-base main, .signup-form) :is(label, legend, p) {
  font-size: 16px;
}

:is(.member-base main, .signup-form) label {
  width: 125px;
  display: inline-block;
  text-align: left;
  float: left;
}

:is(.member-base main, .signup-form) .account-disclaimer {
  font-style: italic;
  font-size: 18px;
}

.account-disclaimer a {
  font-size: 18px;
  color: var(--laf-brown);
}

:is(.member-base main, .signup-form) input {
  margin: 0 0 10px;
  padding: 5px 10px;
  color: var(--laf-brown);
  width: 100%;
}

:is(.member-base main, .signup-form) input[type=submit] {
  color: white;
  border: none;
}

fieldset {
  border: none;
  margin: 20px 0;
  padding: 0;
}

:is(.member-base main, .signup-form) fieldset label {
  color: var(--laf-gray) !important;
  background-color: white;
  padding: 10px 20px;
  border-radius: 8px;
  border: 2px solid var(--laf-gray);
  text-align: center;
  width: 100%;
  height: 100%;
}

fieldset > div {
  display: flex;
  justify-content: space-between;
}

@media (width <= 450px) {
  fieldset > div {
    display: block;
  }
  fieldset > div > div {
    margin: 0 !important;
  }
	:is(.member-base main, .signup-form) fieldset label {
		margin-top: 7px;	
	}
}

fieldset > div > div {
  flex: 1;
}

fieldset > div > div:not(:last-of-type) {
  margin-right: 10px;
}

fieldset input {
  display: none;
}

fieldset label {
  cursor: pointer
}

fieldset label:has(input:checked) {
  background-color: white;
  border: 2px solid var(--laf-pink);
  font-weight: bold;
  color: var(--laf-brown);
}

.signup-form input[type=submit] {
  color: white;
  border: none;
}

.invoice .total {
  font-weight: bold;
}

.invoice tr:not(:last-of-type) {
  border-bottom: 1px solid white;
}

.message {
	padding: 10px 20px;
	border-radius: 5px;
  text-align: left;
}

.message .close {
  float: right;
  text-decoration: none;
}

.global.message {
  font-family: 'phoreuscherokee';
  margin-top: 20px;
}

.warning {
	background-color: #eded89;
  color: #b17921;
}

.error {
	color: #8e0202;
	background-color: #f3c1c1;
}

.success {
	background-color: #bdddbd;
	color: var(--laf-green);
}

.errorlist {
  list-style: none;
  padding-left: 0;
}

.errorlist li {
	padding: 10px 20px;
	border-radius: 5px;
	color: #8e0202;
	background-color: #f3c1c1;
}

.distributions {
  font-size: 16px;
}

.override {
	display: none;
}

.override.active {
	display: block;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%; /* Full width (cover the whole page) */
  height: 100%; /* Full height (cover the whole page) */
  background-color: rgba(0,0,0,0.5); /* Black background with opacity */
  z-index: 100;
}

.override.active > div {
	position: absolute;
  top: 50%;
  left: 50%;
  background-color: white;
	border-radius: 5px;
	padding: 10px 20px;
  transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
}

@keyframes update-schedule {
	0% {
		background-color: white;
	}
	50% {
		background-color: #abdeb0;
	}
	100% {
		background-color: white;
	}
}

.contact-info {
  text-align: left;
}

.contact-info-buttons {
  display: flex;
}

.contact-info-buttons a {
  flex: 1;
  margin: 0 15px;
}

.membership-terms {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  font-family: phoreuscherokee;
}

.membership-terms .accept-terms {
  background-color: transparent;
  margin: 0;
  padding: 0;
}
.membership-terms .accept :is(label, input[type=checkbox]) {
  width: auto;
  float: none;
  margin-right: 10px;
}
.back {
  float: right;
}
.product-detail .heading-block img {
    width: 100%;
}

.payment-options {
  list-style: none;
  padding-left: 0;
}
.payment-options .icon {
  font-size: 25px;
}
.payment-options img {
  width: 25px;
}
.product-links {
margin-top: 20px;
}
.product-links .back-link {
float: left;
color: var(--laf-brown);
}
.product-links .cart-link {
float: right;
color: var(--laf-brown);
}
.add-to-cart-form .join-button {
border: none;
}
