/*
Theme Name: Artemis 2023
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: artemis
*/
/***************************************
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
  */
  --black: #414a49;
  --brown: #936f4b;
  --cream: #fcfaf6;
  --grey: #d5d4ce;
  --brown-light: #cdbdac;
  --brown-lightest: #eae2d6;
  --purple-grey: rgb(73, 79, 88);
  --primary-text: #494f58;
}

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

/*
  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 {
  max-width: 100%;
  height: auto;
}

/*
  HTML / Body
*/
html {
  /* Gap */
  --gap: 2rem;
  --neg-gap: -2rem;
  /* Fluid Gap */
  --gap-fluid: 5vw;
  --neg-gap-fluid: -5vw;
  scroll-behavior: smooth;
}
@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: nimbus-sans, sans-serif;
  -webkit-text-size-adjust: none;
  line-height: 1.6;
	background: var(--cream);
  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: "p22-mackinac-pro", serif;
  color: var(--primary-text);
  margin: 0 0 1rem;
  line-height: 1.4;
}

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

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 {
  font-size: var(--heading-6);
  font-weight: 400;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-family: "p22-mackinac-pro", serif;
  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.88;
}

.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: nimbus-sans, sans-serif;
  font-size: var(--baseFontSize);
  color: var(--primary-text);
  transition: all 0.25s ease-in-out;
}
a:hover, a:focus {
  opacity: 0.6;
}

.content a {
  color: var(--primary-text);
}
.content a:hover, .content a:focus {
  opacity: 0.6;
}

/*
  Text --------------------
*/
/*
  Paragraph text
*/
p {
  font-family: nimbus-sans, sans-serif;
  color: var(--primary-text);
  font-size: var(--baseFontSize);
  font-weight: 300;
  margin-bottom: 1.5rem;
}
p::-moz-selection {
  background-color: var(--black-60);
  color: white;
}
p::selection {
  background-color: var(--black-60);
  color: white;
}

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

ul li,
ol li {
  font-family: nimbus-sans, sans-serif;
  color: var(--primary-text);
  font-size: var(--baseFontSize);
}

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

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

/* Kadence Blocks - make lists not bold */
.kt-svg-icon-list-text {
	font-weight: 300;
}

/*
  Span
*/
span {
  font-family: nimbus-sans, sans-serif;
  font-size: var(--baseFontSize);
}

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

strong {
  font-weight: 700;
}

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

/*
  Grey scratch - adds the scratch effect top and bottom of bg
*/
.grey-scratch {
  position: relative;
  margin-bottom: 5rem;
}
.grey-scratch::before {
  content: "";
  position: absolute;
  top: -50px;
  width: 100%;
  height: 100px;
  background: url("img/grey-scratch-top.png") center/100% no-repeat;
  background-size: cover;
}
.grey-scratch::after {
  content: "";
  position: absolute;
  bottom: -75px;
  width: 100%;
  height: 100px;
  background: url("img/grey-scratch-bottom.png") center/100% no-repeat;
  background-size: cover;
}

.max-height-500 img {
	max-height: 500px;
	object-fit: cover;
	object-position: center bottom;
	width: 100%;
	max-width: 300px !important;
}

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

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

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

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

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

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

/* 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, .pop-up-button {
  display: inline-block;
  background: var(--brown);
  color: var(--white);
  border-radius: 0 !important;
  padding: 10px 25px;
/*   margin: 0 10px 15px; */
  max-width: 300px;
  min-width: 100px;
  text-decoration: none;
  line-height: 1.1;
  cursor: pointer;
  text-align: center;
  transition: all 0.25s ease-in-out !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, .pop-up-button:hover, .pop-up-button:focus {
  background: var(--black);
  opacity: 1;
  color: var(--white);
}

.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 {
  display: inline-block;
  width: 25px;
  height: 25px;
  vertical-align: middle;
  margin: 0 4px;
  -webkit-mask-image: none;
          mask-image: none;
}

/*
  Social Icons
*/
/*
  Animations --------------------
*/
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*-------------------------------------
  05 - HEADER HEADER HEADER HEADER HEADER
       NAVIGATION NAVIGATION NAVIGATION
