/*
Theme Name: PPD Golf Learning Center 2025
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: ppd
*/
/***************************************
TABLE OF CONTENTS

01 - BASE
02 - UTILITIES
03 - LAYOUT
04 - COMPONENTS
05 - HEADER / NAVIGATION
06 - PAGES
07 - FOOTER
***************************************/
/*-------------------------------------
  01 - BASE - BASE - BASE - BASE - BASE
--------------------------------------*/
/*
  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;
}

/*
 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: #6abb52;
  --green-light: #deebd7;
  --green-dark: #027d4e;
  --grey: #83878a;
  --black: #2b2a2f;
  --primary-font-color: #2b2a2f;
  /*
    Global Font Colors
  */
  --primary-color: var(--primary-font-color);
  --h-color: var(--green-dark);
  --p-color: var(--primary-font-color);
  --nav-color: var(--white);
  --accent-color: var(--green-dark);
}

@font-face {
  font-family: bartender-script;
  src: url("fonts/bartender-script.otf");
}
/*
    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.8rem;
  --heading-2: 2.3rem;
  --heading-3: 2rem;
  --heading-4: 1.7rem;
  --heading-5: 1.2rem;
  --heading-6: 1.2rem;
  --heading-7: var(--smallestFontSize);
}

/*
    Global Font Styles
*/
:root {
  --primary-font: "richmond-text", sans-serif;
  --h-font: "richmond-text", sans-serif;
  --btn-font: "richmond-text", sans-serif;
  --p-font: "richmond-text", sans-serif;
  --nav-font: "richmond-text", sans-serif;
  --accent-font: "bartender-script";
}

/*
    Global Sizing (widths, paddings, etc)
*/
:root {
  --wrapper-max-width: 82.3rem;
}

/*
  HTML / Body
*/
html {
  scroll-behavior: smooth;
  /* Gap */
  --gap: 2rem;
  --neg-gap: 2rem;
  /* Fluid Gap */
  --gap-fluid: 5vw;
  --neg-gap-fluid: -5vw;
}
@media (max-width: 1500px) {
  html {
    --gap-fluid: 2rem;
    --neg-gap-fluid: -2rem;
  }
}
@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);
  color: var(--h-color);
  margin: 0 0 1rem;
  line-height: 1.3;
  text-wrap: balance;
}

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

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

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

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

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

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

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;
  line-height: 1.8;
}

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: inherit;
  font-size: inherit;
}

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

strong {
  font-weight: 700;
}

/*
  Accent Text
*/
.accent {
  font-family: var(--accent-font);
  color: var(--accent-color);
  font-weight: inherit;
  font-size: inherit;
}

/*-------------------------------------
  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;
}

body:has(.full-width) {
  overflow-x: hidden;
}

/* Adjusts the padding when using .full-width inside kadence blocks */
.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);
}

/*-------------------------------------
  03 - LAYOUT LAYOUT LAYOUT LAYOUT LAYOUT
--------------------------------------*/
/*
  wrappers - wraps large sections of content for uniform vertical alignment --------------------
*/
.page-wrap {
  display: grid;
  grid-template-columns: 17rem 1fr;
  height: 100vh;
}

/* Creates a wrapper around main sections of content */
.wrapper {
  margin: 0 auto;
  padding: 0 var(--gap);
  max-width: var(--wrapper-max-width);
}

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

.wrapper-inner {
  padding: 30px 2rem;
}

/*
  Containers - generally affect horizontal spacing & centering --------------------
*/
.container {
  margin: 0 auto;
  padding: 0 2rem;
  max-width: 48rem;
}

/*
  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;
  }
}
/*
  Flex Layouts --------------------
*/
.flex-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.flex-group > * {
  flex: 1; /*  */
  min-width: -moz-fit-content;
  min-width: fit-content;
}

/*
  Sections  - generally affect vertical spacing --------------------
*/
/* used for normal section to create space between */
.section {
  margin-bottom: 4rem;
}

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

