:root {
	--white: #FFF;
	--black: #000000;
	--grey: #1c1c1c;
	--mid-grey: #161616;
	--gold: #A7951D;
}

html {
  scroll-behavior: smooth;
}

/* ----------------------------------------------------- Background Styles ------------------------------------------------- */
.bg-grey {
	background-color: var(--grey);
}

.bg-mid-grey {
	background-color: var(--mid-grey);
}

.bg-gold {
	background-color: var(--gold);
}

.bg-gold-gradient {
  background: linear-gradient(rgba(167,149,29,1), rgba(0,0,0,1));
}


body {
	background-color: var(--black);
}


/* ----------------------------------------------------- Menu Styles ------------------------------------------------- */

.menu ul {
	padding: 0px;
	margin: 0;
}
.menu li {
	list-style: none;
	display: inline-block;
	padding: 3px 5px;
	background-image: none;
	margin-bottom: 10px;
}

.menu a {
	color: white;
	text-decoration: none;
}


.menu-item-15 {
	background-color: var(--gold) !important;
	color: var(--white) !important;
	padding: 20px;
	border: none !important;
	font-weight: 500;
	margin-top: 20px;
}

.menu-item-14 {
	background-color: transparent!important;
	color: var(--white) !important;
	padding: 20px;
	border: 1px solid var(--gold);
	font-weight: 500;
	margin-top: 20px;
}

.menu-item-84 {
	background-color: transparent!important;
	color: var(--white) !important;
	padding: 20px;
	border: 1px solid var(--gold);
	font-weight: 500;
	margin-top: 20px;
}

.menu-item-14:hover {
	background-color: var(--gold);
	color: var(--white) !important;
}

.menu-item-84 {
	background-color: var(--gold);
	color: var(--white) !important;
}





.menu ul li ul {
	position:absolute;
	left:-999em;
	z-index:9999 !important;
	width: auto;
	text-align: left;
	padding-top: 10px;
	padding-bottom: 10px;
}
.menu ul li ul li {
	display: block;
	margin-bottom: 0;
	padding-left: 0;
	padding-right: 20px;
}
.menu ul li:hover ul, .menu ul li ul:hover {
	left:auto;
}

/** Menu arrows **/
.menu li > a:after {
    content: '  ▾';
	vertical-align: 1px;
}

.menu li > a:only-child:after {
    content: '';
}


/* ----------------------------------------------------- Header And Banner Image Styles ---------------------------------------------------------------- */

header {
	/*position: absolute;*/
	width: 100%;
	top: 0;
	left: 0;
	right: 0;
	/*padding: 50px 5%;*/
}

.logo {
	width: 55%;
	/*max-width: 350px;
	min-width: 200px;*/
}

.banner-image {
	width: 100%;
	height: auto;
	min-height: 65vh;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-color: rgba(0,0,0,0.65);
	background-blend-mode: multiply;
	display: flex;
	flex-direction: column;
}

.back-button {
	background-color: var(--brand-blue);
	border-radius: 50%;
	width: 70px;
	height: 70px;
	line-height: 70px;
	text-align: center;
	display: block;
	font-size: 50px;
	color: var(--white) !important;
	text-decoration: none !important;
	margin: 40px 0;
	border: none;
	cursor: pointer;
}


/* ----------------------------------------------------- Slider Styles ---------------------------------------------------------------- */
.slider-container {
  position: relative;
  overflow: hidden;
}

.slider {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px; /* <-- spacing between tiles */
  transition: transform 0.5s ease;
}

.bg-grey {
  background: #1c1c1c;
  color: #fff;
  min-height: 280px;
}

.content-padding {
  padding: 40px 60px;
}

.content-padding-sm {
  padding: 30px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: #000;
  border: none;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  z-index: 10;
}

.left-arrow {
  left: 0px;
}

.right-arrow {
  right: 0px;
}

@media (max-width: 991.98px) {
  .slider {
    gap: 20px;
  }
}

@media (max-width: 767.98px) {
  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .slider {
    gap: 16px;
  }
}

/* ----------------------------------------------------- Generic Content Styles ---------------------------------------------------------------- */

.content-padding {
	padding: 5%;
}
.content-padding-sm {
	padding: 2.5%;
}
.content-margin {
	margin: 5% 0;
}

.testimonial {
	margin-bottom: 40px;
	padding: 30px;
}


.photo-credit {
	position: absolute;
	bottom: 15px;
	font-size: 13px;
	color: #fff;
}

.link-row {
  display: flex;
  justify-content: left;
  gap: 40px;
  flex-wrap: wrap;
}

.link-row a {
	text-decoration: none;
	border-bottom: solid 1px var(--gold);
	padding: 10px;
}

.link-row a:hover {
	text-decoration: none;
	border-bottom: solid 1px var(--gold);
	background-color: var(--gold);
	padding: 10px;
}

.image-block {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

/* Gradient overlay */
.image-block::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%; /* adjust for stronger/weaker gradient */
    background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0));
    pointer-events: none;
}

.image-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    max-width: 80%;
    z-index: 2; /* ensures text sits above the gradient */
}

.image-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* ----------------------------------------------------- Community Content Styles ---------------------------------------------------------------- */

.nxtlvl-community {
  position: relative;
  background: #000;
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 100px 0;
}

.community-heading {
  position: relative;
  z-index: 5;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.highlight {
  color: #f2d94e;
}

/* Floating images behind text */
.floating-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  z-index: 1;
}

.floating-images img {
  position: absolute;
  width: 480px;
  border-radius: 16px;
  opacity: 0.1;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
  filter: brightness(0.5);
}