--------------------------------------*/
/*
  Site Header
*/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 1rem;
  z-index: 1000;
}
.site-header .inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.site-header .inner .main-logo {
  justify-self: center;
}
.site-header .inner .main-logo img {
  width: 200px;
}
.site-header .inner .links {
	grid-column: 3;
    justify-self: end;
	display: flex;
	gap: 5px 20px;
	flex-wrap: wrap;
	align-items: center;
}
.site-header .inner .links a {
  color: #e0e0df;
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 300;
  border-bottom: 1px solid transparent;
  z-index: 6000;
}
.site-header .inner .book:hover, .site-header .inner .book:focus {
  opacity: 1;
  border-bottom: 1px solid var(--white);
}

body.page-id-32 .site-header .inner {
/*   grid-template-columns: 1fr 1fr; */
}

body.page-id-32 .site-header .inner .main-logo {
  display: none;
}

/* Add styles here to shrink down header after scroll */
body:not(.page-id-32) .site-header.shrink {
  padding-block: 0;
}

.site-header.shrink {
  background: var(--purple-grey);
  box-shadow: 0 25px 25px -20px rgba(60, 60, 60, 0.3);
	padding-block: 0;
}
.site-header.shrink .inner .main-logo {
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
}
body.page-id-32 .site-header.shrink .inner .main-logo {
	display: block;
}

@media (max-width: 650px) {
  .site-header {
    background: var(--purple-grey);
  }
  .site-header .inner .menu-icon .menu-text {
    display: none;
  }
  .site-header .inner .main-logo {
    width: 125px;
  }
}
@media (max-width: 650px) {
	.site-header .inner .links {
		flex-direction: column;
	}
	.site-header .inner .links a {
		font-size: 1rem;
	}
}


/*
  Main Navigation
*/
.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: 3%;
  height: 100%;
  position: relative;
}
.main-nav ul li a {
  display: inline-block;
  color: #3e3e3e;
  font-size: 0.8rem;
  padding: 3px 10px 3px 10px;
  margin-bottom: 0;
  margin-left: 12px;
  text-transform: uppercase;
  position: relative;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  color: var(--black-60);
}

/*
  Dropdown area
*/
/* second level */
.main-nav ul ul {
  display: none;
  margin: 0;
  position: absolute;
  padding: 0;
  top: 100%;
  left: 0;
  width: 200px;
  background-color: var(--white-40);
  box-shadow: 3px 10px 25px -10px rgba(0, 0, 0, 0.45);
  z-index: 99999 !important;
}

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

.main-nav ul ul li {
  margin: 0;
}

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

.main-nav ul ul li a {
  display: block;
  color: var(--white);
  padding: 10px 0;
  text-align: left;
  font-size: 0.675rem;
  text-align: center;
  text-transform: uppercase;
}

/* 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 {
  align-self: center;
  display: grid;
  grid-template-columns: 60px auto;
  gap: 15px;
  align-items: center;
  max-width: -webkit-min-content;
  max-width: -moz-min-content;
  max-width: min-content;
  padding-block: 10px;
  color: #e0e0df;
  cursor: pointer;
  line-height: 0.7;
  transition: all 0.5s ease;
  z-index: 6000;
  position: relative;
}
.menu-icon .burg {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.menu-icon .burg span {
  display: inline-block;
  width: 50px;
  height: 1px;
  margin-block: 3px;
  background: #e0e0df;
}
.menu-icon .menu-text {
  font-size: 1.2rem;
  font-weight: 300;
}
.menu-icon:hover {
  opacity: 0.65;
}

.menu-icon.active .burg span:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
          transform: translateY(7px) rotate(45deg);
}
.menu-icon.active .burg span:nth-child(2) {
  opacity: 0;
}
.menu-icon.active .burg span:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
          transform: translateY(-7px) rotate(-45deg);
}
.menu-icon.active .menu-text {
  opacity: 0;
}

/*
  Mobile Navigation
*/
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 60px 2rem 10px 2rem;
  position: fixed;
  left: -125%;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 5000;
  background: var(--purple-grey);
  opacity: 0;
  overflow: auto;
  transition: all 0.4s ease-in-out;
	
  display: grid;
  grid-template-columns: 1.5fr 1fr;
	background: url("img/menu-bg.jpg") center/100% no-repeat;
	background-size: cover;
	padding: 0;
	
}
.mobile-nav::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, var(--purple-grey) 30%, rgba(73, 79, 88, .5) 100%);
}

