/*
Theme Name: Epic Pools 2026
Author:
Author URI:
Description: This site was built by Central States Marketing
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: epic
*/
/***************************************
TABLE OF CONTENTS

01 - BASE
      - Reset
      - Colors
      - Sizing
      - Typography
02 - UTILITIES
      - Variables
      - Helpers
03 - COMPONENTS
      - Buttons
      - Icons
      - Animations
04 - LAYOUT
      - Layout
      - Header
      - Footer
05 - PAGES
      - Home
      - Inside Pages
06 - PLUGINS

***************************************/
/*-------------------------------------
  01 - BASE - BASE - BASE - BASE - BASE
--------------------------------------*/
/* ----- RESET ----- */
/*
  HTML / Body
*/
html {
  scroll-behavior: smooth;
}

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

* {
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  margin: 0;
  padding: 0;
}

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

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

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

hr {
  height: 3px;
  margin: 2rem 0;
  border: none;
  background: var(--black-60);
}

/* ----- COLORS ----- */
/*
 Colors / Typography @ root
*/
:root {
  /*
    Neutral Colors
  */
  --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 (OKLCH)

    IMPORTANT: When changing these colors for a new project,
    also update inc/kadence/kadence-colors.php to keep the editor
    color palette in sync!
  */
  --solar: oklch(0.8197 0.1579 77.49);
  --solar-hover: oklch(0.88 0.14 77.49);
  --aqua: oklch(0.7175 0.1355 225.95);
  --navy: oklch(0.4091 0.0785 231.62);
  --navy-hover: oklch(0.52 0.07 231.62);
  --warm-white: oklch(0.975 0.0053 106.5);
  --white: oklch(1 0 0);
  --black: oklch(0 0 0);
  --primary-font-color: oklch(0.45 0 0);
  /*
    Global Font Colors
  */
  --primary-color: var(--primary-font-color);
  --h-color: var(--aqua);
  --p-color: var(--primary-font-color);
  --nav-color: var(--white);
  --accent-color: var(--navy);
}

/* ----- SIZING ----- */
/*
    Global Sizing (widths, paddings, etc)
*/
:root {
  --wrapper-max-width--lg: 1550px;
  --wrapper-max-width: 1400px;
  --wrapper-max-width--sm: 1200px;
  --wrapper-max-width--x-sm: 800px;
 
}

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

/* ----- TYPOGRAPHY ----- */
/*
  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;
  }
}
/*
    Global Font Sizing
*/
:root {
  --baseFontSize: 1rem;
  --baseNavSize: 0.94rem;
  --smallFontSize: 0.8rem;
  --smallestFontSize: 0.512rem;
  --heading-1: 3.6rem;
  --heading-2: 2.6rem;
  --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: "DM Sans", sans-serif;
  --h-font: "Bebas Neue", sans-serif;
  --btn-font: "Bebas Neue", sans-serif;
  --p-font: "DM Sans", sans-serif;
  --nav-font: "Bebas Neue", sans-serif;
  --accent-font: "Playfair Display", serif;
}

/*
  Headings
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--h-font);
  color: var(--h-color);
  margin: 0 0 1rem;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-wrap: balance;
}

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

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

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

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

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

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 {
  text-transform: unset;
}

.content h2 {
  text-transform: unset;
}

.content h3 {
  text-transform: unset;
}

.content h4 {
  text-transform: unset;
}

.content h5 {
  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;
}
a:hover, a:focus {
  opacity: 0.7;
}

.content a:not(.btn, .button) {
  color: var(--primary-font-color);
  text-decoration: underline;
  text-decoration-thickness: 0.1rem;
  text-underline-offset: 0.2rem;
}

.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;
/*   text-wrap: balance; */
}

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,
.content ol,
.post-content ol {
  padding: 0 0 1.5rem 1.2rem;
}

.content ul li,
.post-content ul li {
  list-style: disc;
  list-style-position: outside;
}
.content ol li,
.post-content ol li {
	list-style: decimal;
}

.wp-block-kadence-query ul li {
  list-style: none;
}

/*
  Span
*/
span {
  font-family: inherit;
  font-size: inherit;
}

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

strong {
  font-weight: 700;
}

