/*
Theme Name: Peoria Zoo 2024
Author: Central States Media
Author URI: http://www.centralstatesmedia.com/
Description: This site was built by Central States Media
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pz
*/
/***************************************
TABLE OF CONTENTS

01 - BASE
02 - UTILITIES
03 - LAYOUT
04 - COMPONENTS
05 - HEADER / NAVIGATION
06 - PAGES
07 - FOOTER
***************************************/
/*-------------------------------------
  01 - BASE - BASE - BASE - BASE - BASE
--------------------------------------*/
/*
 Colors / Typography @ root
*/
:root {
  --black-dk: #242424;
  --black: #333;
  --black-20: #4f4f4f;
  --black-40: #828282;
  --black-60: #bdbdbd;
  --white-60: #e0e0e0;
  --white-40: #f2f2f2;
  --white-20: #f5f4f6;
  --white: #fff;
  /*
    Site Specific Color Palette
  */
  --green: #abac24;
  --yellow: #fdcf4b;
  --brown: #5b4522;
  --brown-dark: #44341a;
  --blue: #007a7d;
  --orange: #e77331;
  --white: #ffffff;
  --primary-font-color: var(--brown);
  /*
    Global Font Colors
  */
  --primary-color: var(--black);
  --h-color: var(--brown);
  --p-color: var(--primary-font-color);
  --nav-color: var(--white);
}

/*
    Global Font Sizing
*/
:root {
  --baseFontSize: 1rem;
  --baseNavSize: 0.94rem;
  --smallFontSize: 0.8rem;
  --smallestFontSize: 0.512rem;
  --big-boss-heading: 3.052rem;
  --boss-heading: 2.441rem;
  --heading-1: 2.9rem;
  --heading-2: 2.5rem;
  --heading-3: 2rem;
  --heading-4: 1.6rem;
  --heading-5: 1.5rem;
  --heading-6: 1.2rem;
  --heading-7: var(--smallestFontSize);
}

/*
    Global Font Styles
*/
:root {
  --primary-font: "nimbus-sans", sans-serif;
  --h-font: "nimbus-sans-condensed", sans-serif;
  --btn-font: "nimbus-sans", sans-serif;
  --p-font: "nimbus-sans", sans-serif;
  --nav-font: "nimbus-sans", sans-serif;
  --accent-font: "nimbus-sans", sans-serif;
}

/*
  Resets
*/
* {
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  margin: 0;
  padding: 0;
  transition: all 0.25s ease-in-out;
}

:after,
:before {
  box-sizing: border-box;
}

button {
  border: none;
  box-shadow: none;
  outline: none;
  background: none;
}

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

/*
  HTML / Body
*/
html {
  scroll-behavior: smooth;
  /* Gap */
  --gap: 2rem;
  --neg-gap: 2rem;
  /* Fluid Gap */
  --gap-fluid: 5vw;
  --neg-gap-fluid: -5vw;
}
@media (min-width: 2000px) {
  html {
    --gap-fluid: 10vw;
    --neg-gap-fluid: -10vw;
  }
}
@media (min-width: 3000px) {
  html {
    --gap-fluid: 15vw;
    --neg-gap-fluid: -15vw;
  }
}
@media (min-width: 3500px) {
  html {
    --gap-fluid: 20vw;
    --neg-gap-fluid: -20vw;
  }
}

body {
  font-family: var(--primary-font);
  -webkit-text-size-adjust: none;
  line-height: 1.6;
  position: relative;
}

/*
  Responsive font sizing
*/
html {
  font-size: 17px;
}

@media (max-width: 900px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 650px) {
  html {
    font-size: 15.5px;
  }
}
@media (max-width: 400px) {
  html {
    font-size: 15px;
  }
}
/*
  Headings
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--h-font);
  font-weight: 900;
  color: var(--h-color);
  margin: 0 0 1rem;
  line-height: 1;
  text-wrap: balance;
}

h1,
.h1 {
  font-size: var(--heading-1);
  text-rendering: optimizeLegibility;
  font-weight: 900;
  color: var(--h-color);
}

h2,
.h2 {
  font-size: var(--heading-2);
  font-weight: 900;
}

h3,
.h3 {
  font-size: var(--heading-3);
  font-weight: 900;
}

h4,
.h4 {
  font-size: var(--heading-4);
  font-weight: 900;
}

h5,
.h5 {
  font-size: var(--heading-5);
  font-weight: 900;
}

h6,
.h6 {
  font-size: var(--heading-6);
  font-weight: 900;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-family: inherit;
  color: inherit;
  text-decoration: none;
}

h1 a:focus,
h1 a:hover,
h2 a:focus,
h2 a:hover,
h3 a:focus,
h3 a:hover,
h4 a:focus,
h4 a:hover,
h5 a:focus,
h5 a:hover,
h6 a:focus,
h6 a:hover {
  opacity: 0.65;
}

.content h1 {
  color: unset;
  text-transform: unset;
}

.content h2 {
  color: unset;
  text-transform: unset;
}

.content h3 {
  color: unset;
  text-transform: unset;
}

.content h4 {
  color: unset;
  text-transform: unset;
}

.content h5 {
  color: unset;
  text-transform: unset;
}

.content h6 {
  text-transform: unset;
}

.content h1 a,
.content h2 a,
.content h3 a,
.content h4 a,
.content h5 a,
.content h6 a {
  color: inherit;
  text-decoration: none;
}

.content h1 a:focus,
.content h1 a:hover,
.content h2 a:focus,
.content h2 a:hover,
.content h3 a:focus,
.content h3 a:hover,
.content h4 a:focus,
.content h4 a:hover,
.content h5 a:focus,
.content h5 a:hover,
.content h6 a:focus,
.content h6 a:hover {
  opacity: 0.88;
}

/*
  Links - Global --------------------
*/
a {
  font-family: var(--primary-font);
  font-size: inherit;
  color: inherit;
  transition: all 0.25s ease-in-out;
}
a:hover, a:focus {
  opacity: 0.6;
}