.mobile-nav .exit {
  position: absolute;
  top: 30px;
  left: 54px;
  width: 50px;
  height: 50px;
  color: #fff;
  cursor: pointer;
  font-size: 2rem;
  font-weight: 700;
  padding: 10px;
  color: #fff;
  cursor: pointer;
}
.mobile-nav .exit svg path {
  fill: #fff;
}

.mobile-nav nav {
/*   margin-bottom: 50px; */
	
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: 1 / span 1;
	z-index: 100;
/*   background: var(--purple-grey); */
/*   background: linear-gradient(to right, var(--black) 50%, transparent 80%); */
}
@media (max-width: 800px) {
  .mobile-nav nav {
    grid-column: 1 / -1;
  }
}

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

.mobile-nav ul li a {
  display: inline-block;
  font-size: 1.2rem;
  color: #fff;
  padding: 12px 10px;
	margin: 0;
  text-transform: uppercase;
}

.mobile-nav ul li .sub-menu li a {
  padding: 6px 10px;
}

.mobile-nav li a:hover,
.mobile-nav li a:focus {
  color: var(--white-60);
}

.mobile-nav .mobile-logo {
  width: 250px;
}

/*
  Mobile DropDown
*/
.mobile-nav ul ul {
  display: none;
	margin-left: 20px;
}

.mobile-nav li:hover > ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.mobile-nav ul li.current_page_ancestor {
	text-decoration: underline;
}
.mobile-nav ul li.current_page_ancestor > ul,
.mobile-nav ul li.current_page_item > ul {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
}
.mobile-nav ul li.current_page_ancestor,
.mobile-nav ul li.current_page_item {
	font-weight: 700;
}

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

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

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

.mobile-nav.open {
  left: 0;
  opacity: 1;
  transition: all 0.4s ease-in-out;
}

.mobile-nav.open + .menu-icon svg path {
  fill: #fff;
}

.mobile-nav.open + .menu-icon:hover svg path {
  fill: var(--grey);
}

.mobile-nav .mobile-logo {
  text-align: center;
}

/*
  MOBILE RESPONSIVE MEDIA QUERIES - specific to general
    page layout at specific screen width
*/
@media (max-width: 1050px) {
  .main-nav {
    display: none;
  }
}
/*-------------------------------------
  06 - PAGES PAGES PAGES PAGES PAGES
--------------------------------------*/

/**************************************
  HOME PAGE
***************************************/
/*
  SLIDER
*/
#hero {
  display: grid;
  height: 90vh;
  position: relative;
  min-height: 400px;
  overflow: hidden;
}

#hero::before {
  content: "";
  display: block !important;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--purple-grey);
  opacity: 0.4;
}

#hero img.hero-img,
#hero video {
  grid-column: 1;
  grid-row: 1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 100%;
  width: 100%;
  aspect-ratio: 16/9;
  min-height: 400px;
  height: 90vh;
}

#hero .vid-caption {
  grid-column: 1/-1;
  grid-row: 1;
  place-self: center;
  text-align: center;
  padding: 2rem;
  z-index: 10;
}
#hero .vid-caption img.logo {
  width: 300px;
}

#hero .vid-caption p {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--white);
}

#hero .vid-caption p {
  margin-bottom: 1rem;
}

#hero .scroll {
  position: absolute;
  display: inline-block;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 30px;
  height: 60px;
  cursor: pointer;
  z-index: 200;
  background: url("img/icon-scroll.svg") center/100% no-repeat;
}

/*
  MAIN
*/
main {
  margin-top: -10px;
}

/*
  HOME INTRO SECTION
*/
.intro {
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  text-align: center;
  padding-block: 8rem 8rem;
}
.intro p {
  max-width: 500px;
}