/*
  Accent Text
*/
.accent,
p.accent {
  font-family: var(--accent-font);
  color: var(--accent-color);
  font-weight: 600;
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}

/*-------------------------------------
  02 - UTILITIES UTILITIES UTILITIES
--------------------------------------*/
/* ----- VARIABLES ----- */
/*
  Random Custom Properties
*/
:root {
  /* Transitions */
  --transition: all 0.2s cubic-bezier(0.47, 0, 0.745, 0.715);
  /* Border-radius */
  --radius: 30px;
}

/* ----- HELPERS ----- */
/*
  Helper classes
*/
/*
  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
*/
.header-shadow {
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
}

/*
  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 - COMPONENTS COMPONENTS COMPONENTS
--------------------------------------*/
/* ----- BUTTONS ----- */
/*
  Buttons
*/
.btn,
a.btn,
.wp-block-button__link,
input[type=submit] :not(.search-form),
.gform_button {
  display: inline-block;
  background: var(--solar);
  color: var(--white);
  border-radius: 0;
  padding: 1.2rem 2.5rem;
  margin-bottom: 0;
  max-width: 300px;
	font-size: 1rem;
  font-family: var(--btn-font) !important;
  letter-spacing: 1px;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.1;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
}
.gform_button {
	border: none !important;
}
.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(--solar-hover);
  color: var(--white);
  opacity: 1;
}

.btn.btn--secondary {
  background: var(--navy);
}
.btn.btn--secondary:hover, .btn.btn--secondary:focus {
  background: var(--navy-hover);
  opacity: 1;
}

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

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.btn-group > * {
  flex: 1; /*  */
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}

.btn-center {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/*
  Links - Text 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 ----- */
/*
  Icons
*/
/*
  Icon before 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 after text
*/
.icon-after {
  position: relative;
}
.icon-after::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  transform: translateX(0.7rem);
  background: url("img/icons/icon-arrow-yellow.svg") center no-repeat;
  transition: var(--transition);
}
.icon-after:hover {
  opacity: 1;
}
.icon-after:hover::after {
  transform: translateX(1rem);
}

/*
  Social Icons
*/
.social-icons .icon {
  display: inline-block;
  vertical-align: middle;
  padding: 5px;
  margin-inline: 0.25rem;
  width: 35px;
  height: 35px;
  border-radius: 3px;
}

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

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

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

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

.social-icons .icon:hover {
  background-color: var(--navy-hover);
  opacity: 1;
}

/* ----- ANIMATIONS ----- */
/*
  Animations
*/
/*-------------------------------------
  04 - LAYOUT 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: var(--wrapper-max-width);
}

.wrapper.wrapper--sm {
  max-width: var(--wrapper-max-width--sm);
}

.wrapper.wrapper--x-sm {
  max-width: var(--wrapper-max-width--x-sm);
}

.wrapper.wrapper--lg {
  max-width: var(--wrapper-max-width--lg);
}

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

.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;
}

/*
  Section Headers
*/
.header {
  margin-bottom: 3rem;
  text-align: center;
}

/*
  Alignment
*/
.align-left {
  text-align: left;
}

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

.align-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;
}

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

/* Kadence Blocks - adds back the 2rem inline pad needed */
.full-width > .kt-row-column-wrap > .kt-row-column-wrap {
  padding-inline: 2rem;
}

/* Kadence Blocks - when using the full-width class this fixes extra padding */
.full-width.kt-row-has-bg > .kt-row-column-wrap {
  padding-inline: 0;
}

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

/* ----- SITE HEADER ----- */
/*
  Site Header
*/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.site-header .inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0 2rem;
  align-items: center;
}
.site-header .main-logo {
  padding-block: 2rem;
}
.site-header .main-logo img {
  width: 175px;
}
.site-header img.bbb-logo {
  width: 45px;
}

@media (max-width: 500px) {
  .site-header .main-logo img {
    width: 125px;
  }
}
/* Add styles here to shrink down header after scroll */
.site-header.shrink {
  background: var(--navy);
}
.site-header.shrink .inner .main-logo {
  padding-block: 1.5rem;
}
.site-header.shrink .inner .main-logo img {
  width: 125px;
}

