/* -------------------------------------------------------------------------- */
/*                                Hero Section                                */
/* -------------------------------------------------------------------------- */
.hero-section .container {
	background: linear-gradient(
			to bottom,
			rgba(0, 0, 0, 0) 0%,
			rgba(0, 0, 0, 0.8) 100%
		),
		url("../images/hero-background.webp") no-repeat;
	background-size: cover;
	background-position: center;
	box-shadow: 1px 3px 10px rgba(var(--color-blackdata), 0.25);
	margin-bottom: var(--margin-l);
}
.hero-background {
	display: none;
}
.hero-section .container {
	padding: 8rem 0;
}
.hero-section .container > * {
    padding: var(--margin-s);
}
.hero-section .container h1 {
    margin: var(--margin-s) 0;
	font: var(--hp-font);
	color: var(--color-white);
	text-shadow: 0px 5px 10px rgba(var(--color-blackdata), 0.75);
	text-align: center;
}
.hero-section .container p {
	color: var(--color-white);
	font: var(--h1-font);
	text-shadow: 0px 5px 10px rgba(var(--color-blackdata), 0.75);
	text-align: center;
    line-height: 1;
}
/* -------------------------------------------------------------------------- */
/*                    Produce Section | Season Specialties                    */
/* -------------------------------------------------------------------------- */
.scroll-spacer {
  flex: 0 0 var(--margin-xxl);
  pointer-events: none;
}