/*
  HOME CARDS SECTION
*/
.cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
  width: 100%;
  margin-bottom: 12rem;
}
.cards .card {
  position: relative;
	max-height: 500px;
}
.cards .card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/2;
	max-height: 500px;
}
.cards .card .inner {
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  position: absolute;
  inset: 0;
  padding: 10px;
  transition-delay: 0.15s;
}
.cards .card .inner .icon {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
.cards .card .inner.active {
  opacity: 0;
  visibility: hidden;
}
.cards .card .inner.active ul li {
  font-size: 1.1rem;
  color: var(--white);
  text-align: center;
  line-height: 1.1;
  margin-bottom: 5px;
}
.cards .card .inner.active > * {
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.cards .card .inner.active:hover > * {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.cards .card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--purple-grey);
  opacity: 0.7;
}
.cards .card .title {
  position: absolute;
  bottom: 0;
  right: 50%;
  padding-left: 5%;
  padding-right: 5%;
  width: 90%;
  text-align: center;
  transform: translateX(50%);
  color: var(--white);
  font-size: 1.2rem;
	line-height: 1.2;
  text-transform: lowercase;
}
.cards .card:hover, .cards .card:focus {
  opacity: 0.9;
  transition: all 0.25s ease-in-out;
}
.cards .card:hover .inner, .cards .card:focus .inner {
  opacity: 0;
  visibility: hidden;
}
.cards .card:hover .inner.active, .cards .card:focus .inner.active {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.15s;
}

@media (max-width: 1050px) {
  .cards .card .inner .icon {
    width: 75px;
    height: 75px;
  }
  .cards .card .inner.active ul li {
    font-size: 1rem;
  }
  .cards .card .title {
    font-size: 1.2rem;
  }
}
@media (max-width: 1100px) {
	.cards {
		grid-template-columns: 1fr 1fr 1fr;
	}
}
@media (max-width: 800px) {
  .cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 500px) {
	.cards .card .inner.active ul li,
	.cards .card .inner.active > * {
		font-size: .9rem;
	}
}



/*
  HOME DESTINATION SECTION
*/
.destination {
  background: #e0e0df;
  padding-block: 8rem 6rem;
}
.destination .copy {
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  margin-bottom: 3rem;
}
.destination .copy h3,
.destination .copy p {
  max-width: 500px;
  text-align: center;
}
.destination .book-menu-btns {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	justify-content: center;
}
.destination .gallery {
/*   display: grid;
  grid-template-columns: 1fr;
  place-items: center; */
}
/* 
  destination - ACF gallery slider styles 
*/
.fgsp-slider-wrap {
	max-width: 1200px;
	margin-inline: auto;
}

/* move arrows to below image */
.fgsp-gallery-slider {
	padding-bottom: 70px;
}
.fgsp-common-slider button.slick-arrow {
	top: 95%;
	opacity: 1;
	visibility: visible;
}
.fgsp-common-slider button.slick-next:hover {
	transform: translateX(3px);
}
.fgsp-common-slider button.slick-prev:hover {
	transform: translateX(-3px);
}
.fgsp-common-slider button.slick-next {
    right: calc(45% - 60px);
	border: none !important;
}
.fgsp-common-slider button.slick-prev { 
    left: calc(45% - 60px);
	border: none !important;
}
.fgsp-common-slider .slick-dots { 
    bottom: 75px;	
}

/* change the arrow image */
.fgsp-common-slider button.slick-prev {
	background: url("img/left-arrow.svg") center/100% no-repeat !important;
	width: 70px;
	height: 30px;
}
.fgsp-common-slider button.slick-next {
	background: url("img/right-arrow.svg") center/100% no-repeat !important;
	width: 70px;
	height: 30px;
}
.fgsp-common-slider button.slick-next:hover,
.fgsp-common-slider button.slick-prev:hover,
.fgsp-common-slider button.slick-next:focus,
.fgsp-common-slider button.slick-prev:focus {
	border: none !important;
}

/* style the dots */
.fgsp-common-slider .slick-dots li {
	margin: 0 6px !important;
}
.fgsp-common-slider .slick-dots li button {
	background: var(--purple-grey) !important;
	border-color: var(--purple-grey);
	width: 8px !important;
	height: 8px !important;
}
.fgsp-common-slider .slick-dots li.slick-active button {
	border-color: var(--black) !important;
	background: none !important;
}

@media screen and (max-width: 40em) {
	.fgsp-common-slider button.slick-arrow, .fgsp-common-slider button.slick-arrow:focus, .fgsp-common-slider button.slick-arrow:hover, .fgsp-common-slider button.slick-arrow:active {
	  background-size: 100% !important;
		height: 30px;
		width: 70px;
  }
}
/* 
  END - destination - ACF gallery slider styles 
*/

/*
  HOME TESTIMONIALS SECTION
*/
.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  text-align: center;
}
.testimonials {
  padding-block: 5rem;
}
.testimonials h4 {
  text-align: center;
	margin-bottom: 40px;
}
.strong-view.wpmtst-bold .wpmtst-testimonial.t-slide {
	padding: 10px;
	background: #f3efea;
	position: relative;
/* 	height: min-content !important; */
}
.strong-view.wpmtst-bold .wpmtst-testimonial.t-slide::before {
	content: "";
	position: absolute;
	top: 15px;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 50px;
	background: url("img/quote-white.png") center/100% no-repeat;
	z-index: 10;
}
.strong-view.wpmtst-bold .wpmtst-testimonial-inner {
	padding: 4rem 2rem !important;
	border: 1px solid #fff;
	
}