/*
  Main Navigation
*/
.main-nav {
  height: 100%;
}
.main-nav > ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}
.main-nav > ul > li {
  display: flex;
  align-items: center;
  margin-left: 2%;
  height: 100%;
  position: relative;
}
.main-nav > ul > li > a {
  display: inline-block;
  font-family: var(--nav-font);
  font-size: 1.2rem;
  letter-spacing: 1px;
  color: var(--nav-color);
  padding: 3px 10px 3px 10px;
  margin-bottom: 0;
  text-transform: uppercase;
  position: relative;
}
.main-nav > ul > li > a:hover, .main-nav > ul > li > a:focus {
  color: var(--solar);
  opacity: 1;
}
.main-nav > ul > li:last-of-type a {
  border: 2px solid var(--solar);
  padding: 0.8rem 1.4rem;
  color: var(--solar);
}
.main-nav > ul > li:last-of-type a:hover {
  background: var(--solar);
  color: var(--white);
  opacity: 1;
}
.main-nav > ul > li.menu-item-has-children:not(:last-of-type):hover > a {
  color: var(--solar);
}
/*
  Dropdown area
*/
/* second level */
.main-nav ul ul {
  margin: 0;
  position: absolute;
  padding: 0 0;
  top: 85%;
  left: 0;
  height: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 200px;
  background-color: var(--navy-hover);
  border-radius: 0 0 10px 10px;
  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;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px) scale(0.98);
  transform-origin: top center;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}