/* 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: 3rem;
  padding-bottom: 3rem;
}

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

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

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

/* 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(--white);
  border-radius: 30px;
  padding: 0.7rem 1.3rem;
  max-width: 300px;
  min-width: 150px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.1;
  cursor: pointer;
  text-align: center;
  transition: all 0.25s ease-in-out;
  position: relative;
  overflow: hidden;
}
.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 {
  color: var(--white);
  padding-right: 3rem;
	opacity: 1;
}


/* Golf Ball on hover */
.btn::after,
a.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -40px; /* Off-screen to the right */
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  opacity: 0;
  background: url("img/button-ball.svg") center/100% no-repeat;
  transition: right 0.75s cubic-bezier(0.15, 0.85, 0.3, 1),
    transform 0.75s cubic-bezier(0.15, 0.85, 0.3, 1),
    opacity 0.4s ease;
  transition-delay: 0s;
}
.btn:hover::after,
a.btn:hover::after {
  right: 10px;
  opacity: 1;
  transform: translateY(-50%) rotate(-360deg);
  transition-delay: 0.3s;
}

.btn.btn--secondary {
  color: var(--green-dark);
  background: var(--white);
  border: 1px solid var(--green-dark);
}
.btn.btn--secondary:hover, .btn.btn--secondary:focus {
  background: var(--green-light);
  color: var(--green-dark);
  opacity: 1;
}

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

/*
  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: 15px;
  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: 5px;
  vertical-align: middle;
  background: url("img/icon-arrow-right.svg") center no-repeat;
}

/*
  Social Icons
*/
/*
  Animations --------------------
*/
@keyframes fade-text {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*-------------------------------------
  05 - HEADER HEADER HEADER HEADER HEADER
       NAVIGATION NAVIGATION NAVIGATION
--------------------------------------*/
.ppd-golf-link {
  background: var(--green-light);
  padding: 0.5rem 2rem;
  text-align: center;
}
.ppd-golf-link a {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
.ppd-golf-link a.icon-after::after {
  width: 18px;
  height: 16px;
  margin-left: 10px;
  margin-bottom: 3px;
  background: url("img/icon-arrow.png") center/100% no-repeat;
  transition: all 0.2s ease-in-out;
}
.ppd-golf-link a.icon-after:hover::after {
  transform: translateX(5px);
  opacity: 1;
}

@media (max-width: 550px) {
  .ppd-golf-link {
    text-align: right;
  }
  .ppd-golf-link a {
    font-size: 0.8rem;
  }
}
/*
  Site Sidebar
*/
.site-sidebar {
  height: 100%;
  background: var(--green-dark);
  border-right: 3px solid var(--green);
	z-index: 100;
}
.site-sidebar .inner {
  position: sticky;
  top: 0;
}
.site-sidebar .main-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 3rem;
  left: 50%;
	
	/* NEW */
  background-color: white;
  width: 80%;
  max-width: 100%;
  min-height: 140px;
  margin-inline: auto;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
	box-shadow: 0 4px 3px 6px var(--black-60);
	display: flex;
	align-items: center;
	justify-content: center;
}
.site-sidebar .main-logo h1 {
	font-size: var(--heading-5);
	font-weight: 700;
	text-align: center;
	padding-block-end: .5rem;
}

/* END NEW */

.site-sidebar .main-logo img {
  display: block;
  max-width: 160px;
}
.site-sidebar .main-logo:hover {
  opacity: 1;
}
.site-sidebar .book-wrap {
  text-align: center;
  margin-bottom: 2rem;
}
.site-sidebar .book-wrap .book {
  border: 2px solid transparent;
}
.site-sidebar .book-wrap .book:hover {
  opacity: 1;
/*   background: var(--green-dark);
  border: 2px solid var(--green); */
}

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

.main-nav {
  height: 100%;
}
.main-nav .menu-main-menu-container > ul {
  display: flex;
  flex-direction: column;
}
.main-nav .menu-main-menu-container > ul > li {
  display: flex;
  align-items: center;
  height: 100%;
  border-bottom: 1px solid var(--green);
  margin-inline: 1rem;
  padding-block: 0.45rem;
  position: relative;
}
.main-nav .menu-main-menu-container > ul > li > a {
  display: inline-block;
  font-family: var(--nav-font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--nav-color);
  width: 100%;
  padding: 5px 10px 5px 10px;
  margin-bottom: 0;
  white-space: no-wrap;
  position: relative;
}
.main-nav .menu-main-menu-container > ul > li > a .link-text {
  margin-left: 1rem;
}
.main-nav .menu-main-menu-container > ul > li > a:hover, .main-nav .menu-main-menu-container > ul > li > a:focus, .main-nav .menu-main-menu-container > ul > li > a:active {
  opacity: 1;
}
.main-nav .menu-main-menu-container > ul > li > a:hover {
  background: var(--green);
  opacity: 1;
}
.main-nav .menu-main-menu-container > ul > li a::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-bottom: 5px;
  vertical-align: middle;
  background: url("img/icon-arrow-right.svg") center/70% no-repeat;
}
.main-nav .menu-main-menu-container > ul > li.plan > a::before {
  background: url("img/menu-icons/icon-plan.svg") center/80% no-repeat;
}
.main-nav .menu-main-menu-container > ul > li.facilities > a::before {
  background: url("img/menu-icons/icon-facilities.svg") center/100% no-repeat;
}
.main-nav .menu-main-menu-container > ul > li.food > a::before {
  background: url("img/menu-icons/icon-food.svg") center/100% no-repeat;
}
.main-nav .menu-main-menu-container > ul > li.parties > a::before {
  background: url("img/menu-icons/icon-parties.svg") center/100% no-repeat;
}
.main-nav .menu-main-menu-container > ul > li.promotions > a::before {
  background: url("img/menu-icons/icon-faq.svg") center/100% no-repeat;
}
.main-nav .menu-main-menu-container > ul > li.gifts > a::before {
  background: url("img/menu-icons/icon-gifts.svg") center/100% no-repeat;
}

