/* ==========================================================================
   Sagentic LLC — Web Awesome Custom Styles
   ========================================================================== */

/* ---------- Theme Token Overrides ---------- */
:root {
	--primary-font: "Inter", sans-serif;
	--alt-font: "Plus Jakarta Sans", sans-serif;
}

/* ---------- Utility: Min Heights ---------- */
.mh-300 {
	min-height: 300px !important;
}
.mh-500 {
	min-height: 500px !important;
}

/* ---------- Alternate Fonts ---------- */
.alt-font1 {
	font-family: "Poppins", sans-serif;
}
.alt-font2 {
	font-family: "Raleway", sans-serif;
}
.alt-font3 {
	font-family: "Cousine", monospace;
}
.alt-font4 {
	font-family: "Roboto", sans-serif;
}

/* ---------- Site Container ---------- */
.site-container {
	max-width: 1200px;
	margin-inline: auto;
	padding-inline: var(--wa-space-m);
}

/* ---------- FOUCE Prevention: Hide WA components until defined ---------- */
wa-drawer:not(:defined),
wa-carousel:not(:defined),
wa-dialog:not(:defined) {
	display: none;
}

/* ---------- Site Header ---------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--wa-color-surface-raised);
	border-bottom: 1px solid var(--wa-color-surface-border);
	transition: all 0.3s ease;
}

.site-header__main,
.site-header__logo-row,
.site-header__nav-bar {
	padding: 0;
}

.site-header__main .site-container,
.site-header__logo-row .site-container {
	padding-block: var(--wa-space-s);
}

.site-header__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.site-header__row--center {
	justify-content: center;
}

.site-header__left {
	display: flex;
	align-items: center;
}

.site-header__right {
	display: flex;
	align-items: center;
	gap: var(--wa-space-m);
}

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

.site-header__nav-bar {
	border-top: 1px solid var(--wa-color-surface-border);
	background: var(--wa-color-surface-default);
}

.site-header__nav-bar--primary {
	background: var(--color-primary);
}

.site-header__nav-bar--primary .site-nav__link {
	color: #fff;
}

.site-header__nav-bar .site-container {
	padding-block: var(--wa-space-2xs);
}

.header-logo img,
.navbar-brand img {
	max-height: 100px;
	width: auto;
	transition: max-height 0.3s ease;
}

.site-header.shrink .header-logo img,
.site-header.shrink .navbar-brand img {
	max-height: 50px;
}

/* ---------- Active nav item ---------- */
.navbar .navbar-nav .nav-link.active {
	color: #000 !important;
	font-weight: 700 !important;
	text-decoration: underline;
	text-decoration-thickness: 3px;
	text-underline-offset: 6px;
}

/* ---------- Header Contact Info (Menu Bar variant) ---------- */
.site-header__contact-info {
	display: flex;
	align-items: center;
	gap: var(--wa-space-l);
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-header__contact-item {
	display: flex;
	align-items: center;
	gap: var(--wa-space-xs);
}

.site-header__contact-icon {
	font-size: var(--wa-font-size-l);
	color: var(--color-secondary);
}

.site-header__contact-label {
	display: block;
	font-size: var(--wa-font-size-2xs);
	text-transform: uppercase;
	color: var(--wa-color-text-quiet);
}

.site-header__contact-text a {
	color: var(--color-primary);
	text-decoration: none;
	font-weight: 700;
}

.site-header__contact-text a:hover {
	color: var(--color-secondary);
}

@media (max-width: 768px) {
	.site-header__contact-info {
		display: none;
	}
}

/* ---------- Top Bar ---------- */
.top-bar {
	background: var(--color-primary);
	color: #fff;
	font-size: var(--wa-font-size-xs);
}

.top-bar a {
	color: #fff;
	text-decoration: none;
}

.top-bar a:hover {
	color: var(--color-text-hover);
}

.top-bar__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-block: var(--wa-space-2xs);
}

.top-bar__left,
.top-bar__right {
	display: flex;
	align-items: center;
	gap: var(--wa-space-m);
}

.top-bar__left--hide-mobile {
	/* hide on small screens when booking button is present */
}

@media (max-width: 576px) {
	.top-bar__left--hide-mobile {
		display: none;
	}
}

.top-bar__info {
	display: flex;
	align-items: center;
	gap: var(--wa-space-m);
	list-style: none;
	margin: 0;
	padding: 0;
}

.top-bar__item {
	display: inline-flex;
	align-items: center;
}

.top-bar__link {
	display: inline-flex;
	align-items: center;
	gap: var(--wa-space-2xs);
}