.main-nav ul li:hover > ul,
.main-nav ul li:focus-within > ul {
  border-radius: 0 0 10px 10px;	
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.main-nav ul ul li {
  margin: 0;
  height: auto;
  border-radius: 0 0 10px 10px;
}

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

.main-nav ul ul li a {
  display: block;
  color: var(--white);
  padding: 0.6rem 1rem;
  margin-bottom: 0;
  text-align: left;
  font-size: 0.925rem;
}
.main-nav ul ul li a:hover {
  opacity: 1;
}

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

/* third level */
.main-nav ul ul ul {
  top: 0;
  left: 100%;
  margin-top: 0;
}

/* End Dropdown area */
/*
  MOBILE-MENU-ICON / MOBILE SEARCH ICON
*/
/*
  Mobile Menu Icon
*/
.menu-icon {
  cursor: pointer;
  display: none;
  z-index: 6000;
}
.menu-icon span {
  display: block;
  width: 40px;
  height: 3px;
  margin-block: 9px;
  background: var(--white);
}
.menu-icon:hover span {
  background: var(--solar);
}

.site-header .inner:has(.mobile-nav.open) .menu-icon span {
  background: var(--solar);
}

.site-header .inner:has(.mobile-nav.open) .menu-icon span:nth-of-type(1) {
  transform: translate(0, 12px) rotate(-45deg);
}

.site-header .inner:has(.mobile-nav.open) .menu-icon span:nth-of-type(2) {
  opacity: 0;
}

.site-header .inner:has(.mobile-nav.open) .menu-icon span:nth-of-type(3) {
  transform: translate(0, -12px) rotate(45deg);
}

/*
  Mobile Navigation
*/
.mobile-nav {
  display: grid;
  justify-items: center;
  justify-content: center;
  align-items: start;
  gap: 1rem;
  padding: 2rem 2rem 2rem 2rem;
  margin-bottom: 3rem;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: var(--navy);
  opacity: 0;
  visibility: hidden;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  z-index: 100;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease-in-out;
}

html.menu-open,
body.menu-open {
  overflow: hidden;
}

.mobile-nav .exit {
  width: 30px;
  height: 30px;
  padding: 10px;
  cursor: pointer;
  background: url("img/close.svg") center/100% no-repeat;
}

.mobile-nav .mobile-logo img {
  width: 175px;
}

.mobile-nav nav {
  align-self: start;
  width: 100%;
  margin-top: 3rem;
  padding-bottom: 5rem;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mobile-nav ul li {
  text-align: center;
  margin-bottom: 1rem;
  width: 100%;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-nav.open ul > li {
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav.open ul > li:nth-child(1) {
  transition-delay: 0.06s;
}
.mobile-nav.open ul > li:nth-child(2) {
  transition-delay: 0.12s;
}
.mobile-nav.open ul > li:nth-child(3) {
  transition-delay: 0.18s;
}
.mobile-nav.open ul > li:nth-child(4) {
  transition-delay: 0.24s;
}
.mobile-nav.open ul > li:nth-child(5) {
  transition-delay: 0.3s;
}
.mobile-nav.open ul > li:nth-child(6) {
  transition-delay: 0.36s;
}
.mobile-nav.open ul > li:nth-child(7) {
  transition-delay: 0.42s;
}
.mobile-nav.open ul > li:nth-child(8) {
  transition-delay: 0.48s;
}
.mobile-nav.open ul > li:nth-child(9) {
  transition-delay: 0.54s;
}
.mobile-nav.open ul > li:nth-child(10) {
  transition-delay: 0.6s;
}
.mobile-nav.open ul > li:nth-child(11) {
  transition-delay: 0.66s;
}
.mobile-nav.open ul > li:nth-child(12) {
  transition-delay: 0.72s;
}

.mobile-nav ul li a {
  display: inline-block;
  font-size: 1.1rem;
	font-weight: 700;
  color: var(--white);
  padding: 8px 15px;
	margin-bottom: 0;
  text-transform: uppercase;
  position: relative;
}

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

/*
  Mobile DropDown
*/
.mobile-nav ul.sub-menu li {
  border-bottom: none;
}

.mobile-nav ul ul {
  display: flex;
  flex-direction: column;
}

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

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

.mobile-nav .btn {
  border: none;
  margin-bottom: 1rem;
}
.mobile-nav .btn:hover, .mobile-nav .btn:focus {
  opacity: 0.65;
}

/*
  WordPress Styles for Main-menu, mobile, and sidebar
*/
/* adds color to active link via wordpress class */
.main-nav .current_page_item > a,
.main-nav .current-menu-ancestor > a {
  background: var(--blue);
}

.mobile-nav .current_page_item > a,
.mobile-nav .current-menu-ancestor > a {
  color: var(--black-60);
}

/*
  Search Form
*/
.search-form {
  display: grid;
  grid-template-columns: 5fr auto;
  align-content: center;
  padding: 3px;
  right: 0;
  overflow: hidden;
  transition: var(--transition);
  z-index: 20;
}

.search-icon {
  width: 35px;
  height: 35px;
  background: url("img/icon-search.svg") center/60% no-repeat;
  cursor: pointer;
  border: none;
}

.search-box {
  border: 0;
  grid-column: 1/span 1;
  grid-row: 1;
  padding-left: 10px;
  font-size: 0.9rem;
  background: #fff;
  outline: none;
  text-align: center;
}

input.search-box {
  color: var(--black-20);
  font-size: 0.8rem;
}

/*
  MOBILE RESPONSIVE MEDIA QUERIES - specific to general
    page layout at specific screen width
*/
@media (max-width: 1050px) {
  .site-header .inner {
    grid-template-columns: 1fr;
  }
  .main-logo {
    grid-row: 1;
    grid-column: 1/-1;
    justify-self: center;
  }
  .main-nav {
    display: none;
  }
  .menu-icon {
    grid-row: 1;
    grid-column: 1/-1;
    justify-self: end;
    align-self: center;
    display: inline-block;
  }
  .bbb-logo {
    display: none;
  }
}
@media (min-width: 1050px) {
  .mobile-nav,
  .mobile-overlay {
    display: none;
  }
  .search-trigger {
    display: none;
  }
}
/* ----- SITE FOOTER ----- */
/*
  Site Footer
*/
.get-started {
  padding-block: 12rem 8rem;
  background-image: url("img/water-bg-square.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--white);
  width: 100%;
  height: 100%;
  min-height: 10rem;
  position: relative;
}
.get-started::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 100%;
  height: 10vh;
  min-height: 125px;
  background: url("img/white-curve.png") no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 20;
  transform: scaleX(-1);
}
@media (max-width: 768px) {
  .get-started::after {
    height: 5vh;
    min-height: 50px;
  }
}
.get-started .inner {
  text-align: center;
}
.get-started .inner p {
  font-family: var(--h-font);
  font-size: clamp(2.5rem, 0.714rem + 4.762vw, 5rem);
  color: var(--white);
}
.get-started .inner p span {
  font-family: var(--accent-font);
  font-style: italic;
  font-size: clamp(1.5rem, 0.429rem + 2.857vw, 3rem);
  font-weight: 900;
  padding-inline: 0.2rem;
}

/* Main Footer Area */
.site-footer {
  background: var(--navy);
  padding-block: 4rem 2rem;
}
.site-footer .inner .contact {
  display: grid;
  place-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.site-footer .inner .contact .footer-logo img {
  width: 150px;
}
.site-footer .inner .bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem 2rem;
}
.site-footer .inner .bottom-bar * {
  color: var(--white);
}
.site-footer .inner .bottom-bar .cred {
  justify-self: start;
  margin: 0;
  font-size: 0.85rem;
  text-align: center;
}
.site-footer .inner .bottom-bar .financial {
  display: grid;
  justify-items: end;
  row-gap: 0.2rem;
}
.site-footer .inner .bottom-bar .financial img {
  width: 180px;
}
.site-footer .inner .bottom-bar .financial p {
  margin: 0;
  font-size: 0.85rem;
}

@media (max-width: 1000px) {
  .site-footer .inner .bottom-bar {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .site-footer .inner .bottom-bar .financial {
    justify-items: center;
  }
}
/*-------------------------------------
  05 - PAGES PAGES PAGES PAGES PAGES
--------------------------------------*/
/* ----- GLOBAL ----- */
.site-content {
  background: url("img/texture-square.png") center/100%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
}

/* ----- HOME PAGE ----- */
/*
  SLIDER
*/
#slider {
  height: auto;
  position: relative;
  overflow: visible;
}
#slider::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10vh;
  min-height: 150px;
  background: url("img/texture-curve-2.png") center/100% no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 20;
}
@media (max-width: 768px) {
  #slider::after {
    height: 10vh;
    min-height: 50px;
  }
}
#slider ul.slides li {
  display: grid !important;
  grid-template-columns: 1fr;
  position: relative;
}
#slider ul.slides li::before {
  content: "";
  grid-column: 1/-1;
  grid-row: 1;
  display: block !important;
  background-color: rgba(0, 0, 0, 0.35);
  z-index: 1;
}
#slider ul.slides li img {
  grid-column: 1/-1;
  grid-row: 1;
  -o-object-fit: cover;
     object-fit: cover;
  height: 90vh;
  min-height: 700px;
  width: 100%;
}
#slider ul.slides li .caption-wrap {
  grid-column: 1/-1;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  opacity: 1;
  height: 100%;
  padding-inline: var(--gap);
  z-index: 10;
}
#slider ul.slides li .caption-wrap .caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
#slider ul.slides li .caption-wrap .caption h1 {
  font-size: clamp(4rem, 2.571rem + 3.81vw, 6rem);
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  line-height: 1;
}
#slider ul.slides li .caption-wrap .caption h1 br {
  line-height: 0;
  display: block;
}
#slider ul.slides li .caption-wrap .caption h1 em {
  display: block;
  text-transform: none;
  font-family: var(--accent-font);
  font-size: 1.8rem;
  line-height: 1;
  vertical-align: baseline;
  margin: 0;
  margin-bottom: 1rem;
}