@media (max-width: 1050px) {
  .main-nav .menu-main-menu-container > ul > li > a:hover {
    background: none;
    opacity: 1;
  }
}
@media (min-width: 1050px) {
  .main-nav .menu-main-menu-container > ul > li > a:hover {
    background: var(--green);
    opacity: 1;
  }
}

/*
  Dropdown area
*/

/* second level */
.main-nav .menu-main-menu-container ul ul {
  display: none;
  position: absolute;
  top: 0;
  left: 80%;
  width: 100%;
  background: var(--green);
  z-index: 9999;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  padding: 0;
  margin: 0;
  border: 1px solid #ddd;
	z-index: 100 !important;
}

.main-nav .menu-main-menu-container > ul > li:hover > ul {
  display: block;
}

.main-nav .menu-main-menu-container ul ul li {
  display: block;
  border-bottom: 1px solid #eee;
  white-space: nowrap;
}

.main-nav .menu-main-menu-container ul ul li a {
  padding: 10px;
  display: block;
  font-weight: normal;
  font-size: 0.95rem;
	margin-bottom: 0;
  color: var(--nav-color);
}
.main-nav .menu-main-menu-container ul ul li a::before {
	content: none;
}
/* .main-nav .menu-main-menu-container ul ul li a span {
	display: inline-block;
	width: 100%;
	height: 100%;
} */