.top-bar__social {
	display: flex;
	gap: var(--wa-space-xs);
	list-style: none;
	margin: 0;
	padding: 0;
}

.top-bar__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

/* ---------- Desktop Navigation ---------- */
.desktop-nav-wrap .site-nav {
	display: flex;
	align-items: center;
	gap: var(--wa-space-2xs);
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-nav__link {
	display: inline-flex;
	align-items: center;
	gap: var(--wa-space-3xs);
	text-decoration: none;
	color: var(--wa-color-text-normal);
	font-family: var(--alt-font);
	font-weight: 300;
	font-size: var(--wa-font-size-m);
	letter-spacing: 0.5px;
	padding: var(--wa-space-xs) var(--wa-space-s);
	border-radius: var(--wa-border-radius-m);
	transition:
		background 0.2s,
		color 0.2s;
	white-space: nowrap;
}

.site-nav__link:hover,
.site-nav__link.active {
	color: var(--color-secondary);
}

.nav-dropdown {
	position: relative;
}

.nav-dropdown__arrow {
	font-size: 0.7em;
}

.desktop-nav-wrap .nav-dropdown-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: var(--wa-color-surface-raised);
	border: 1px solid var(--wa-color-surface-border);
	border-radius: var(--wa-border-radius-m);
	box-shadow: var(--wa-shadow-l);
	min-width: 240px;
	z-index: 200;
	padding: var(--wa-space-xs) 0;
	list-style: none;
	margin: 0;
}

.desktop-nav-wrap .nav-dropdown:hover > .nav-dropdown-menu {
	display: block;
}

.nav-dropdown-menu__link {
	display: flex;
	align-items: center;
	gap: var(--wa-space-2xs);
	padding: var(--wa-space-xs) var(--wa-space-m);
	font-size: var(--wa-font-size-s);
	text-decoration: none;
	color: var(--wa-color-text-normal);
	transition: background 0.2s;
}

.nav-dropdown-menu__link:hover {
	background: var(--wa-color-surface-lowered);
	color: var(--color-secondary);
}

.nav-dropdown-menu__link--all {
	font-weight: 700;
	text-transform: uppercase;
	color: var(--color-primary);
}

.nav-dropdown-menu__icon {
	color: var(--color-primary);
	font-size: 0.8em;
}

/* Mobile nav toggle */
.mobile-nav-toggle {
	display: none;
}

@media (max-width: 991px) {
	.desktop-nav-wrap {
		display: none;
	}
	.mobile-nav-toggle {
		display: inline-flex;
	}
}

/* ---------- Drawer Navigation ---------- */
.drawer-nav-wrap .site-nav {
	list-style: none;
	padding: 0;
	margin: 0;
}

.drawer-nav-wrap .site-nav > li {
	border-bottom: 1px solid var(--wa-color-surface-border);
}

.drawer-nav-wrap .site-nav__link {
	display: flex;
	align-items: center;
	gap: var(--wa-space-2xs);
	padding: var(--wa-space-s) var(--wa-space-m);
	text-decoration: none;
	color: var(--wa-color-text-normal);
	font-family: var(--alt-font);
	font-weight: 400;
	font-size: var(--wa-font-size-m);
	transition: background 0.2s;
}

.drawer-nav-wrap .site-nav__link:hover,
.drawer-nav-wrap .site-nav__link.active {
	background: var(--wa-color-surface-lowered);
	color: var(--color-secondary);
}

.drawer-nav-wrap .nav-dropdown-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	background: var(--wa-color-surface-lowered);
}

.drawer-nav-wrap .nav-dropdown-menu__link {
	display: flex;
	align-items: center;
	gap: var(--wa-space-2xs);
	padding: var(--wa-space-xs) var(--wa-space-m) var(--wa-space-xs)
		var(--wa-space-xl);
	text-decoration: none;
	color: var(--wa-color-text-normal);
	font-size: var(--wa-font-size-s);
	transition: background 0.2s;
}

.drawer-nav-wrap .nav-dropdown-menu__link:hover {
	color: var(--color-secondary);
}

/* ---------- Page Header / Breadcrumb Section ---------- */
.page-header-section {
	background: var(--color-primary);
	color: #fff;
	padding: var(--wa-space-xl) 0;
	text-align: center;
}

.page-header-section.has-bg {
	background-size: cover;
	background-position: center;
	position: relative;
}

.page-header-section.has-bg::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
}

.page-header-section .site-container {
	position: relative;
	z-index: 1;
}