.content a:not(.btn, .button) {
  font-weight: 700;
  color: var(--primary-font-color);
  text-decoration: underline;
}

.content a:hover:not(.btn, .button),
.content a:focus:not(.btn, .button) {
  opacity: 0.65;
}

/*
  Basic title link usually on block title
*/
.title-link {
  text-transform: uppercase;
  border-bottom: 2px solid var(--black-20);
  transition: color 0.25s ease-in-out;
}
.title-link:hover {
  color: var(--black-60);
}

/*
  Text --------------------
*/
/*
  Content class global styles
*/
.content {
  font-family: var(--p-font);
  font-style: normal;
  font-size: var(--baseFontSize);
  color: var(--p-color);
}

/*
  Paragraph text
*/
p {
  margin-bottom: 1.5rem;
}

p:not(.content *) {
  font-family: var(--p-font);
  color: var(--p-color);
  font-size: var(--baseFontSize);
  margin-bottom: 1.5rem;
}
p:not(.content *)::-moz-selection {
  background-color: var(--black-60);
  color: white;
}
p:not(.content *)::selection {
  background-color: var(--black-60);
  color: white;
}

/*
  UL / OL Lists
*/
ul li a,
ol li a {
  font-family: var(--primary-font);
  color: var(--primary-font-color);
  font-size: var(--baseFontSize);
  margin-bottom: 0.5rem;
}

.content ul,
.post-content ul {
  padding: 0 0 1.5rem 40px;
}

.content ul li,
.post-content ul li {
  list-style: disc;
}

/*
  Span
*/
span {
  font-family: var(--primary-font);
  font-size: var(--baseFontSize);
}

/*
  Bold Text
*/
b {
  font-weight: 700;
}

strong {
  font-weight: 700;
}

/*
  Accent Text
*/
.accent {
  font-family: var(--accent-font);
  color: var(--accent-color);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.8rem;
}

/*-------------------------------------
  02 - UTILITIES UTILITIES UTILITIES
--------------------------------------*/
/*
  Full Width --------------------
*/
/* Breaks out of wrapper for full-width content - extending bg color for example*/
.full-width {
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
  padding: 0;
}

.full-width-fluid {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 0 var(--gap-fluid);
}

/*
  Remove / Show content --------------------
*/
.hide {
  display: none;
}

.show {
  display: block;
}

/*
  Margin / Padding Resets --------------------
*/
.no-margin {
  margin: 0;
}

.no-padding {
  padding: 0;
}

.no-border {
  border: none;
}

/*
  Shadows
*/
.shadow-bottom-inset {
  box-shadow: inset 0 -35px 35px -20px rgba(60, 60, 60, 0.3);
}

.shadow-bottom {
  box-shadow: 0px 10px 6px -10px rgba(60, 60, 60, 0.3);
}

/*
  Horizontal Rule
*/
hr {
  height: 3px;
  margin: 20px 0;
  border: none;
  background: var(--black-60);
}

/*
  PAGINATION STYLES for WP
*/
.pagination {
  clear: both;
  padding: 20px 0;
  position: relative;
  font-size: 11px;
  line-height: 13px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.pagination span,
.pagination a {
  display: block;
  float: left;
  margin: 2px 2px 2px 0;
  padding: 6px 9px 5px 9px;
  text-decoration: none;
  width: auto;
  color: #666 !important;
  background: #d5d5d5;
}

.pagination a:hover {
  color: #fff !important;
  background: #000;
}

.pagination span {
  background: #666;
  color: #fff !important;
}

.pagination .current {
  padding: 6px 9px 5px 9px;
  background: #000;
  color: #fff !important;
}

/*
  SEARCH RESULTS STYLES for WP
*/
.search-results h1 {
  font-size: 1.2rem;
}

/*
  BREADCRUMBS (Yoast)
*/
#breadcrumbs {
  margin: 0;
  list-style: none;
  border-radius: 4px;
}

#breadcrumbs a {
  color: var(--black-20);
  text-decoration: none;
}
#breadcrumbs a:hover {
  color: var(--white-60);
}

/*
  scroll padding
*/

[id] {
  scroll-margin-top: 10rem;
}



/*-------------------------------------
  03 - LAYOUT LAYOUT LAYOUT LAYOUT LAYOUT
--------------------------------------*/
/*
  wrappers - wraps large sections of content for uniform vertical alignment --------------------
*/
/* Creates a wrapper around main sections of content */
.wrapper {
  margin: 0 auto;
  padding: 0 var(--gap);
  max-width: 1350px;
}

/* Removes max-width for larger-fluid design */
.wrapper-fluid {
  margin: 0 auto;
  padding: 0 var(--gap-fluid);
}

/*
  Grid Layouts --------------------
*/
.grid-auto-1 {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
}

.grid-1-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.grid-2-1 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