/* Fade-in active state */
.floating-images img.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .floating-images img {
    width: 200px;
  }
}

@media (max-width: 767.98px) {
  .floating-images img {
    width: 150px;
  }
  .community-heading {
    font-size: 1.6rem;
  }
}



/* ----------------------------------------------------- Button and A Styles ---------------------------------------------------------------- */

.btn-gold  {
	background-color: var(--gold) !important;
	color: var(--white) !important;
	padding: 10px;
	border: none !important;
	font-weight: 500;
	margin-top: 20px;
}
.btn-gold:hover  {
	background: var(--white) !important;
	color: var(--gold) !important;
}

.btn-outline{
	background-color: transparent!important;
	color: var(--white) !important;
	padding: 10px;
	border: 1px solid white;
	font-weight: 500;
	margin-top: 20px;
}

.btn-outline:hover {
	background-color: var(--gold) !important;
	color: var(--white) !important;
	padding: 10px;
	font-weight: 500;
	margin-top: 20px;
	border: 1px solid var(--gold);
}

.field-wrap input[type="submit"] {
  background: var(--gold);
  border: none;
  width: 100% !important;
  padding: 5px;
}

.field-wrap input[type="submit"]:hover {
  background: white;
	color: var(--gold);
  border: none;
  width: 100% !important;
  padding: 5px;
}



/* ----------------------------------------------------- Footer Styles ---------------------------------------------------------------- */

footer {
	padding: 50px 5%;
	background-color: white !important;
}
footer p, footer a {
	color: black;
	font-size: 14px;
}





/* ----------------------------------------------------- 2200px + ---------------------------------------------------------------- */

@media only screen and (min-width : 2200px) {
}


/* ----------------------------------------------------- Smaller than 2200px ----------------------------------------------------- */

@media only screen and (max-width : 2200px) {
}


/* ----------------------------------------------------- Smaller than 1800px ----------------------------------------------------- */

@media only screen and (max-width : 1800px) {
}


/* ----------------------------------------------------- Smaller than 1750px ----------------------------------------------------- */

@media only screen and (max-width : 1750px) {
}


/* ----------------------------------------------------- Smaller than 1650px ----------------------------------------------------- */

@media only screen and (max-width : 1650px) {	
}


/* ----------------------------------------------------- Smaller than 1550px ----------------------------------------------------- */

@media only screen and (max-width : 1550px) {
}


/* ----------------------------------------------------- Smaller than 1450px ----------------------------------------------------- */

@media only screen and (max-width : 1450px) {
}


/* ----------------------------------------------------- Smaller than 1350px ----------------------------------------------------- */

@media only screen and (max-width : 1350px) {
	.slider-image {
		width: calc(50% - 10px);
		min-width: calc(50% - 10px);
	}
}


/* ----------------------------------------------------- Smaller than 1250px ----------------------------------------------------- */

@media only screen and (max-width : 1250px) {
} 


/* ----------------------------------------------------- Smaller than 1125px ----------------------------------------------------- */

@media only screen and (max-width : 1125px) {
	
	
}


/* ----------------------------------------------------- Smaller than 1080px ----------------------------------------------------- */
@media only screen and (max-width : 1080px) {
	.caption-wrap .caption {
 	   font-size: 30px;
	}
}


/* ----------------------------------------------------- Smaller than 1024px - iPad landscape ----------------------------------------------------- */

@media only screen and (max-width : 1024px) {	
	.testimonial {
		margin-bottom: 40px;
		padding: 18px;
	}
	.bg-orange img {
    	max-width: 50px;
	}
}


/* ----------------------------------------------------- Smaller than 991px ------------------------------------------------------ */

@media only screen and (max-width : 991px) {
	.caption-wrap .caption {
 	   	font-size: 25px;
		padding: 16px 20px !important;
	}
	.menu li {
		padding: 1px 12px 2px 12px;
	}
}

/* ----------------------------------------------------- Smaller than 870px ------------------------------------------------------ */

@media only screen and (max-width : 870px) {	

}

/* ----------------------------------------------------- Smaller than 800px ------------------------------------------------------ */

@media only screen and (max-width : 800px) {	
	
}


/* ----------------------------------------------------- Smaller than 768px - iPad portrait ------------------------------------------------------ */

@media only screen and (max-width : 768px) {
	.mobile-center {
		text-align: center !important;
	}
	.mobile-left {
		text-align: left !important;
	}
	.metaslider .caption-wrap {
	    width: 90% !important;
	}
	.bg-orange img {
    	max-width: 40px;
	}
	.psac-post-short-content {
		font-size: 14px !important;
    	line-height: 19px !important;
	}

}


/* ----------------------------------------------------- Smaller than 700px ------------------------------------------------------ */

@media only screen and (max-width : 700px) {
}

/* ----------------------------------------------------- Smaller than Mobile ----------------------------------------------------- */

@media only screen and (max-width : 650px) {
	.psac-slider-and-carousel .owl-nav {
		width: 118% !important;
		left: -9%;
	}
	
	.psac-slider-and-carousel .owl-nav .owl-next, .psac-slider-and-carousel .owl-nav .owl-prev {
    	background: rgba(255,255,255,1) !important;
	}
}


/* ----------------------------------------------------- Smaller than 540px ------------------------------------------------------ */

@media only screen and (max-width : 540px) {	

}


/* ----------------------------------------------------- Smaller than 500px ------------------------------------------------------ */

@media only screen and (max-width : 450px) {

}