.produce-card {
    justify-content: end;
  aspect-ratio: 4 / 5;
  height: auto;
  padding: calc(1.25*var(--margin-m));
  box-shadow: 0 4px 8px rgba(var(--color-blackdata), 0.1);
  transition: 200ms ease-in-out;
}
.produce-card h3 {
	font: var(--h3-font);
    font-family: var(--ffb);
    font-weight: 600;
	color: var(--color-white);
	padding-bottom: 8px;
}
.produce-card p {
	font: var(--p-font);
	color: var(--color-white);
	/* margin: 0.5rem 1rem 1rem 1rem; */
}
.produce-card-1 {
	background: linear-gradient(
			to bottom,
			rgba(0, 0, 0, 0) 0%,
			rgba(0, 0, 0, 0.9) 90%
		),
		url("../images/corn.webp") no-repeat;
	background-size: cover;
	background-position: center;
}
.produce-card-2 {
	background: linear-gradient(
			to bottom,
			rgba(0, 0, 0, 0) 0%,
			rgba(0, 0, 0, 0.9) 90%
		),
		url("../images/watermelon.webp") no-repeat;
	background-size: cover;
	background-position: center;
}
.produce-card-3 {
	background: linear-gradient(
			to bottom,
			rgba(0, 0, 0, 0) 0%,
			rgba(0, 0, 0, 0.9) 90%
		),
		url("../images/squash.webp") no-repeat;
	background-size: cover;
	background-position: center;
}
.produce-card-4 {
	background: linear-gradient(
			to bottom,
			rgba(0, 0, 0, 0) 0%,
			rgba(0, 0, 0, 0.9) 90%
		),
		url("../images/tomato.webp") no-repeat;
	background-size: cover;
	background-position: center;
}
.produce-card-5 {
	background: linear-gradient(
			to bottom,
			rgba(0, 0, 0, 0) 0%,
			rgba(0, 0, 0, 0.9) 90%
		),
		url("../images/lima.webp") no-repeat;
	background-size: cover;
	background-position: center;
}
.produce-card-6 {
	background: linear-gradient(
			to bottom,
			rgba(0, 0, 0, 0) 0%,
			rgba(0, 0, 0, 0.9) 90%
		),
		url("../images/stand.webp") no-repeat;
	background-size: cover;
	background-position: top;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.produce-card-6 a {
	text-decoration: none;
	position: absolute;
	top: var(--margin-s);
	right: var(--margin-s);
	cursor: pointer;
	padding: 0;
}
.produce-card-6 a svg {
	width: 5rem;
	height: auto;
}
.produce-card-6 a svg path {
	fill: var(--color-accent);
	transition: fill 0.2s ease;
	filter: drop-shadow(0px 0px 1px rgba(var(--color-blackdata), 0.65));
}
.produce-card-6 a svg path:hover {
	fill: var(--color-accent-hover);
	transition: fill 0.2s ease;
}
.produce-card-content {
	margin-top: auto;
}
/* -------------------------------------------------------------------------- */
/*                              Visit Us Section                              */
/* -------------------------------------------------------------------------- */
.visit-section-info {
	display: grid;
    grid-template-columns: auto .8fr 1.6fr;
    grid-template-rows: auto auto;
    gap: calc(1.5*var(--margin-s));
      padding-block: var(--margin-m);
    grid-template-areas:
        "card small-top main-image"
        "card small-bottom main-image";
}
.visit-section-card {
    grid-area: card;
	background-color: var(--color-white);
	border-radius: var(--borderrad);
	box-shadow: 1px 3px 10px rgba(var(--color-blackdata), 0.25);
}
.bento-image {
    border-radius: var(--borderrad);
    overflow: hidden;
	box-shadow: 1px 3px 10px rgba(var(--color-blackdata), 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
      transition: 200ms ease-in-out;
}
.bento-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.visit-small-image-top {
    grid-area: small-top;
    min-height: 150px;
}
.visit-small-image-bottom {
    grid-area: small-bottom;
    min-height: 150px;
}
.visit-section-card-spacer {
  padding: calc(1.25*var(--margin-m));
  padding-right: calc(1.5*var(--margin-m));
    display: grid;
    grid-template-columns: var(--margin-l) 1fr;
    grid-template-rows: repeat(3, auto);
    gap: var(--margin-m) var(--margin-s);
height: 100%;
}
.visit-section-card-spacer h3 {
	font: var(--h3-font);
    font-family: var(--ffb);
    font-weight: 600;
    margin-bottom: calc(.5*var(--margin-s));
}
.visit-section-card-spacer h3:first-child {
	margin-top: 0;
}
.visit-section-card-spacer a {
	font: var(--p-font);
	color: var(--color-black);
	text-decoration: none;
	transition: color 150ms ease-in-out, text-decoration 150ms ease-in-out;
    margin-bottom: 1rem;
    grid-column: 2;
}
.visit-section-card-spacer a:hover {
	color: var(--color-accent);
	text-decoration: underline;
}
.visit-section-card-spacer svg {
    aspect-ratio: 1 / 1;
    max-width: 100%;
    min-width: 25px;
}
.visit-section-card-spacer svg {
    grid-column: 1;
}
.visit-section-info ul,li {
	font: var(--p-font);
    padding: 0;
	list-style: none;
}
.visit-section-hours {
	display: flex;
	justify-content: space-between;
	align-content: flex-start;
	gap: var(--margin-xl);
}
.visit-section-hours .hours {
    text-align: right;
}
.visit-section-image {
	grid-area: main-image;
    border-radius: var(--borderrad);
	overflow: hidden;
  transition: 200ms ease-in-out;
	max-height: 600px;
    box-shadow: 1px 3px 10px rgba(var(--color-blackdata), 0.25);
}
.visit-section-image img {
	object-fit: cover;
	object-position: top center;
	width: 100%;
	height: 100%;
}

.visit-section-image:hover, .bento-image:hover {
  transform: translateY(-2px) scale(1.015);
  transition: 200ms ease-in-out;
  box-shadow: 4px 8px 20px rgba(var(--color-blackdata), 0.25);
  position: relative;
  z-index: 25;
}
/* -------------------------------------------------------------------------- */
/*                               Review Section                               */
/* -------------------------------------------------------------------------- */
@media screen and (max-width: 76rem) {
	/* ---------------------------------- Hover --------------------------------- */
    .center-button a:hover, .highlight-card:hover, .review-card:hover, .produce-card:hover, .bento-image:hover, .visit-section-image:hover {
	    transform: none;
        box-shadow: 1px 3px 10px rgba(var(--color-blackdata), 0.25);
	}
    /* ---------------------------------- Hero ---------------------------------- */
    .hero-section .container {
	    padding: 5rem 0;
        margin-bottom: calc(1.5 * var(--margin-xxl));
    }
	/* --------------------------------- Produce -------------------------------- */
	.produce-card h3 {
		margin: 0 var(--margin-m);
	}
	.produce-card p {
		margin: 0 var(--margin-m) var(--margin-m) var(--margin-m);
	}
	/* ---------------------------------- Visit --------------------------------- */
	.visit-section-info {
        grid-column: breakout;
        gap: .5rem;
        grid-template-columns: auto auto;
        grid-template-rows: auto .8fr 1.6fr;
        grid-template-areas:
        "card card"
        "small-top small-bottom"
        "main-image main-image";
	}
    .visit-section-card-spacer {
        grid-template-columns: var(--margin-l) 1fr;
        gap: var(--margin-l) 1.5rem;
    }
    .visit-section-hours {
        justify-content: space-between;
        margin-right: 1rem;
    }  
}

/* ------------------------ Small Screens: Old Phones ----------------------- */
@media screen and (max-width: 22rem) {
    .visit-section-hours {
        margin-right: 0;
        word-spacing: -2px;
    }  
}

/* ------------------ Small Tablets: iPad Mini, Galaxy Tab ------------------ */
@media screen and (max-width: 76rem) and (min-width: 46rem) {
    .visit-section-info {
        grid-template-columns: 1fr .8fr;
        grid-template-rows: .7fr .7fr 1.6fr;
        grid-template-areas:
        "card small-top"
        "card small-bottom"
        "main-image main-image";
	}
}

/* ------------------- Large Tablet: iPad Air. iPad Pro ------------------ */
@media screen and (max-width: 76rem) and (min-width: 54rem) {
    .produce-card {
        min-width: 20rem;
    }
    .produce-card h3 {
		margin: 0 var(--margin-s);
	}
	.produce-card p {
		margin: 0 var(--margin-s) var(--margin-s) var(--margin-s);
	}
}

/* ------------------- Large Tablet: iPad Air. iPad Pro ------------------ */
@media screen and (min-width: 76rem) {
    .produce-card {
        min-width: 14rem;
    }
    .review-card {
        min-width: 22rem;
    }
    .review-card-space {
        padding: var(--margin-m);
    }
}