/*
  MOBILE RESPONSIVE MEDIA QUERIES - specific to general
    page layout at specific screen width
*/
@media (max-width: 1050px) {
  .page-wrap {
    grid-template-columns: 60px 1fr;
  }
  .site-sidebar {
    width: 60px;
    z-index: 10000;
  }
  .site-sidebar.sidebar-collapsed .main-nav li {
    margin-inline: 5px;
  }
  .site-sidebar.sidebar-collapsed .main-nav li a {
    overflow: clip;
  }
  .site-sidebar.sidebar-collapsed .main-nav li a .link-text {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: none;
  }
	.site-sidebar.sidebar-collapsed .main-nav .menu-main-menu-container > ul > li:hover > ul {
		display: none;
	}
  .site-sidebar.sidebar-expanded {
    width: 300px;
  }
  .site-sidebar.sidebar-expanded .main-nav ul li a .link-text {
    display: inline;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.2s 0.05s;
  }
  .site-sidebar:not(.sidebar-collapsed):not(.sidebar-expanded) {
    width: 300px;
  }
  .site-sidebar:not(.sidebar-collapsed):not(.sidebar-expanded) .main-nav ul li a .link-text {
    display: inline;
    opacity: 0;
    visibility: visible;
    transition: opacity 0.2s 0s;
  }
  .site-sidebar .main-logo {
    display: flex;
	  align-items: center;
	  justify-content: center;
    margin-bottom: 2rem;
/*     width: 140px;
    min-width: 140px; */
	  width: 80px;
	  min-width: 80px;
    margin-inline: auto;
  }
	.site-sidebar .main-logo h1 {
		font-size: var(--smallFontSize);
	}
  .site-sidebar .book-wrap a.book {
    min-width: unset;
    max-width: 300px;
    border-radius: unset;
    text-wrap: balance;
  }
  .site-sidebar .book-wrap a.book:hover, .site-sidebar .book-wrap a.book:focus {
    opacity: 1;
  }
}
/*
  WordPress Styles for Main-menu, mobile, and sidebar
*/
/* adds color to active link via wordpress class */
@media (max-width: 1050px) {
  .main-nav .current_page_item > a,
  .main-nav .current-menu-ancestor > a {
    opacity: 1;
  }
}
@media (min-width: 1050px) {
  .main-nav .current_page_item > a,
  .main-nav .current-menu-ancestor > a {
    background: var(--green);
    opacity: 1;
  }
}
/*-------------------------------------
  06 - PAGES PAGES PAGES PAGES PAGES
--------------------------------------*/
/**************************************
  GLOBAL REUSABLE PAGE COMPONENTS
***************************************/
/**************************************
  HOME PAGE
***************************************/
/*
  hero
*/
#hero {
  display: grid;
  height: auto;
  width: 100%;
  position: relative;
  min-height: 60vh;
  background: url("img/hero-fill.png") center/100% no-repeat;
  background-size: cover;
}
#hero .title {
  grid-column: 1/-1;
  grid-row: 1;
  align-self: end;
  margin-left: 3rem;
  transform: translateY(4rem);
  z-index: 10;
}
#hero .title img {
  width: 70%;
  max-width: 500px;
}
#hero .ppd-logo {
  grid-column: 1/-1;
  grid-row: 1;
  align-self: start;
  justify-self: end;
  margin-right: 2rem;
  margin-top: 2rem;
  background: url("img/logo-ppd-color.png") center/100% no-repeat;
  width: 116px;
  height: 120px;
}

@media (max-width: 1100px) {
  #hero .title {
    margin-left: -0.75rem;
  }
}
/*
  MAIN
*/
main {
  margin-top: -10px;
}

/*
  HOME INTRO SECTION
*/
.intro {
  padding-block: 7rem 6rem;
  background: url("img/check-bg.svg") center/100% no-repeat;
  background-size: cover;
  background-position: 10% 50%;
  width: 100%;
  height: auto;
  position: relative;
}
.intro .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 60%;
  max-width: 50rem;
  text-align: center;
  z-index: 1;
}
.intro .inner h2 {
  text-wrap: balance;
  max-width: 500px;
}
.intro::after {
  content: "";
  position: absolute;
  right: 0;
  top: -4rem;
  width: 300px;
  height: 300px;
  opacity: 1;
  background: url("img/intro-mark.svg") center/100% no-repeat;
  background-size: cover;
}

@media (max-width: 1350px) {
  .intro .inner {
    width: 100%;
  }
  .intro::after {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 600px) {
  .intro::after {
    content: none;
  }
}
/*
  HOME EATS SECTION
*/
.eats {
  padding-block: 10rem 5rem;
  position: relative;
  overflow-x: clip;
}
.eats .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 60%;
  max-width: 47rem;
  text-align: center;
  position: relative;
  z-index: 10;
}
.eats .inner h3 {
  text-wrap: balance;
}
.eats::before {
  content: "";
  position: absolute;
  left: 0;
  top: -3rem;
  width: 450px;
  height: 350px;
  opacity: 1;
  background: url("img/born-to-partee.svg") center/100% no-repeat;
  background-size: cover;
}
.eats::after {
  content: "";
  position: absolute;
  right: -1rem;
  top: -6rem;
  width: 425px;
  height: 375px;
  opacity: 1;
  background: url("img/hungry-happy-mark.png") center/100% no-repeat;
  background-size: cover;
  z-index: 10;
}