@media (max-width: 800px) {
  .grid-auto-1 {
    grid-template-columns: 1fr;
  }
}
/*
  Sections  - generally affect vertical spacing --------------------
*/
/* used for normal section to create space between */
.section {
  margin-bottom: 4rem;
}

.section-sm {
  margin-bottom: 2rem;
}

/* used for section within another block or section */
.section-block {
  margin-bottom: 2rem;
}

/* used to create space within a section when 2 sections touch eachother
     eg: 2 sections with diff bg colors */
.section-spacer {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-spacer-lg {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.section-spacer-top {
  padding-top: 3rem;
}

.section-spacer-bottom {
  padding-top: 3rem;
}

.section-spacer-inside {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

/* used to center section inside parent element as well as center align the text */
.section-centered {
  text-align: center;
  display: flex;
  justify-content: center;
}

.section-prefooter {
  margin-bottom: 7rem;
}

.section-title {
  margin-bottom: 2rem;
}

.section-subtitle {
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

/*
  Page Headers --------------------
*/
/* if outside a parent container - add the left and right padding */
.page-header {
  margin-bottom: 2.25rem;
}

.page-header-title {
  margin-bottom: 2rem;
}

.page-header-subtitle {
  margin-bottom: 1rem;
  max-width: 80%;
  font-size: 1.1rem;
}

/*
  Text Alignment --------------------
*/
.text-center {
  text-align: center;
}

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

.text-right {
  text-align: right;
}

/*
  Text Blocks --------------------
*/
.text-block {
  margin: 0 0 3rem;
}

.text-block-narrow {
  margin: 0 0 3rem;
  /* Adjust max-width as needed */
  max-width: 43rem;
}

.text-block-center {
  margin: 0 auto 3rem;
  /* Adjust max-width as needed or eliminate if already in a parent container */
  max-width: 43rem;
}

/*-------------------------------------
  04 - COMPONENTS COMPONENTS COMPONENTS COMPONENTS COMPONENTS
--------------------------------------*/
/*
  Buttons --------------------
*/
.btn,
a.btn,
.wp-block-button__link,
input[type=submit] :not(.search-form),
.gform_button {
  display: inline-block;
  background: var(--green);
  color: var(--brown);
  border-radius: 20px;
  padding: 12px 25px;
  margin-bottom: 0.75rem;
  max-width: 350px;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.1;
  cursor: pointer;
  text-transform: uppercase;
  text-align: center;
  transition: all 0.25s ease-in-out;
}
.btn:hover, .btn:focus,
a.btn:hover,
a.btn:focus,
.wp-block-button__link:hover,
.wp-block-button__link:focus,
input[type=submit] :not(.search-form):hover,
input[type=submit] :not(.search-form):focus,
.gform_button:hover,
.gform_button:focus {
  background: var(--brown);
  color: var(--green);
  opacity: 1;
}

.btn.btn--secondary {
  background: var(--black-20);
}
.btn.btn--secondary:hover, .btn.btn--secondary:focus {
  background: var(--white-60);
  opacity: 1;
}

.btn--full {
  width: 100%;
  margin: 0 0 10px;
}

/*
  Scroll to top button - used on exhibits page
*/
#scrollToTopBtn {
    position: fixed;
    bottom: 4rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    background-color: var(--green);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
	z-index: 1000;
}


/*
  Links - Test links similar to buttons ------------------
*/
/*
  Basic text link usually inline
*/
.link {
  display: inline-block;
  color: var(--black-20);
  text-align: center;
}
.link:hover, .link:focus {
  color: var(--black-60);
}

/*
  Icons --------------------
*/
/*
  Icon preceding text
*/
.icon-before {
  position: relative;
}
.icon-before::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: .5rem;
  margin-bottom: 5px;
  vertical-align: middle;
  background: url("img/icon-arrow-right.svg") center no-repeat;
}

/*
  Icon following text
*/
.icon-after {
  position: relative;
}
.icon-after::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 15px;
  margin-bottom: 5px;
  vertical-align: middle;
  background: url("img/icon-arrow-right.svg") center no-repeat;
}

/*
  BG image before
*/
.bg-before {
  position: relative;
}
.bg-before::after {
  content: "";
  position: absolute;
  display: inline-block;
  left: -3rem;
  top: 15%;
  width: 300px;
  height: 400px;
  background: url("img/bg-before.svg") center/100% no-repeat;
  background-size: cover;
}

/*
  Social Icons
*/
.social-icons {
  display: flex;
  gap: 30px;
  justify-content: space-around;
}

.social-icons .icon {
  display: inline-block;
  vertical-align: middle;
  padding: 5px;
  width: 30px;
  height: 30px;
  border-radius: 6px;
}

.social-icons .fb {
  background: url("img/social-icons/fb.svg") center/50% no-repeat;
}

.social-icons .x {
  background: url("img/social-icons/x.svg") center/100% no-repeat;
}

.social-icons .insta {
  background: url("img/social-icons/insta.svg") center/100% no-repeat;
}

.social-icons .yt {
  background: url("img/social-icons/yt.svg") center/100% no-repeat;
}

/*
  Animations --------------------
*/
/*-------------------------------------
  05 - HEADER HEADER HEADER HEADER HEADER
       NAVIGATION NAVIGATION NAVIGATION
--------------------------------------*/
/*
  Site Header
*/
.site-header {
  /* use below for sticky header */
  position: sticky;
  inset: 0;
  background: var(--brown);
  z-index: 10000;
}
.site-header .inner.wrapper {
  padding-left: 0;
}
.site-header .inner {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  gap: 0.5rem 0;
  justify-items: end;
  align-items: center;
  padding-block: 1.5rem 0;
  position: relative;
}
.site-header .logo-wrap {
  position: absolute;
  left: 0;
  top: 0;
  background: var(--green);
  padding: 2rem;
  border-radius: 0 50% 50% 50%;
  transform: scale(1.2);
  z-index: 7000;
}
.site-header .logo-wrap .main-logo {
  padding-block: 20px;
}
.site-header .logo-wrap .main-logo img {
  width: 75px;
}
.site-header .top-links {
  grid-row: 1;
  display: flex;
  gap: 3rem;
  z-index: 10;
}
.site-header .top-links a {
  font-weight: 700;
  color: var(--yellow);
  padding: 3px 10px 3px 10px;
}
.site-header .top-links a.tickets::before {
  content: "";
  background: url("img/icon-tickets.svg") center/100% no-repeat;
}
.site-header .top-links a.member::before {
  content: "";
  background: url("img/icon-memberships.svg") center/100% no-repeat;
}
.site-header .top-links a.donate::before {
  content: "";
  background: url("img/icon-donate.svg") center/100% no-repeat;
}

@media (max-width: 800px) {
	.site-header .logo-wrap {
		padding: 1rem;
	}
	.site-header .logo-wrap .main-logo img {
        width: 60px;
    }
}

/* Add styles here to shrink down header after scroll */
.site-header.shrink .inner .main-logo {
  width: 150px;
}

/*
  Main Navigation
*/
.main-nav .menu-main-menu-container {
  height: 100%;
}

.main-nav {
  height: 100%;
  width: 100%;
}
.main-nav .menu-main-menu-container {
  height: 100%;
}
.main-nav .menu-main-menu-container > ul {
  display: flex;
  justify-content: flex-end;
  -moz-column-gap: 3%;
       column-gap: 3%;
  height: 100%;
}
.main-nav .menu-main-menu-container > ul > li {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}
.main-nav .menu-main-menu-container > ul > li > a {
  display: inline-block;
  display: flex;
  align-items: center;
  height: 100%;
  font-family: var(--nav-font);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--nav-color);
  padding: 3px 10px 1.5rem 10px;
/*   border-bottom: 4px solid transparent; */
  margin-bottom: 0;
  line-height: 1.1;
  transition: none;
  position: relative;
}
.main-nav .menu-main-menu-container > ul > li:hover > a {
/*   border-bottom: 4px solid var(--white); */
  opacity: .65;
}
.main-nav .menu-main-menu-container > ul > li > a::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 5px;
  vertical-align: middle;
  background: url("img/icon-down.svg") center/100% no-repeat;
  transition: all 0.35s ease-in-out;
}
.main-nav .menu-main-menu-container > ul > li:hover > a::after {
  transform: rotate(180deg);
}