.testimonials .button_layout #super-container #gradeus-review-button {
	width: 100% !important;
	padding: 0;
}

/*
  HOME QUESTIONS SECTION
*/
.questions {
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  text-align: center;
  position: relative;
}
.questions::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--purple-grey);
  opacity: 0.7;
}
.questions picture {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  height: 100%;
}
.questions picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
	object-position: 50% 75%;
  min-height: 400px;
  max-height: 600px;
  display: block;
}
.questions .caption {
  grid-column: 1;
  grid-row: 1;
  padding: 4rem 2rem;
  max-width: 500px;
  z-index: 10;
}
.questions .caption > * {
  color: var(--white);
}



/**************************************
  CONTENT
***************************************/
/**************************************
  INSIDE PAGES
***************************************/
/*
  FEATURE IMAGE
*/
.feature {
  display: grid;
  height: 90vh;
  position: relative;
  min-height: 400px;
  overflow: hidden;
	margin-bottom: 2rem;
}

.feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 50;
  background: linear-gradient(rgba(73, 79, 88, 0.5), rgba(73, 79, 88, 0.5));
}

.feature img {
  grid-column: 1/-1;
  grid-row: 1/-1;
  width: 100%;
  min-height: 15vh;
  height: 90vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.feature .title {
  grid-column: 1/-1;
  grid-row: 1/-1;
  align-self: center;
  justify-self: center;
  -webkit-transform: translateY(200px);
          transform: translateY(200px);
  display: inline-block;
  background: var(--blue-lighter);
  padding: 2rem;
  border-radius: 3px;
	text-align: center;
  z-index: 100;
}
.feature .title h1 {
  color: var(--white);
  font-size: 2rem;
  font-weight: 400;
}
.feature .title h1 span {
  font-size: 1.4rem;
  font-weight: 300;
}

@media (max-width: 600px) {
  .feature .title h1 {
    font-size: 1.3rem;
  }
}
.feature .scroll {
  position: absolute;
  display: inline-block;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 30px;
  height: 60px;
  cursor: pointer;
  z-index: 200;
  background: url("img/icon-scroll.svg") center/100% no-repeat;
}

/*
  INSIDE PAGE W/ SIDEBAR
*/
.pg-w-sidebar {
  display: grid;
  grid-template-columns: auto 300px;
  gap: 30px;
}

@media (max-width: 900px) {
  .pg-w-sidebar {
    grid-template-columns: 1fr;
  }
}
/*
  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;
}

/*-------------------------------------
  07 - FOOTER FOOTER FOOTER FOOTER FOOTER FOOTER
--------------------------------------*/
/* Main Footer Area */
.site-footer {
  background: var(--purple-grey);
}
.site-footer .inner * {
  color: #e0e0df;
}
.site-footer .inner .social-icons {
    display: flex;
    gap: 15px;
	justify-content: center;
	margin-bottom: 40px;
  }
.site-footer .inner .social-icons .icon {
	display: inline-block;
	vertical-align: middle;
	padding: 5px;
	width: 30px;
	height: 30px;
	border-radius: 6px; 
	opacity: .7;
}
.site-footer .inner .social-icons .fb {
	background: url("img/icon-fb.svg") center/100% no-repeat;
}
.site-footer .inner .social-icons .insta {
	background: url("img/icon-insta.svg") center/90% no-repeat;
}
.site-footer .inner .social-icons .icon:hover {
  opacity: 1;
}
.site-footer .inner .info {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px 40px;
  margin-bottom: 2rem;
}
.site-footer .inner .info p {
  margin: 0;
}
.site-footer .inner .info .contact {
  justify-self: end;
  text-align: right;
}
.site-footer .inner .info .contact .phone {
  margin-bottom: 0.5rem;
}
.site-footer .inner .info .contact .address {
	display: inline-block;
  line-height: 1;
}
.site-footer .inner .info .divide {
  background: #e0e0df;
  width: 2px;
  height: 100%;
}
.site-footer .inner .info .hours div.days {
  line-height: 1.3;
}
.site-footer .inner .bottom {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
.site-footer .inner .bottom .footer-logo {
  width: 275px;
  text-align: center;
  margin-inline: auto;
}
.site-footer .inner .bottom .cred > *,
.site-footer .inner .bottom .cred p a {
  font-weight: 300;
  font-size: 0.875rem;
}
.site-footer .inner .bottom .cred a:hover {
  color: var(--white);
  opacity: 1;
}

@media (max-width: 767px) {
  .site-footer .inner .info {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .site-footer .inner .info .contact,
  .site-footer .inner .info .hours {
    text-align: center;
  }
  .site-footer .inner .info .contact {
    justify-self: center;
  }
  .site-footer .inner .info .divide {
    display: none;
  }
}

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

/* Live Additions */
[id] {
	scroll-margin-top: 120px;
}
.concert-button {
  background: rgba(255, 255, 255, 0.15);
  padding: .25rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: white;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  backdrop-filter: blur(5px);
	font-size: 1rem;
	font-weight: 300;
	overflow: hidden;
}

.concert-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.4) 10%,
    rgba(255, 255, 255, 0.6) 20%,
    rgba(255, 255, 255, 0.4) 30%,
    transparent 40%
  );
  animation: shimmer 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.concert-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(255, 255, 255, 0.15) 100%
  );
  opacity: 0;
  transition: opacity 0.6s ease;
}