/*  metaslider */
.metaslider .flexslider .flex-control-nav {
  bottom: 8rem;
}

.metaslider .flexslider .flex-control-nav li a {
  background: var(--white) !important;
  margin: 0 0.4rem;
  width: 9px;
  height: 9px;
}

.metaslider .flexslider .flex-control-nav li a.flex-active {
  background: var(--solar) !important;
  outline: none !important;
}

/*
  MAIN
*/
/*
  HOME INTRO SECTION
*/
.intro {
  margin-bottom: 6rem;
}
.intro header {
  margin-bottom: 3rem;
  text-align: center;
}
.intro .cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: stretch;
	margin-bottom: 5rem;
}
.intro .cards .card {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  width: 100%;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.intro .cards .card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.intro .cards .card img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
}
.intro .cards .card h3.title {
  margin-bottom: 0;
  color: var(--navy);
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
          hyphens: auto;
  min-width: 0;
}
.intro .cards .card .btn {
  margin-top: auto;
  align-self: center;
  width: auto;
}
.intro .btn-center {
	flex-direction: column;
	align-items: center;
}
.intro .btn-center p {
	margin: 0;
	font-weight: 700;
	font-size: 1.2rem;
	text-align: center;
	line-height: 1.2;
}
.intro .btn-center .btn {
	background: oklch(0.62 0.17 150)
}
.intro .btn-center .btn:hover {
	background: oklch(0.72 0.17 150)
}