/*
  Dropdown area
*/
/* second level */
.main-nav ul ul {
  display: none;
  align-items: center;
  margin: 0;
  position: absolute;
  padding: 10px 0 10px 0;
  opacity: 0;
  top: calc(100% - 4px);
  left: 50%;
  transform: translateX(-50%);
  right: 0;
  height: auto;
  width: max-content;
	min-width: 150px;
	border-top: 4px solid var(--white);
  background-color: var(--green);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
  z-index: 99999 !important;
}

.main-nav ul li:hover > ul,
.main-nav ul li:focus-within > ul {
  display: block;
  opacity: 1;
}

.main-nav ul ul li {
  margin: 0;
  height: auto;
	position: relative;
}

.main-nav ul ul li:hover {
  background: var(--brown);
}
.main-nav ul ul li:hover a {
  color: var(--white);
  opacity: 1;
}

.main-nav ul ul li a {
  display: block;
  color: var(--white);
  height: 100%;
  width: 100%;
  padding: 0.4rem;
  margin: 0;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.main-nav ul ul li:first-of-type {
  position: relative;
}

/* third level */
.main-nav ul ul ul {
  top: 0;
  left: 100%;
  transform: unset;
	padding: 0;
  margin-top: 0;
  border-top: none;
}


/* End Dropdown area */
/*
  MOBILE-MENU-ICON / MOBILE SEARCH ICON --------------
*/
/*
  Mobile Menu Icon
*/
.menu-icon {
  grid-row: 1;
  width: 30px;
  height: 30px;
  margin-left: 1rem;
  background: url("img/icon-down.svg") center/100% no-repeat;
  cursor: pointer;
  line-height: 0.6;
  transition: all 0.5s ease;
  display: none;
}

.site-header .inner:has(.mobile-nav.open) .menu-icon {
  transform: rotate(180deg);
}

/*
  Mobile Navigation
*/
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 50px;
  padding: 7rem 2rem 2rem 2rem;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 0;
  width: 100%;
  z-index: 5000;
  background: var(--brown-dark);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  overflow-y: scroll;
  transition: all 0.3s ease-in-out;
}

.mobile-nav.open {
  top: 100%;
  height: 100vh;
  opacity: 1;
  visibility: visible;
}

.mobile-nav nav {
  margin-bottom: 1rem;
  opacity: 0;
}
.mobile-nav.open nav {
	opacity: 1;
	transition: all .35s ease-in-out .2s;
}

.mobile-nav ul li {
  text-align: left;
  margin-bottom: 15px;
}