@media (max-width: 1350px) {
  .eats {
    display: grid;
    grid-template-rows: auto 1fr auto;
    justify-items: center;
    gap: 3rem;
    padding-block: unset;
  }
  .eats .inner {
    width: 100%;
  }
  .eats .inner h3 {
    max-width: 300px;
  }
  .eats::before {
    position: unset;
    margin-top: -3rem;
  }
  .eats::after {
    position: unset;
    margin-bottom: -3rem;
  }
}
@media (max-width: 600px) {
  .eats::before {
    width: 350px;
    height: 275px;
    margin-left: -5rem;
  }
  .eats::after {
    width: 300px;
    height: 250px;
  }
}
@media (max-width: 400px) {
  .eats::before {
    margin-left: -5rem;
  }
  .eats::after {
    width: 250px;
    height: 200px;
  }
}
/*
  HOME AREAS SECTION
*/
.areas {
  padding-block: 5rem;
  background: var(--green-light);
  overflow-x: clip;
  position: relative;
}
.areas .inner header {
  display: inline-block;
  margin-bottom: 1rem;
  position: relative;
  z-index: 10;
}
.areas .inner header h4 {
	font-size: 4rem;
	line-height: 1;
  margin-bottom: 0;
}
.areas .inner header h4.sub-title {
  text-align: right;
  margin-right: -2rem;
  padding-right: 2rem;
  font-size: 2rem;
}
.areas .inner .cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  gap: 4rem 2rem;
  padding-top: 5rem;
  position: relative;
  z-index: 10;
}
.areas .inner .cards .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  background: var(--white);
  max-width: 750px;
  padding: 0 2rem 2rem;
  border-radius: 10px;
  box-shadow: rgba(106, 187, 82, 0.2) 0px 2px 8px 0px;
  text-align: center;
}
.areas .inner .cards .card .top {
  margin-top: -2rem;
}
.areas .inner .cards .card .top img {
  background: var(--white);
  padding: 1rem;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 5 / 4;
  width: 100%;
}
.areas .inner .cards .card .top p.title {
  display: inline-block;
  background: var(--green);
  margin: 0;
  padding: 1rem 1rem .75rem;
  font-family: bartender-script;
  font-size: 2.2rem;
  line-height: 1.2;
  text-transform: capitalize;
  color: var(--white);
  margin-top: -2rem;
}
.areas .inner .cards .card p.desc .accent {
	font-size: 1.4rem;
}
.areas::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: -3rem;
  width: 425px;
  height: 375px;
  opacity: 1;
  background: url("img/pic-mark.png") center/100% no-repeat;
  background-size: cover;
}
.areas::before {
  content: "";
  position: absolute;
  right: -3rem;
  top: 0;
  width: 400px;
  height: 400px;
  opacity: 1;
  background: url("img/checker-bg-square.png") center/100% no-repeat;
  background-size: cover;
}
@media (min-width: 1650px) {
	.areas .inner .cards {
		grid-template-columns: 1fr 1fr 1fr 1fr;
	}
}
@media (max-width: 1350px) {
  .areas .inner header {
    left: 50%;
    transform: translateX(-50%);
  }
  .areas .inner .cards {
    grid-template-columns: 1fr;
  }
  .areas::after {
    content: none;
  }
  .areas::before {
    top: 0;
    height: 100%;
    background: url("img/checker-bg-mobile.png") center/100% no-repeat;
    background-size: cover;
  }
}
@media (max-width: 500px) {
  .areas .inner header h4 {
		font-size: 3rem;
	}
	.areas .inner header h4.sub-title {
		font-size: 1.7rem;
	}
}



/**************************************
  CONTENT
***************************************/
/**************************************
  INSIDE PAGES
***************************************/
/*
  FEATURE IMAGE
*/
.feature {
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
}
.feature .feature-img {
  grid-column: 1/-1;
  grid-row: 1;
}
.feature .feature-img img {
  width: 100%;
  min-height: 45vh;
  max-height: 50vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.feature .title {
  position: absolute;
  left: 0;
  bottom: -1rem;
  margin-left: 5%;
  transform: translateY(4rem);
  z-index: 10;
}
.feature .title img {
  width: 90%;
  max-width: 500px;
  margin-bottom: 3rem;
}

@media (max-width: 1050px) {
  .feature {
    padding: 0;
  }
}
@media (max-width: 800px) {
  .feature .title img {
    max-width: 350px;
  }
}
/*
  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;
}

/*-------------------------------------
  07 - FOOTER FOOTER FOOTER FOOTER FOOTER FOOTER
--------------------------------------*/
/*
  Footer TEE IT UP Section
*/
.tee-it-up {
  padding-block: 12rem 5rem;
  background: url("img/green-footer-bg.png") center/100% no-repeat;
  background-size: cover;
  background-position: 10% 50%;
  width: 100%;
  height: auto;
  position: relative;
  overflow-x: clip;
}
.tee-it-up .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  width: 60%;
  max-width: 47rem;
  position: relative;
  z-index: 10;
}
.tee-it-up .inner h5,
.tee-it-up .inner p {
  color: var(--white);
  text-align: center;
}
.tee-it-up::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: -2rem;
  width: 489px;
  height: 353px;
  opacity: 1;
  background: url("img/fore-sure-bg.svg") center/100% no-repeat;
  background-size: contain;
}
.tee-it-up::after {
  content: "";
  position: absolute;
  right: 0;
  top: -2rem;
  width: 377px;
  height: 348px;
  opacity: 1;
  background: url("img/footer-mark.png") center/100% no-repeat;
  background-size: contain;
}
.tee-it-up .clubs {
  position: absolute;
  right: 2rem;
  top: 0;
  height: 105%;
}