.page-header-section h1 {
	font-family: var(--alt-font);
	font-size: var(--wa-font-size-3xl);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0;
	line-height: 1.2;
	margin: 0;
	color: #fff;
}

.page-header-section wa-breadcrumb {
	--separator-color: var(--color-tertiary);
	margin-top: var(--wa-space-xs);
}

/* ---------- Hero Section ---------- */
.hero-section wa-carousel {
	--aspect-ratio: auto;
}

.hero-slide {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 60vh;
	background-size: cover;
	background-position: center;
	text-align: center;
	color: #fff;
}

.hero-slide::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
}

.hero-slide-content {
	position: relative;
	z-index: 1;
	padding: var(--wa-space-2xl);
	max-width: 800px;
}

.hero-slide h3 {
	font-family: var(--alt-font);
	font-weight: 500;
	font-size: var(--wa-font-size-l);
	letter-spacing: 0.5px;
	margin-bottom: var(--wa-space-xs);
	color: #fff;
}

.hero-slide h1 {
	font-family: var(--alt-font);
	font-weight: 700;
	font-size: var(--wa-font-size-4xl);
	line-height: 1.2;
	margin-bottom: var(--wa-space-s);
	color: #fff;
}

.hero-slide p {
	font-family: var(--alt-font);
	font-weight: 300;
	font-size: var(--wa-font-size-l);
	letter-spacing: 0.5px;
	margin-bottom: var(--wa-space-l);
	color: #fff;
}

@media (max-width: 768px) {
	.hero-slide {
		min-height: 50vh;
	}
	.hero-slide h1 {
		font-size: var(--wa-font-size-2xl);
	}
	.hero-slide p {
		display: none;
	}
}

/* ---------- Content Sections ---------- */
.content-section {
	padding: var(--wa-space-2xl) 0;
}

.content-section-light {
	background: var(--wa-color-surface-default);
}

.content-section-dark {
	background: var(--color-primary);
	color: #fff;
}

.content-section-secondary {
	background: var(--color-secondary);
	color: #fff;
}

.section-title {
	font-family: var(--alt-font);
	color: var(--color-primary);
	font-weight: 700;
	text-transform: capitalize;
	letter-spacing: 0;
	line-height: 1.2;
}

.section-subtitle {
	font-family: var(--alt-font);
	color: var(--color-secondary);
	font-weight: 300;
	text-transform: capitalize;
	letter-spacing: 0.5px;
	line-height: 1.2;
}

.section-content {
	font-size: var(--wa-font-size-m);
	line-height: var(--wa-line-height-normal);
}

/* ---------- CTA Section ---------- */
.cta-section {
	background: var(--color-secondary);
	color: #fff;
	padding: var(--wa-space-2xl) 0;
	text-align: center;
}

.cta-section .cta-heading {
	font-family: var(--alt-font);
	font-weight: 300;
	text-transform: capitalize;
	letter-spacing: 0;
	line-height: 1.2;
	color: var(--color-primary);
}

.cta-section .cta-subheading {
	font-family: var(--alt-font);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	line-height: 1.2;
	color: #fff;
}

/* ---------- Counters Section ---------- */
.counters-section {
	background: var(--color-secondary);
	color: #fff;
	padding: var(--wa-space-2xl) 0;
}

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

.counter-item wa-icon,
.counter-item i {
	font-size: 2rem;
	margin-bottom: var(--wa-space-xs);
}

.counter-value {
	font-family: var(--alt-font);
	font-size: var(--wa-font-size-3xl);
	font-weight: 700;
	display: block;
}

.counter-label {
	font-family: var(--alt-font);
	text-transform: uppercase;
	font-size: var(--wa-font-size-xs);
	letter-spacing: 0.5px;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
	text-align: center;
	padding: var(--wa-space-l);
}

.testimonial-text {
	font-style: italic;
	font-size: var(--wa-font-size-m);
	line-height: var(--wa-line-height-normal);
	margin-bottom: var(--wa-space-m);
}

.testimonial-stars {
	color: #f5a623;
	margin-bottom: var(--wa-space-s);
}

.testimonial-author-name {
	font-weight: 700;
	font-family: var(--alt-font);
}

.testimonial-author-location {
	font-size: var(--wa-font-size-s);
	color: var(--wa-color-text-quiet);
}

/* ---------- Footer ---------- */
.site-footer {
	background: var(--color-primary);
	color: var(--color-tertiary);
	padding-top: var(--wa-space-2xl);
}

.site-footer a {
	color: var(--color-tertiary);
	text-decoration: none;
	transition: color 0.2s;
}