.mobile-nav ul li.menu-item-has-children ul.sub-menu {
  display: block;
}

.mobile-nav ul li a {
  display: inline-block;
  font-size: 1.1rem;
  color: var(--white);
  padding: 8px 30px;
  margin: 0;
  position: relative;
}

.mobile-nav li a:hover,
.mobile-nav li a:focus {
  opacity: 0.65;
}

/*
  Mobile DropDown
*/
.mobile-nav ul ul {
  display: none;
  border-left: 2px solid var(--orange);
  margin-left: 2.5rem;
}

.mobile-nav li:hover > ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.mobile-nav ul ul li {
  display: block;
}

.mobile-nav ul ul li a {
  font-size: 0.95rem;
  font-weight: 400;
  text-transform: none;
  border-bottom: none;
}

.mobile-nav li li:hover > ul {
/*   border-left: none; */
}

/*
  MOBILE RESPONSIVE MEDIA QUERIES - specific to general
    page layout at specific screen width
*/
@media (max-width: 1050px) {
  .site-header .inner {
    padding-block: 0;
  }
  .site-header .inner .top-links {
    gap: 0.25rem;
    padding-block: 0.5rem;
  }
  .site-header .inner .top-links a span {
    display: none;
  }
  .site-header .inner .top-links a::before {
    width: 25px;
    height: 25px;
  }
  .main-nav {
    display: none;
  }
  .menu-icon {
    justify-self: end;
    align-self: center;
    display: inline-block;
  }
}
@media (min-width: 1050px) {
  .mobile-nav,
  .mobile-overlay {
    display: none;
  }
  .search-trigger {
    display: none;
  }
}
/*-------------------------------------
  06 - PAGES PAGES PAGES PAGES PAGES
--------------------------------------*/
/**************************************
  GLOBAL REUSABLE PAGE COMPONENTS
***************************************/
/**************************************
  HOME PAGE
***************************************/
/*
  HERO
*/
.hero {
  display: grid;
  grid-template-columns: 1fr;
  height: 80vh;
  position: relative;
}
.hero video {
  grid-column: 1/-1;
  grid-row: 1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 300px;
}
.hero .caption-wrap {
  grid-column: 1/-1;
  grid-row: 1;
  align-self: end;
  justify-self: start;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  gap: 0.5rem;
  width: 100%;
  height: 100%;
  padding-block: 0 3rem;
  padding-left: var(--gap);
  padding-right: 0;
  margin-right: 0;
  position: relative;
  z-index: 10;
}
.hero .caption-wrap::before {
	content: "";
	position: absolute;
	left: -17rem;
	top: 0rem;
	bottom: 0;
	width: 1000px;
	height: auto;
/* 	opacity: .8; */
	background: url("img/hero-pattern-3.svg") center/100% no-repeat;
}
.hero .caption-wrap .caption {
  grid-column: 1/-1;
  grid-row: 1;
  max-width: 550px;
  background-size: contain;
  padding: 0 2rem;
  margin-left: 3.5rem;
  margin-bottom: 6rem;
  z-index: 100;
}
.hero .caption-wrap .caption *:not(.btn) {
  color: var(--white);
}
.hero .caption-wrap .caption h1 {
  font-size: clamp(2.75rem, 2.357rem + 1.048vw, 3.3rem);
  font-weight: 700;
  text-transform: uppercase;
}
.hero .caption-wrap .caption p {
  font-size: 0.9rem;
  line-height: 1.1;
  font-weight: 400;
  max-width: 400px;
}
.hero .caption-wrap .caption .btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 0.5rem;
}
.hero .caption-wrap .caption .btn-group .btn {
  min-width: -moz-fit-content;
  min-width: fit-content;
	padding: 10px 20px;
}
.hero .caption-wrap .caption .btn-group .btn:hover,
.hero .caption-wrap .caption .btn-group .btn:focus {
	background: var(--brown-dark);
}
.hero .info {
  grid-column: 1/-1;
  grid-row: 1;
  align-self: end;
  justify-self: end;
  position: absolute;
  right: 0;
	bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0.8rem;
  margin-bottom: 3rem;
  background: var(--brown);
  border-radius: 15px 0 0 15px;
  color: var(--yellow);
  padding: 1.5rem 3rem;
}
.hero .info p,
.hero .info a {
  font-size: 1.1rem;
  color: var(--yellow);
}
.hero .info .icon-before::before {
  width: 35px;
  height: 35px;
}
.hero .info p.date.icon-before {
  display: flex;
  align-items: center;
  margin: 0;
  line-height: 1;
}
.hero .info p.date.icon-before::before {
  background: url("img/icon-calendar.svg") center/80% no-repeat;
}
.hero .info .bottom {
  display: flex;
  gap: 1.2rem;
}
.hero .info .bottom a.directions::before {
  background: url("img/icon-pin-yellow.svg") center/70% no-repeat;
}
.hero .info .bottom a.alerts::before {
  background: url("img/icon-alert-yellow.svg") center/80% no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  width: 100%;
  height: 88px;
  background: url("img/grass.svg") center/100% no-repeat;
  background-size: cover;
	z-index: 1000;
}