.concert-button:hover {
  background: rgba(255, 255, 255, 0.25);
  opacity: 1;
}

.concert-button:hover::after {
  opacity: 1;
}

@keyframes shimmer {
  0% {
    left: -100%;
    opacity: 0;
  }
  20% {
    opacity: 0.8;
  }
  60% {
    opacity: 0.8;
  }
  100% {
    left: 200%;
    opacity: 0;
  }
}
@media (width < 1101px) {
	.concert-button {
		display: none !important;
	}
}
@media (width >= 1100px) {
	.concert-btn {
		display: none !important;
	}
}

.alert-bar {
	background-color: #E0E0DF;
	background-color: #936F4B;
	color: white;
	text-align: center;
	padding-block: .15rem;
	font-size: .95rem;
}
.alert-bar :is(p, a) {
	margin: 0;
	text-align: center;
	color: white;
}
.site-header {
	padding-block: 0;
}
.site-header .inner {
	padding-block: 2rem 1rem;
}
.site-header.shrink .inner {
	padding-block: 0;
}
.left-menu-section {
	display: flex;
	gap: 1.5rem;
	align-items: center;
/* 	justify-content: center; */
}

/* Pop Up Styles */
.pop-up-grid {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
}
.pop-up-grid section {
	padding: 2rem;
	place-self: center;
}
.pop-up-grid section :is(h3, h4, p, span) {
	color: var(--white) !important;
	margin-bottom: .5rem;
}
.pop-up-grid p:has(img) {
	margin: 0 !important;
}
.pop-up-grid p {
	max-width: 48ch;
}
.pop-up-grid p.small {
	font-size: 85%;
	margin-top: 1rem;
}
.pop-up-grid img {
	display: block !important;
}
.pop-up-grid section span:nth-of-type(1) {
	font-size: var(--smallFontSize);
	font-weight: 700;
}
.pop-up-grid .pop-up-button {
	margin-top: 1rem;
}
@media (width < 767px) {
	.pop-up-grid {
		grid-template-columns: 1fr;
		justify-items: center;
	}
	.pop-up-grid section h3 {
		font-size: var(--header-4);
	}
}