oklch(0.62 0.17 150)

@media (prefers-reduced-motion: reduce) {
  .intro .cards .card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
@media (max-width: 1200px) {
  .intro .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .intro .cards {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
/*
  HOME PRODUCTS
*/
.our-products {
  display: grid;
  grid-template-columns: minmax(500px, 2fr) 2fr minmax(600px, 50%);
  background: var(--white);
  margin-bottom: 4rem;
}
.our-products .left-img {
  padding-block: 15rem;
  background: url("img/vert-pool-bg.png") center/100% no-repeat;
  background-size: cover;
  background-position: 80% 30%;
  width: 100%;
  height: 100%;
  min-height: 100%;
}
.our-products .copy {
  justify-self: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem;
  max-width: 40ch;
  text-align: center;
  transform: translateX(-1.5rem);
}
.our-products .copy header h3 {
  margin-bottom: 0;
}
.our-products .copy p:not(.accent) {
  margin-bottom: 0;
}
.our-products .ctas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.2rem;
}
.our-products .ctas .cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 3rem 1rem;
  background: var(--solar);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.our-products .ctas .cta:hover {
  transform: translateY(-2px);
  background: var(--solar-hover);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  opacity: 1;
}
.our-products .ctas .cta:hover .icon {
  transform: scale(1.03);
}
.our-products .ctas .cta:hover p {
  color: var(--white);
}
.our-products .ctas .cta .icon {
  width: 150px;
  height: 70px;
  background-size: contain;
  transition: transform 0.3s ease;
}
.our-products .ctas .cta p {
  margin-bottom: 0;
  color: var(--white);
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  text-wrap: balance;
  transition: color 0.3s ease;
}
.our-products .ctas .cta.cta-fiberglass .icon {
  background: url("img/icons/icon-fiberglaass.svg") center/100% no-repeat;
}
.our-products .ctas .cta.cta-vinyl .icon {
  background: url("img/icons/icon-vinyl.svg") center/100% no-repeat;
}
.our-products .ctas .cta.cta-service .icon {
  background: url("img/icons/icon-service.svg") center/80% no-repeat;
}
.our-products .ctas .cta.cta-landscaping .icon {
  background: url("img/icons/icon-landscaping.svg") center/100% no-repeat;
}

@media (max-width: 1800px) {
  .our-products {
    grid-template-columns: minmax(400px, 1.5fr) 2fr minmax(500px, 50%);
  }
}
@media (max-width: 1400px) {
  .our-products {
    grid-template-columns: minmax(100px, 1.2fr) 2fr minmax(450px, 50%);
  }
  .our-products .copy {
    transform: none;
  }
}
@media (max-width: 1000px) {
  .our-products {
    grid-template-columns: minmax(150px, 1fr) 2fr minmax(400px, 50%);
  }
}
@media (max-width: 850px) {
  .our-products {
    grid-template-columns: 1fr;
  }
  .our-products .left-img {
    display: none;
  }
  .our-products .copy {
    padding-block: 4rem;
  }
}
/*
  HOME GAALLERY
*/
.gallery {
  background: var(--white);
  padding-block: 4rem 2rem;
}
.gallery .gallery-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}
.gallery .gallery-images img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 500px;
  aspect-ratio: 1/1;
}