@media (max-width: 1050px) {
  .hero {
    grid-template-rows: auto auto;
    height: unset;
  }
	.hero::before {
		content: none;
	}
  .hero .caption-wrap {
    grid-row: 2;
    display: block;
    padding-block: 0 2rem;
    padding-inline: 0;
    width: 100%;
    background: var(--brown);
    position: relative;
  }
  .hero .caption-wrap .caption {
    background: none;
    padding: 0;
    max-width: none;
    padding-inline: 2rem;
    margin-top: -5rem;
	margin-left: unset;
	margin-bottom: 3rem;
    position: relative;
  }
  .hero .caption-wrap .caption .btn-group {
    flex-direction: column;
  }
  .hero .caption-wrap .caption .btn-group .btn {
    width: 100%;
    max-width: -moz-min-content;
    max-width: min-content;
  }
  .hero .info {
    grid-row: 2;
    justify-self: center;
    align-items: center;
    position: relative;
    right: unset;
    margin: 0;
    padding: 2rem 2rem 0 2rem;
    text-align: left;
    background: none;
  }
  .hero .caption-wrap::before {
    content: "";
    position: absolute;
    top: -86px;
    left: 0;
    right: 0;
    width: 100%;
    height: 88px;
	  opacity: 1;
    background: url("img/grass-brown.svg") center/100% no-repeat;
    background-size: cover;
	  z-index: unset;
  }
  .hero::after {
    content: none;
  }
}
/*
  EVENTS
*/
.upcoming-events {
  overflow: hidden;
}
.upcoming-events h3 {
  text-align: center;
  margin-bottom: 2rem;
}
.upcoming-events .events {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  width: 100%;
  margin-bottom: 3rem;
}
.upcoming-events .events .event-wrap .event {
  display: flex;
  flex-direction: column;
  max-width: 350px;
  height: 100%;
  margin-inline: auto;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}
.upcoming-events .events .event-wrap .event img {
  height: auto;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px 20px 0 0;
}
.upcoming-events .events .event-wrap .event .bottom {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-block: 1rem;
  margin-bottom: 2rem;
  text-align: center;
}
.upcoming-events .events .event-wrap .event .bottom p {
  margin: 0;
}
.upcoming-events .events .event-wrap .event .bottom p.title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1.2;
}
.upcoming-events .events .event-wrap .event .bottom p.date {
  font-size: 1.3rem;
  color: var(--green);
}
.upcoming-events .events .event-wrap .event .bottom p.location {
  font-size: 1.3rem;
  font-weight: 300;
}
.upcoming-events .events .event-wrap .event .bottom p.time {
	font-size: 1.1rem;
	color: var(--brown);
}

@media (max-width: 767px) {
  .upcoming-events .events {
    grid-template-columns: 1fr;
    width: 100%;
  }
}
/*
  CTAS - MAP
*/
.ctas-map {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.ctas-map .orange-bg {
  grid-column: 1;
  grid-row: 1;
  background: url("img/orange-bg.png") center/100% no-repeat;
  background-size: cover;
}
.ctas-map .map-bg {
  grid-column: 2;
  grid-row: 1;
  background: url("img/map.png") center/100% no-repeat;
  background-size: cover;
}
.ctas-map .inner.wrapper {
  max-width: 1800px;
}
.ctas-map .inner {
  grid-column: 1/-1;
  grid-row: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 1rem 2rem;
  width: 100%;
}
.ctas-map .inner .ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0;
}
.ctas-map .inner .ctas h3 {
  color: var(--white);
}
.ctas-map .inner .ctas ul {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: .5rem 1rem;
}
.ctas-map .inner .ctas ul li {
	display: flex;
	align-items: center;
  margin-bottom: 0.6rem;
}
/* .ctas-map .inner .ctas ul li:last-of-type {
	grid-column: 1 / -1;
	justify-self: center;
} */
.ctas-map .inner .ctas ul li a {
  font-size: 1rem;
  color: var(--white);
	line-height: 1;
}
.ctas-map .inner .ctas ul li.icon-before::before {
  width: 35px;
	min-width: 35px;
  height: 35px;
  margin-right: 1rem;
}
.ctas-map .inner .ctas ul li.tickets.white::before {
  background: url("img/icon-tickets-white.svg") center/100% no-repeat;
}
.ctas-map .inner .ctas ul li.eats::before {
  background: url("img/icon-eats.svg") center/100% no-repeat;
}
.ctas-map .inner .ctas ul li.shop::before {
  background: url("img/icon-shop.svg") center/100% no-repeat;
}
.ctas-map .inner .ctas ul li.questions::before {
  background: url("img/icon-questions.svg") center/100% no-repeat;
}
.ctas-map .inner .ctas ul li.access::before {
  background: url("img/icon-accessibility.svg") center/100% no-repeat;
}
.ctas-map .inner .ctas ul li.feedings::before {
  background: url("img/icon-feed.svg") center/100% no-repeat;
}
.ctas-map .inner .ctas ul li.destination::before {
  background: url("img/icon-marker.svg") center/70% no-repeat;
}
.ctas-map .inner .map {
  display: grid;
  place-items: center;
  padding: 2rem 0;
}
.ctas-map .inner .map .pin {
  align-self: end;
  width: 200px;
  height: 200px;
  background: url("img/icon-pin.svg") center/100% no-repeat;
}
.ctas-map .inner .map .btn {
  align-self: end;
  font-size: 1.2rem;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

@media (max-width: 800px) {
  .ctas-map {
    grid-template-columns: 1fr;
  }
  .ctas-map .orange-bg {
    grid-column: 1;
    grid-row: 1;
  }
  .ctas-map .map-bg {
    grid-column: 1;
    grid-row: 2;
  }
  .ctas-map .inner {
    grid-row: 1/span 2;
    grid-template-columns: 1fr;
  }
}
/*
  SPOTLIGHT
*/
.spotlight {
  overflow: hidden;
  position: relative;
}
.spotlight .inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0 3rem;
  position: relative;
}
.spotlight .inner img {
  grid-column: 1;
  grid-row: 1/span 2;
  width: 350px;
}
.spotlight .inner header {
  grid-column: 2;
}
.spotlight .inner header .name {
  color: var(--brown);
  font-size: 1.2rem;
  font-weight: 700;
}
.spotlight .inner .copy {
  grid-column: 2;
  max-width: 600px;
}