.site-footer a:hover {
	color: var(--color-text-hover);
}

.site-footer h5 {
	color: #fff;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: var(--wa-font-size-m);
}

.footer-text,
.footer-text a {
	font-family: var(--primary-font);
	color: var(--color-tertiary) !important;
	text-decoration: none;
}

.footer-text a:hover {
	color: var(--color-text-hover) !important;
}

.footer-copyright {
	background: rgba(0, 0, 0, 0.15);
	padding: var(--wa-space-s) 0;
	margin-top: var(--wa-space-xl);
}

.footer-copyright p {
	margin: 0;
	font-size: var(--wa-font-size-xs);
}

/* ---------- Social Icons ---------- */
.social-icons,
.top-bar__social,
.footer-social-icons {
	display: flex;
	gap: var(--wa-space-s);
	list-style: none;
	padding: 0;
	margin: 0;
	flex-wrap: wrap;
}

.social-icon a,
.social-icons a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	transition:
		background 0.2s,
		color 0.2s,
		opacity 0.2s;
	color: inherit;
	text-decoration: none;
}

.social-icon a:hover,
.social-icons a:hover {
	opacity: 0.8;
}

/* ---------- Content Formatting ---------- */
.content-lead {
	font-family: var(--alt-font);
	font-size: 24px;
	font-weight: bold;
	color: var(--hippie-green);
	display: inline-block;
	position: relative;
	padding-left: 1.5em;
}

.faq-lead {
	font-family: var(--primary-font);
	font-size: 20px;
	font-weight: 600;
	color: var(--color-primary);
	text-transform: capitalize;
}

/* ---------- Responsive Video ---------- */
.video-container {
	overflow: hidden;
	position: relative;
	width: 100%;
}

.video-container::after {
	padding-top: 56.25%;
	display: block;
	content: "";
}

.video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* ---------- Map Filter ---------- */
.map {
	filter: grayscale(100%) saturate(1) brightness(90%) contrast(100%);
}

/* ---------- Icon Theme Colors (FA duotone) ---------- */
.icon-theme {
	--fa-secondary-opacity: 1;
	--fa-primary-color: var(--color-primary);
	--fa-secondary-color: var(--color-secondary);
}

.icon-theme-reverse {
	--fa-secondary-opacity: 1;
	--fa-primary-color: var(--color-secondary);
	--fa-secondary-color: var(--color-primary);
}

/* ---------- Image Gallery Grid ---------- */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: var(--wa-space-m);
}

.gallery-grid img {
	width: 100%;
	height: auto;
	border-radius: var(--wa-border-radius-s);
	cursor: pointer;
	transition: transform 0.2s;
}

.gallery-grid img:hover {
	transform: scale(1.03);
}

/* ---------- Scroll to Top ---------- */
.scroll-to-top {
	position: fixed;
	bottom: var(--wa-space-l);
	right: var(--wa-space-l);
	background: var(--color-primary);
	color: #fff;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: none;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	z-index: 99;
	box-shadow: var(--wa-shadow-m);
	transition: opacity 0.3s;
}

.scroll-to-top.visible {
	display: flex;
}

.scroll-to-top:hover {
	opacity: 0.8;
}

/* ---------- Contact Page: Hours ---------- */
.hours-row {
	display: flex;
	align-items: center;
	gap: var(--wa-space-s);
	padding: var(--wa-space-2xs) 0;
}

.hours-row.today {
	font-weight: 700;
	color: var(--color-primary);
}

.hours-row .day-name {
	flex: 1;
}

.hours-row .day-hours {
	text-align: right;
}

/* ---------- Links Page ---------- */
.links-page {
	background: var(--wa-color-surface-lowered);
}

/* ---------- Service Cards (Hero Variant) ---------- */
.service-card-hero {
	position: relative;
	overflow: hidden;
	border-radius: var(--wa-border-radius-l);
}

.service-card-hero img {
	width: 100%;
	height: 280px;
	object-fit: cover;
	transition: transform 0.3s;
}

.service-card-hero:hover img {
	transform: scale(1.05);
}

.service-card-hero .card-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
	padding: var(--wa-space-l);
	color: #fff;
}

/* ---------- Detail Page Back Links ---------- */
.back-link {
	text-decoration: none;
	font-weight: 600;
}

.back-link:hover {
	color: var(--color-secondary);
}

/* ---------- Print Styles ---------- */
@media print {
	.site-header,
	.top-bar,
	.scroll-to-top,
	.site-footer {
		display: none;
	}
}