@media (max-width: 700px) {
  .gallery .gallery-images {
    grid-template-columns: 1fr;
  }
  .gallery .gallery-images img:last-child {
    display: none;
  }
}
/*
  HOME TESTIMONIALS
*/
.testimonials {
  background: var(--white);
  padding-block: 3rem 1rem;
}
.testimonials .testimonials-wrap {
  background: var(--warm-white);
  max-width: 800px;
  margin-inline: auto;
  padding-top: 60px;
  position: relative;
}
.testimonials .testimonials-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: url("img/icons/icon-quote.svg") center/100% no-repeat;
}

/* ----- INSIDE PAGE ----- */
/*
  FEATURE IMAGE
*/
.feature {
  display: grid;
  position: relative;
}
.feature::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15vh;
  min-height: 150px;
  background: url("img/texture-curve-2.png") center/100% no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 20;
}
@media (max-width: 768px) {
  .feature::after {
    height: 10vh;
    min-height: 50px;
  }
}
.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  z-index: 10;
  background: rgba(0, 0, 0, 0.2);
}
.feature > img {
  grid-column: 1/-1;
  grid-row: 1/-1;
  width: 100%;
  height: 60vh;
  min-height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 10%;
     object-position: 50% 10%;
}
.feature .title {
  grid-column: 1/-1;
  grid-row: 1/-1;
  align-self: center;
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 2rem;
  z-index: 100;
}
.feature .title h1 {
  color: var(--white);
  font-size: clamp(4rem, 2.571rem + 3.81vw, 6rem);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  text-wrap: balance;
}
.feature .title img {
  width: 400px;
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

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

/*-------------------------------------
  06 - PLUGINS PLUGINS PLUGINS PLUGINS
--------------------------------------*/
/* ----- KADENCE ----- */
/*  Advance Query Loop Specific Styles */
/* Kadence Query Loop / Posts: hide excerpts */
.wp-block-kadence-posts .entry-summary,
.wp-block-kadence-posts .kadence-post-excerpt,
.wp-block-query .wp-block-post-excerpt {
  display: none !important;
}

.wp-block-kadence-posts a:not(.btn, .button),
.wp-block-kadence-query-loop a:not(.btn, .button),
.kb-query-grid-wrap a:not(.btn, .button),
.kb-query-item a:not(.btn, .button) {
  text-decoration: none;
}

/* Make dropdown/select fill the whole Kadence section/column */
.filter-fullwidth select,
.filter-fullwidth .kb-forms-field select,
.filter-fullwidth .wp-block-kadence-form select,
.filter-fullwidth .wp-block-kadence-advanced-form select {
  width: 100% !important;
  max-width: 100% !important;
  display: block;
}

/* Pool shape image filter row */
.pool-shape-filter {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2rem;
}

.pool-shape-filter__item {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: var(--white);
  border: 2px solid #d9d9d9;
  border-radius: 0.25rem;
  color: inherit;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: center;
  text-decoration: none;
  transform: translateZ(0);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.pool-shape-filter__item.is-stagger {
  opacity: 0;
  transform: translateY(16px);
}

.pool-shape-filter__item.is-stagger.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pool-shape-filter__item:hover,
.pool-shape-filter__item:focus-visible {
  transform: scale(1.03);
  box-shadow: 0 8px 18px rgba(13, 43, 62, 0.12);
}

.pool-shape-filter__item.is-active {
  border: 2px solid var(--navy);
  transform: scale(1.06);
  box-shadow: 0 10px 22px rgba(13, 43, 62, 0.16);
}

@media (prefers-reduced-motion: reduce) {
  .pool-shape-filter__item.is-stagger {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.pool-shape-filter__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
  border-radius: 0.2rem;
  overflow: hidden;
  background: var(--white);
}

.pool-shape-filter__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.pool-shape-filter__label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.4rem;
  line-height: 1;
  font-size: 1.3rem;
  font-family: var(--h-font);
  font-weight: 500;
  letter-spacing: 1.1px;
  color: var(--navy);
  text-transform: uppercase;
  vertical-align: middle;
}

/* Active filters list */
.kb-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.kb-active-filter-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(13, 43, 62, 0.2);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 600;
}

/* Hides the filter set to query shapes  */
.wp-block-kadence-query-filter61_f9b5c7-4a {
  display: none !important;
}

/* Hide helper classes (more stable than block IDs) */
.pool-shape-filter-source,
.hide {
  display: none !important;
}




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