.spotlight::before {
  content: "";
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 0;
  width: 100%;
  max-width: 350px;
  max-height: 400px;
  height: 100%;
  background: url("img/spotlight.svg") center/100% no-repeat;
  background-size: cover;
  z-index: -1;
}

.spotlight::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: 300px;
  height: 100%;
  opacity: 0.6;
  background: url("img/dot-pattern.svg") center/100% no-repeat;
  background-size: cover;
}

@media (max-width: 800px) {
  .spotlight .inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 3rem 0;
  }
  .spotlight .inner img {
    grid-column: 1;
    grid-row: 2;
  }
  .spotlight .inner header {
    grid-column: 1;
    grid-row: 1;
  }
  .spotlight .inner .copy {
    grid-column: 1;
    grid-row: 3;
  }
  .spotlight .inner .copy .btn {
    width: 100%;
    max-width: 100%;
  }
  .spotlight::before {
    left: -5rem;
	top: 18%;
  }
  .spotlight::after {
    top: 10%;
    right: -3rem;
    width: 100%;
    max-height: 400px;
    background-size: contain;
  }
}
/*
  WHO SECTION
*/
.who {
  background: url("img/green-bg.png") center/100% no-repeat;
  background-size: cover;
}
.who .inner {
  text-align: center;
}
.who .inner header {
  margin-bottom: 5rem;
  text-align: center;
}
.who .inner header * {
  color: var(--white);
}
.who .inner .animals {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}
.who .inner .animals .card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}
.who .inner .animals .card img {
  width: 175px;
}
.who .inner .animals .card .name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  line-height: 1.1;
}

@media (max-width: 800px) {
  .who .inner .animals .card img {
    width: 125px;
  }
}


/*
  CARE
*/
.care {
	padding-block: 4rem;
}
.care  header {
  max-width: 1000px;
  text-align: center;
}
.care header > * {
  color: var(--brown);
}
.care .care-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.care .care-grid .block {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  min-height: 500px;
}
.care .care-grid .block img {
  grid-column: 1/-1;
  grid-row: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.care .care-grid .block .copy {
  grid-column: 1;
  grid-row: 1;
  margin: 2rem;
  padding: 1rem;
  max-width: 600px;
  background-color: rgba(91, 69, 34, 0.9);
}
.care .care-grid .block .copy > * {
  color: var(--white);
}
.care .care-grid .block .copy .title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 .4rem 0;
  text-transform: uppercase;
	line-height: 1;
	text-wrap: balance;
}
.care .care-grid .block .copy p {
  font-size: 0.85rem;
}
.care .care-grid .block:nth-child(2),
.care .care-grid .block:nth-child(3) {
  grid-template-columns: 1fr 1.2fr;
}
.care .care-grid .block:nth-child(2) .copy,
.care .care-grid .block:nth-child(3) .copy {
  grid-column: 2;
}
.care .care-grid .block:nth-child(2) img,
.care .care-grid .block:nth-child(3) img {
  -o-object-position: left center;
     object-position: left center;
}
.care .care-grid .block:nth-child(3),
.care .care-grid .block:nth-child(4) {
  margin-top: -90px;
}

@media (max-width: 800px) {
  .care header {
    margin-bottom: 4rem;
  }
  .care .care-grid {
    grid-template-columns: 1fr;
  }
  .care .care-grid .block {
    display: flex;
    flex-direction: column;
    margin-top: -50px;
  }
  .care .care-grid .block .copy {
    grid-row: 2;
	  align-self: start;
    margin: 0;
    padding: 1rem 2rem;
	  max-width: unset;
  }
  .care .care-grid .block:nth-child(2),
  .care .care-grid .block:nth-child(3) {
    grid-template-columns: 1fr;
  }
  .care .care-grid .block:nth-child(2) .copy,
  .care .care-grid .block:nth-child(3) .copy {
    grid-column: 1;
  }
  .care .care-grid .block:nth-child(2) img,
  .care .care-grid .block:nth-child(3) img {
    -o-object-position: left center;
       object-position: left center;
  }
  .care .care-grid .block:nth-child(3),
  .care .care-grid .block:nth-child(4) {
    margin-top: -50px;
  }
}
/**************************************
  CONTENT
***************************************/
/**************************************
  INSIDE PAGES
***************************************/
/*
  FEATURE IMAGE
*/
.feature {
  display: grid;
  position: relative;
}

.feature img {
  grid-column: 1/-1;
  grid-row: 1/-1;
  width: 100%;
}