@media (max-width: 1350px) {
  .tee-it-up {
    display: grid;
    grid-template-rows: auto 1fr auto;
    justify-items: center;
    gap: 3rem;
    padding-block: unset;
    background: url("img/green-footer-bg-mobile.png") center/100% no-repeat;
    background-position: 50% 0;
  }
  .tee-it-up .inner {
    width: 100%;
  }
  .tee-it-up::before {
    position: unset;
    margin-top: -3rem;
  }
  .tee-it-up::after {
    position: unset;
    margin-bottom: -3rem;
  }
  .tee-it-up .clubs {
    height: 40%;
    top: 50%;
    transform: translateY(-50%);
    right: -3rem;
  }
}
@media (max-width: 600px) {
  .tee-it-up::before {
    width: 350px;
    height: 210px;
  }
  .tee-it-up::after {
    width: 300px;
    height: 280px;
  }
}
@media (max-width: 400px) {
  .tee-it-up::before {
    width: 300px;
    height: 160px;
  }
  .tee-it-up::after {
    width: 300px;
    height: 280px;
  }
}
/* Main Footer Area */
.site-footer {
  background: var(--green);
}
.site-footer .inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem 5rem;
  align-items: center;
  padding-block: 4rem;
}
.site-footer .inner .left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.site-footer .inner .left .social-icons .icon {
  display: inline-block;
  vertical-align: middle;
  padding: 5px;
  width: 45px;
  height: 45px;
  border-radius: 6px;
}
.site-footer .inner .left .social-icons .fb {
  background: url("img/icon-fb.svg") center/40% no-repeat;
}
.site-footer .inner .left .social-icons .x {
  background: url("img/icon-x.svg") center/70% no-repeat;
}
.site-footer .inner .left .social-icons .insta {
  background: url("img/icon-insta.svg") center/70% no-repeat;
}
.site-footer .inner .left .social-icons .yt {
  background: url("img/icon-yt.svg") center/70% no-repeat;
}
.site-footer .inner .left .social-icons .icon:hover {
  background-color: var(--green-dark);
  opacity: 1;
}
.site-footer .inner .center {
  display: flex;
  gap: 1rem 5rem;
}
.site-footer .inner .center * {
  color: var(--white);
}
.site-footer .inner .center .contact .address {
	display: inline-block;
}
.site-footer .inner .center nav li {
  line-height: 1.1;
  margin-bottom: 0.7rem;
}
.site-footer .inner .center nav li a {
  padding-block: 0.25rem;
}
.site-footer .inner .center nav li a:hover {
  color: var(--green-dark);
}
.site-footer .inner .center nav li ul {
	display: none;
}
.site-footer .inner .ppd-logo {
  align-self: start;
}
.site-footer .cred {
  margin: 0;
  padding: 2rem 1rem;
  background: var(--green-dark);
  text-align: center;
  color: var(--white);
}

@media (max-width: 1350px) {
  .site-footer .inner .center {
    flex-direction: column;
  }
}
@media (max-width: 1200px) {
  .site-footer .inner {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .site-footer .inner .center {
    text-align: center;
  }
  .site-footer .inner .center .contact {
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--white);
  }
  .site-footer .inner .center .footer-nav {
    padding-top: 1rem;
  }
}

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

/* Live Edits */
.kt-blocks-accordion-header {
	font-family: var(--p-font);
}