.feature .title {
  grid-column: 1/-1;
  grid-row: 1/-1;
  align-self: center;
  justify-self: center;
  display: inline-block;
  padding: 20px 10px;
  border-radius: 3px;
  text-align: center;
  margin-top: 2rem;
  z-index: 100;
}
.feature .title h1 {
  color: var(--white);
  margin-bottom: 0;
  font-size: clamp(3rem, 2.286rem + 1.905vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
}
.feature .title p.subtitle {
  color: var(--white);
}

@media (max-width: 1050px) {
  .feature {
    padding: 0;
  }
}
@media (max-width: 1000px) {
  .feature img {
    width: 100%;
    min-height: 30vh;
    max-height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
/*
  MAIN SIDEBAR STYLES
*/
.main-sidebar-widget ul {
  background: var(--black-60);
  padding: 10px;
}

.main-sidebar-widget ul li {
  color: var(--white);
}

.main-sidebar-widget ul li a {
  color: var(--white);
}

/*
  CONTENT / CONTENT-POSTS STYLES
*/
/* Styles for post entry meta - (date) */
.entry-meta {
  margin-bottom: 30px;
}

/* Styles for WP category list */
.entry-category {
  display: inline-block;
}

.entry-category ul {
  display: inline-block;
}

.entry-category ul li {
  display: inline-block;
  margin-left: 5px;
}

/*
  EVENTS TEMPALTES - events, single events, archive
*/
.daily-events {
	
}
.daily-events p {
	color: var(--white);
	margin-bottom: .5rem;
	font-size: 1.2rem;
	font-weight: 700;
}

/*-------------------------------------
  07 - FOOTER FOOTER FOOTER FOOTER FOOTER FOOTER
--------------------------------------*/

.mission.wrapper {
	max-width: 1000px;
	text-align: center;
	margin-bottom: 6rem;
	padding-top: 2rem;
}

/* Main Footer Area */
.site-footer {
  padding-block: 4rem 0;
  background: var(--brown);
  position: relative;
}
.site-footer .inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem 3rem;
  margin-bottom: 2rem;
}
.site-footer .inner .logo-social img {
  width: 175px;
  margin-bottom: 2rem;
}
.site-footer .inner .center .contact {
  margin-bottom: 2rem;
}
.site-footer .inner .center .contact p,
.site-footer .inner .center .contact a {
  color: var(--white);
}
.site-footer .inner .center .contact p.hours {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.site-footer .inner .footer-nav .menu-main-menu-container > ul {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.site-footer .inner .footer-nav .menu-main-menu-container > ul > li:hover a {
  opacity: 1;
}
.site-footer .inner .footer-nav .menu-main-menu-container > ul > li > a {
  color: var(--white);
  font-weight: 700;
}
.site-footer .inner .footer-nav .menu-main-menu-container ul.sub-menu {
  flex-direction: column;
  padding-top: 1rem;
}
.site-footer .inner .footer-nav .menu-main-menu-container ul.sub-menu li:hover {
  opacity: 0.65;
}
.site-footer .inner .footer-nav .menu-main-menu-container ul.sub-menu li a {
  color: var(--white);
  font-weight: 300;
}
.site-footer .inner .footer-nav .menu-main-menu-container ul ul ul {
	display: none;
}
.site-footer .inner .ppd-logo {
  max-width: 200px;
}
.site-footer .cred {
  background: var(--brown-dark);
  color: var(--white);
  padding: 2rem;
  margin: 0;
  font-size: 0.875rem;
  text-align: center;
  text-transform: uppercase;
}
.site-footer .cred a {
  color: var(--white);
}

.site-footer::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: -88px;
  left: 0;
  right: 0;
  width: 100%;
  height: 88px;
  background: url("img/grass-brown.svg") center/100% no-repeat;
  background-size: cover;
}

@media (max-width: 1000px) {
  .site-footer .inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 3rem;
  }
  .site-footer .inner .center {
    display: grid;
    justify-items: center;
  }
  .site-footer .inner .center .footer-nav ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .site-footer .inner .center .footer-nav ul ul.sub-menu {
    grid-template-columns: 1fr;
  }
  .site-footer .inner .ppd-logo {
    display: none;
  }
}

/*-------------------------------------
  Plugin Styles
--------------------------------------*/

/* Tribe Events Calendar view */
.tribe-common--breakpoint-medium.tribe-events .tribe-events-l-container {
  padding-top: 2rem;
}

.tribe-common .tribe-common-l-container {
  max-width: none;
}

.tribe-events-c-top-bar__nav-list li,
.tribe-events-c-view-selector__list li,
.tribe-events-sub-nav li {
  list-style: none !important;
}

.tribe-events-c-nav__next,
.tribe-events-c-nav__prev {
  background: var(--green) !important;
  border-radius: 25px !important;
  padding: 12px 25px !important;
  color: var(--white) !important;
}

.tribe-events-calendar-list__event-date-tag-weekday {
  font-size: 1.2rem !important;
}

.tribe-events-calendar-list__event-date-tag-daynum {
  font-size: 1.8rem !important;
}

.tribe-events .tribe-events-c-search__button, .tribe-events button.tribe-events-c-search__button {
	background-color: var(--green) !important;
}

/* Tribe Events Single view */
.tribe-events-single .tribe_events {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 3rem;
}
.tribe-events-single .tribe_events .tribe-events-event-image {
	position: sticky;
	top: 0;
	left: 0;
}
.tribe-events-single .tribe_events .tribe-events-event-image img {
	min-width: 250px;
	
}
@media (max-width: 800px) {
	.tribe-events-single .tribe_events {
		grid-template-columns: 1fr;
	}
	.tribe-events-single .tribe_events .tribe-events-event-image img {
	}
}




/*# sourceMappingURL=style.css.map */