/*
Theme Name: Soul Suite Wellness
Theme URI: https://soulsuitewellness.com
Author: VAOne Agency
Author URI: https://vaoneagency.com
Description: A modern wellness theme with integrated booking, forms, and section management. Features Square and Calendly integration, visual form builder, and responsive design optimized for wellness coaching businesses.
Version: 2.0.0
Requires at least: 5.8
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: soul-suite
Tags: wellness, health, coaching, booking, forms, responsive, accessibility-ready, custom-colors, custom-menu, featured-images, flexible-header, footer-widgets, full-width-template, theme-options

Soul Suite Wellness WordPress Theme
Copyright (C) 2024 Soul Suite Wellness

This theme, like WordPress, is licensed under the GPL.
Use it to make something beautiful.
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 CSS Variables
2.0 Typography
3.0 Layout
4.0 Links
5.0 Buttons
6.0 Forms
7.0 Posts and Pages
8.0 Comments
9.0 Widgets
10.0 Media
11.0 Galleries
12.0 Navigation & Pagination
13.0 Responsive
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 CSS Variables
--------------------------------------------------------------*/
:root {
	/* Color Palette */
	--color-teal: #40e0d0;
	--color-teal-hover: #39c9b9;
	--color-brown: #8c756a;
	--color-brown-hover: #7a6759;
	--color-orange: #ff5b0c;
	--color-orange-hover: #e5520b;
	--color-dark-teal: #227767;
	--color-text: #2c3e50;
	--color-text-light: #555;
	--color-off-white: #fdf8f4;
	--color-white: #ffffff;

	/* Fonts */
	--font-primary: 'Poppins', sans-serif;
	--font-secondary: 'Playfair Display', serif;
	--font-accent: 'Dancing Script', cursive;

	/* Font Sizes */
	--font-size-base: 16px;
	--font-size-small: 14px;
	--font-size-large: 20px;
	--font-size-h1: 3rem;
	--font-size-h2: 2.5rem;
	--font-size-h3: 2rem;
	--font-size-h4: 1.5rem;
	--font-size-h5: 1.25rem;
	--font-size-h6: 1rem;

	/* Spacing */
	--spacing-xs: 10px;
	--spacing-sm: 20px;
	--spacing-md: 30px;
	--spacing-lg: 40px;
	--spacing-xl: 80px;

	/* Border Radius */
	--radius-sm: 10px;
	--radius-md: 15px;
	--radius-lg: 20px;
	--radius-pill: 50px;

	/* Shadows */
	--shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.1);
	--shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.15);

	/* Transitions */
	--transition-fast: 0.2s ease;
	--transition-base: 0.3s ease;
	--transition-slow: 0.5s ease;

	/*
	 * ── Customizer-driven variables ──────────────────────────────
	 * These fallback values match the customizer defaults.
	 * The actual values are overridden by inline <style> output
	 * from functions.php using get_theme_mod(), so the customizer
	 * is always the source of truth at runtime.
	 * ─────────────────────────────────────────────────────────────
	 */

	/* Primary button gradient (Theme Colors → soul_suite_color_teal / soul_suite_color_orange) */
	--btn-gradient-start: #40e0d0;
	--btn-gradient-end:   #ff5b0c;
	--btn-gradient-start-hover: #39c9b9;
	--btn-gradient-end-hover:   #e5520b;

	/* Footer background gradient (Footer Settings → soul_suite_footer_bg_start / _end) */
	--footer-bg-start: #245C52;
	--footer-bg-end:   #1a4439;

	/* Footer social icon hover background (Footer Settings → soul_suite_footer_social_hover_start/mid/end) */
	--footer-social-hover-start: #40e0d0;
	--footer-social-hover-mid:   #8c756a;
	--footer-social-hover-end:   #ff5b0c;
}

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
body {
	font-family: var(--font-primary);
	font-size: var(--font-size-base);
	line-height: 1.6;
	color: var(--color-text);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-secondary);
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem;
	color: var(--color-text);
}

h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); }
h5 { font-size: var(--font-size-h5); }
h6 { font-size: var(--font-size-h6); }

p {
	margin-bottom: 1.5rem;
}

blockquote {
	border-left: 4px solid var(--color-orange);
	padding-left: 20px;
	margin: 20px 0;
	font-style: italic;
	color: var(--color-text-light);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services-section {
	padding: 80px 0;
	position: relative;
}

.page-header {
	padding-bottom: 9px;
	margin: 0px !important;
	border-bottom: 1px solid #eee;
}

.services-section .section-title {
	text-align: center;
	margin-bottom: 60px;
	font-size: 2.5rem;
	color: var(--color-text);
	font-family: var(--font-secondary);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
}

/* Services Grid Layout - Customizer-driven */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 40px;
	margin: 0 auto;
	max-width: 1400px;
}

.service-card {
	background: var(--color-white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	transition: all var(--transition-base);
	display: flex;
	flex-direction: column;
	position: relative;
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.service-card .service-image {
	width: 100%;
	height: 250px;
	object-fit: cover;
	transition: transform var(--transition-slow);
}

.service-card:hover .service-image {
	transform: scale(1.05);
}

.service-card .service-header {
	padding: 25px 30px 15px;
	border-bottom: 1px solid #eee;
}

.service-card .service-header h3 {
	font-size: 1.5rem;
	margin-bottom: 10px;
	color: var(--color-text);
	font-family: var(--font-secondary);
	font-weight: 700;
	line-height: 1.3;
}

.service-card .service-content {
	padding: 20px 30px;
	flex: 1;
	color: var(--color-text-light);
	line-height: 1.7;
}

.service-card .service-content p {
	margin-bottom: 15px;
}

.service-card .service-content p:last-child {
	margin-bottom: 0;
}

.service-card .service-footer {
	padding: 20px 30px;
	background: #f8f9fa;
	border-top: 1px solid #eee;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
	flex-wrap: wrap;
}

.service-card .service-price {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-teal);
	font-family: var(--font-secondary);
}

.service-card .service-price.free-service {
	color: var(--color-orange);
}

.service-card .service-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	background: linear-gradient(135deg, var(--color-teal), var(--color-dark-teal));
	color: var(--color-white);
	text-decoration: none;
	border-radius: var(--radius-pill);
	font-weight: 600;
	transition: all var(--transition-base);
	box-shadow: var(--shadow-sm);
}

.service-card .service-btn:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
	background: linear-gradient(135deg, var(--color-dark-teal), var(--color-teal));
}

.service-card .service-btn .btn-duration {
	opacity: 0.9;
	font-size: 0.9em;
}

/*--------------------------------------------------------------
About Owner Section
--------------------------------------------------------------*/
.about-owner {
	padding: 80px 0;
	position: relative;
}

.about-owner .section-title {
	text-align: center;
	margin-bottom: 60px;
	font-size: 2.5rem;
	color: var(--color-text);
	font-family: var(--font-secondary);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.owner-image {
	position: relative;
}

.owner-image img {
	width: 100%;
	height: auto;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	border: 4px solid var(--color-teal);
	transition: transform var(--transition-base);
}

.owner-image img:hover {
	transform: scale(1.02);
}

.owner-info {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.owner-credentials {
	border-bottom: 2px solid var(--color-teal);
	padding-bottom: 20px;
	margin-bottom: 10px;
}

.owner-name {
	font-size: 2rem;
	color: var(--color-text);
	font-family: var(--font-secondary);
	font-weight: 700;
	margin-bottom: 10px;
	line-height: 1.2;
}

.owner-title {
	font-size: 1.2rem;
	color: var(--color-teal);
	font-weight: 600;
	letter-spacing: 0.5px;
}

.owner-bio {
	color: var(--color-text-light);
	line-height: 1.8;
	font-size: 1.05rem;
}

.owner-bio p {
	margin-bottom: 20px;
}

.owner-bio p:last-child {
	margin-bottom: 0;
}

.cta-section {
	margin-top: 30px;
	text-align: left;
}

.cta-section .hero-btn:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

/*--------------------------------------------------------------
Burnout / System Reset Section
--------------------------------------------------------------*/
.burnout-section,
.system-reset-section {
	padding: 80px 0;
	position: relative;
	background-size: cover;
	background-position: center;
}

.burnout-section .container,
.system-reset-section .container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
	position: relative;
	z-index: 2;
}

.burnout-section .section-title,
.system-reset-section .section-title {
	text-align: center;
	margin-bottom: 60px;
	font-size: 2.5rem;
	color: var(--color-text);
	font-family: var(--font-secondary);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.burnout-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.burnout-image img {
	width: 100%;
	height: auto;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
}

.burnout-text {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.burnout-highlight {
	background: linear-gradient(135deg, var(--color-teal), var(--color-dark-teal));
	padding: 25px;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-md);
}

.burnout-text h3 {
	font-size: 2.5rem;
	color: #ffffff;
	margin-bottom: 20px;
	font-weight: 700;
	line-height: 1.2;
}

.burnout-highlight h3 {
	margin-bottom: 0;
}

.burnout-text p {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--color-text-light);
}

.burnout-text strong {
	color: var(--color-teal);
	font-weight: 700;
}

.burnout-cta {
	margin-top: 20px;
}

.burnout-cta .hero-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.services-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 40px;
	margin: 0 auto;
}

.service-item {
	background: var(--color-white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	transition: all var(--transition-base);
	display: flex;
	flex-direction: column;
	position: relative;
}

.service-item:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.service-image {
	width: 100%;
	height: 250px;
	overflow: hidden;
	position: relative;
}

.service-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition-slow);
}

.service-item:hover .service-image img {
	transform: scale(1.05);
}

.service-content {
	padding: 30px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.service-tag {
	display: inline-block;
	background: linear-gradient(135deg, var(--color-teal), var(--color-orange));
	color: var(--color-white);
	padding: 6px 15px;
	border-radius: var(--radius-pill);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 15px;
	align-self: flex-start;
}

.service-title {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: var(--color-text);
	font-family: var(--font-secondary);
	font-weight: 700;
	line-height: 1.3;
}

.service-description {
	flex: 1;
	margin-bottom: 20px;
	color: var(--color-text-light);
	line-height: 1.7;
}

.service-description p:last-child {
	margin-bottom: 0;
}

.service-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
	margin-bottom: 20px;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
	gap: 15px;
	flex-wrap: wrap;
}

.service-price,
.service-duration {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	color: var(--color-text);
	font-size: 1rem;
}

.service-price i,
.service-duration i {
	color: var(--color-teal);
	font-size: 16px;
}

.service-price {
	color: var(--color-orange);
	font-size: 1.2rem;
}

.service-book-btn {
	width: 100%;
	text-align: center;
	padding: 15px 30px;
	margin-top: auto;
}

.service-book-btn.free-service {
	background: linear-gradient(135deg, var(--color-teal), var(--color-dark-teal));
}

.service-book-btn.free-service:hover {
	background: linear-gradient(135deg, var(--color-teal-hover), var(--color-teal));
}

/* Responsive Design */
@media (max-width: 991px) {
	.services-list {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 30px;
	}

	.services-section {
		padding: 60px 0;
	}

	.services-section .section-title {
		margin-bottom: 40px;
		font-size: 2rem;
	}
}

@media (max-width: 768px) {
	.services-list {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.services-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.service-content {
		padding: 25px;
	}

	.service-card .service-header,
	.service-card .service-content {
		padding: 20px 25px;
	}

	.service-card .service-footer {
		padding: 15px 25px;
		flex-direction: column;
		align-items: stretch;
	}

	.service-card .service-btn {
		width: 100%;
		justify-content: center;
	}

	.service-image {
		height: 220px;
	}

	.service-card .service-image {
		height: 220px;
	}

	.owner-content {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 30px;
	}

	.owner-name {
		font-size: 1.8rem;
	}

	.owner-title {
		font-size: 1.1rem;
	}

	.cta-section {
		text-align: center;
	}

	.burnout-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.burnout-text h3 {
		font-size: 2rem;
	}

	.service-meta {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
}

@media (max-width: 480px) {
	.services-section {
		padding: 40px 0;
	}

	.about-owner {
		padding: 40px 0;
	}

	.about-owner .section-title {
		font-size: 1.8rem;
		margin-bottom: 30px;
	}

	.owner-content {
		padding: 20px;
		gap: 30px;
	}

	.owner-name {
		font-size: 1.5rem;
	}

	.owner-title {
		font-size: 1rem;
	}

	.owner-bio {
		font-size: 1rem;
	}

	.cta-section .hero-btn {
		padding: 12px 25px;
		font-size: 1rem;
		width: 100%;
		justify-content: center;
	}

	.burnout-section,
	.system-reset-section {
		padding: 40px 0;
	}

	.burnout-section .container,
	.system-reset-section .container {
		padding: 0 20px;
	}

	.burnout-section .section-title,
	.system-reset-section .section-title {
		font-size: 1.8rem;
		margin-bottom: 30px;
	}

	.burnout-text h3 {
		font-size: 1.5rem;
	}

	.burnout-highlight {
		padding: 20px;
	}

	.burnout-text p {
		font-size: 1rem;
	}

	.services-section .section-title {
		font-size: 1.8rem;
		margin-bottom: 30px;
	}

	.service-content {
		padding: 20px;
	}

	.service-card .service-header,
	.service-card .service-content,
	.service-card .service-footer {
		padding: 15px 20px;
	}

	.service-card .service-header h3 {
		font-size: 1.3rem;
	}

	.service-card .service-price {
		font-size: 1.3rem;
	}

	.service-title {
		font-size: 1.3rem;
	}

	.service-image {
		height: 200px;
	}
}

/*--------------------------------------------------------------
3.0 Layout
--------------------------------------------------------------*/
.container {
	max-width: 1500px;
	margin: 0 auto;
	padding: 0 var(--spacing-lg);
}

.row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}

[class*="col-"] {
	padding: 0 15px;
}

.site-main {
	min-height: 50vh;
}

.content-area {
	margin: 40px 0;
}

/*--------------------------------------------------------------
4.0 Links
--------------------------------------------------------------*/
a {
	color: var(--color-teal);
	text-decoration: none;
	transition: color var(--transition-base);
}

a:hover,
a:focus {
	color: var(--color-orange);
}

/*--------------------------------------------------------------
5.0 Buttons
--------------------------------------------------------------*/
.hero-btn,
.btn,
button,
input[type="submit"],
input[type="button"] {
	display: inline-block;
	padding: 18px 40px;
	border-radius: var(--radius-pill);
	font-family: var(--font-primary);
	font-weight: 600;
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-decoration: none;
	transition: all var(--transition-base);
	cursor: pointer;
	border: none;
	box-shadow: var(--shadow-md);
}

/*
 * .primary-btn gradient reads from CSS variables set at runtime
 * by functions.php via get_theme_mod('soul_suite_color_teal') and
 * get_theme_mod('soul_suite_color_orange') from the Theme Colors
 * customizer section. Fallback values in :root match the defaults.
 */
.primary-btn,
input[type="submit"] {
	background: linear-gradient(135deg, var(--btn-gradient-start), var(--btn-gradient-end));
	color: var(--color-white);
}

.primary-btn:hover,
input[type="submit"]:hover,
input[type="submit"]:focus {
	background: linear-gradient(135deg, var(--btn-gradient-start-hover), var(--btn-gradient-end-hover));
	transform: translateY(-3px);
	box-shadow: var(--shadow-lg);
	color: var(--color-white);
}

.secondary-btn {
	background: transparent;
	color: var(--color-white);
	border: 2px solid var(--color-white);
}

.secondary-btn:hover {
	background: var(--color-white);
	color: var(--color-dark-teal);
	box-shadow: var(--shadow-md);
}

/*--------------------------------------------------------------
6.0 Forms
--------------------------------------------------------------*/
input[type="text"],
input[type="email"],
input[type="password"],
input[type="url"],
input[type="search"],
input[type="tel"],
textarea,
select {
	width: 100%;
	padding: 10px 15px;
	border: 1px solid #ddd;
	border-radius: var(--radius-sm);
	font-family: var(--font-primary);
	font-size: var(--font-size-base);
}

textarea {
	min-height: 120px;
	resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
	outline: none;
	border-color: var(--color-teal);
}

.form-row {
	margin-bottom: 20px;
}

/*--------------------------------------------------------------
7.0 Posts and Pages
--------------------------------------------------------------*/
.hentry {
	margin: 0 0 30px;
}

article.sticky {
	padding: 30px;
	border: 1px solid #ddd;
	margin-bottom: 25px;
	background: var(--color-off-white);
}

.byline,
.updated:not(.published) {
	display: none;
}

.single .byline,
.group-blog .byline {
	display: inline;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 13px 0 0;
}

.entry-content img {
	max-width: 100%;
	height: auto;
}

.entry-content ul,
.entry-content ol {
	padding-left: 30px;
	margin-bottom: 1.5rem;
}

.entry-title {
	margin-top: 15px;
	margin-bottom: 10px;
	font-size: 28px;
}

.entry-title a {
	display: inline-block;
	color: #333;
	transition: color var(--transition-base);
}

.entry-title a:hover {
	color: var(--color-orange-hover);
}

.entry_meta,
.entry_meta a {
	color: var(--color-orange);
	font-size: 14px;
}

.entry_meta {
	margin-top: 15px;
	margin-bottom: 15px;
}

.entry_meta i {
	padding-right: 5px;
}

.post_img,
.post_img img {
	text-align: center;
}

.post_img a,
.post_img img {
	display: inline-block;
	max-width: 100%;
	height: auto;
}

.post_btn {
	margin-top: 25px;
}

.page-links {
	clear: both;
	margin: 20px 0;
}

.post-password-form input[type="password"] {
	margin-right: 10px;
}

/*--------------------------------------------------------------
8.0 Comments
--------------------------------------------------------------*/
.comments-area {
	margin-top: 40px;
}

.comments-title,
#reply-title {
	font-size: 24px;
	margin-bottom: 25px;
}

.comments-area ol,
.comments-area ul {
	padding-left: 25px;
}

.comments-area .comment-list {
	padding-left: 0;
	list-style: none;
}

.comments-area li.comment,
.comments-area li.pingback {
	border: 1px dashed #ddd;
	list-style-type: none;
	padding: 15px 15px 25px;
	margin-bottom: 25px;
}

.comments-area ol .children {
	padding-left: 25px;
}

.comment_avatar {
	float: left;
	margin-right: 22px;
}

.comment_avatar img {
	border-radius: 50%;
}

.creply_link {
	display: inline-block;
	text-align: right;
	float: right;
	text-transform: none;
	font-weight: 400;
	font-size: 14px;
	letter-spacing: 0;
}

.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

#comment {
	height: 120px;
}

.form-submit #submit {
	background: #e9e9e9;
	border: 1px solid #e9e9e9;
	color: #777;
	padding: 10px 20px;
	display: inline-block;
	transition: var(--transition-base);
	line-height: normal;
}

.form-submit #submit:hover,
.form-submit #submit:focus {
	background: var(--color-orange);
	color: var(--color-white);
	border-color: var(--color-orange);
}

#cancel-comment-reply-link {
	margin-left: 15px;
}

/*--------------------------------------------------------------
9.0 Widgets
--------------------------------------------------------------*/
.widget {
	margin-bottom: 40px;
}

.widget-title {
	margin-top: 0;
	margin-bottom: 17px;
	font-size: 20px;
}

.widget-area li {
	border-bottom: 1px dashed #ddd;
	padding-bottom: 10px;
	margin-bottom: 10px;
	list-style-type: none;
}

.widget-area li li {
	margin-left: 15px;
}

.widget-area li:last-child {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.widget-area a {
	color: #777;
	transition: var(--transition-base);
}

.widget-area a:hover {
	color: var(--color-orange);
}

.widget select {
	width: 100%;
}

.widget img {
	max-width: 100%;
	height: auto;
}

.widget ul,
.widget ol {
	list-style-type: none;
	padding-left: 0;
}

.tagcloud a {
	background: #e9e9e9;
	color: #777;
	padding: 10px 20px;
	margin: 0 4px 15px;
	display: inline-block;
	font-size: 14px !important;
	transition: var(--transition-base);
	line-height: normal;
	border-radius: var(--radius-sm);
}

.widget .tagcloud a:hover {
	background: var(--color-orange);
	color: var(--color-white);
}

/*--------------------------------------------------------------
10.0 Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

embed,
iframe,
object {
	max-width: 100%;
}

iframe {
	border: none;
}

.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
11.0 Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item { max-width: 50%; }
.gallery-columns-3 .gallery-item { max-width: 33.33%; }
.gallery-columns-4 .gallery-item { max-width: 25%; }
.gallery-columns-5 .gallery-item { max-width: 20%; }
.gallery-columns-6 .gallery-item { max-width: 16.66%; }
.gallery-columns-7 .gallery-item { max-width: 14.28%; }
.gallery-columns-8 .gallery-item { max-width: 12.5%; }
.gallery-columns-9 .gallery-item { max-width: 11.11%; }

.gallery-caption {
	display: block;
	padding-bottom: 20px;
	padding-top: 10px;
}

/*--------------------------------------------------------------
11.5 Header & Navigation
--------------------------------------------------------------*/
.site-header {
	background: var(--color-white);
	box-shadow: var(--shadow-sm);
	position: sticky;
	top: 0;
	z-index: 1000;
	padding: 12px 0;
}

.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	gap: 20px;
}

.site-branding {
	flex: 0 0 auto;
	max-width: 125px;
	transition: max-width var(--transition-base);
}

.site-branding img,
.custom-logo-link img,
.site-branding .custom-logo {
	width: auto;
	height: auto;
	display: block;
	transition: all var(--transition-base);
}

/* Home Page - Larger Centered Logo */
.home .site-header {
	padding: 20px 0;
}

.home .header-inner {
	flex-direction: column;
	justify-content: center;
	text-align: center;
}

.home .site-branding {
	max-width: 250px;
	margin: 0 auto;
}

.home .main-navigation {
	width: 100%;
	justify-content: center;
}

.home .site-title,
.home .site-description {
	text-align: center;
}

.custom-logo-link {
	display: block;
	line-height: 0;
}

.site-title {
	margin: 0;
	font-size: 24px;
	line-height: 1;
}

.site-title a {
	color: var(--color-text);
	text-decoration: none;
}

.site-description {
	margin: 0;
	font-size: 12px;
	color: var(--color-text-light);
	line-height: 1.2;
}

/* Navigation */
.main-navigation {
	display: flex;
	align-items: center;
	flex: 1;
	justify-content: flex-end;
}

.menu-wrapper {
	display: flex;
}

.menu-toggle {
	display: none;
	background: transparent;
	border: none;
	font-size: 24px;
	color: var(--color-teal);
	cursor: pointer;
	padding: 10px;
	transition: color var(--transition-base);
	flex-shrink: 0;
}

.menu-toggle:hover {
	color: var(--color-orange);
}

.menu-toggle .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border-width: 0;
}

/* Desktop Menu */
.nav.navbar-nav {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 25px;
	align-items: center;
}

.nav.navbar-nav li {
	position: relative;
}

.nav.navbar-nav li a {
	color: var(--color-text);
	font-weight: 500;
	text-decoration: none;
	transition: color var(--transition-base);
	padding: 8px 12px;
	display: block;
	font-size: 15px;
	white-space: nowrap;
}

.nav.navbar-nav li a:hover,
.nav.navbar-nav li.current-menu-item > a,
.nav.navbar-nav li.current_page_item > a,
.nav.navbar-nav li.current-menu-ancestor > a,
.nav.navbar-nav li.current_page_ancestor > a {
	color: var(--color-orange);
}

.nav.navbar-nav li.current-menu-item > a,
.nav.navbar-nav li.current_page_item > a {
	font-weight: 600;
	position: relative;
}

.nav.navbar-nav li.current-menu-item > a::after,
.nav.navbar-nav li.current_page_item > a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 12px;
	right: 12px;
	height: 2px;
	background: var(--color-orange);
}

/* Dropdown Menus */
.nav.navbar-nav .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: var(--color-white);
	box-shadow: var(--shadow-md);
	padding: 10px 0;
	min-width: 200px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all var(--transition-base);
	z-index: 1000;
	list-style: none;
	margin: 0;
}

.nav.navbar-nav li:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.nav.navbar-nav .sub-menu li {
	display: block;
	width: 100%;
}

.nav.navbar-nav .sub-menu li a {
	padding: 10px 20px;
	font-size: 14px;
	white-space: normal;
}

/* Mobile Menu Toggle - Show on tablets and below */
@media (max-width: 991px) {
	.menu-toggle {
		display: block;
	}

	/* Hide desktop menu on mobile */
	.main-navigation .menu-wrapper {
		position: fixed;
		top: 0;
		right: -100%;
		width: 280px;
		height: 100vh;
		background: var(--color-white);
		box-shadow: -5px 0 15px rgba(0,0,0,0.1);
		transition: right var(--transition-base);
		overflow-y: auto;
		z-index: 9999;
		display: block;
	}

	.site-branding {
		max-width: 110px;
	}

	.site-branding img,
	.custom-logo-link img {
		max-height: 110px;
		max-width: 110px;
	}

	/* Home page on tablets */
	.home .site-branding {
		max-width: 200px;
	}

	.home .site-branding img,
	.home .custom-logo-link img,
	.home .site-branding .custom-logo {
		max-height: 200px;
		max-width: 200px;
	}

	.home .header-inner {
		gap: 15px;
	}

	.home .menu-toggle {
		margin: 0 auto;
	}

	.main-navigation.toggled .menu-wrapper {
		right: 0;
	}

	.nav.navbar-nav {
		flex-direction: column;
		padding: 80px 30px 30px;
		gap: 0;
	}

	.nav.navbar-nav li {
		border-bottom: 1px solid #eee;
		width: 100%;
	}

	.nav.navbar-nav li a {
		padding: 15px 0;
	}

	/* Mobile Submenu */
	.nav.navbar-nav .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		padding: 0 0 0 20px;
		display: none;
		background: rgba(83, 222, 212, 0.05);
		border-radius: var(--radius-sm);
		margin-top: 5px;
	}

	.nav.navbar-nav li.menu-item-has-children > a {
		position: relative;
		padding-right: 25px;
	}

	.nav.navbar-nav li.menu-item-has-children > a::after {
		content: '▼';
		font-size: 10px;
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		transition: transform var(--transition-base);
	}

	.nav.navbar-nav li.submenu-open > a::after {
		transform: translateY(-50%) rotate(180deg);
	}

	.nav.navbar-nav li.submenu-open > .sub-menu {
		display: block;
	}

	.nav.navbar-nav .sub-menu li {
		border-bottom: none;
	}

	.nav.navbar-nav .sub-menu li a {
		padding: 10px 0;
		font-size: 14px;
	}

	body.menu-open {
		overflow: hidden;
	}
}

@media (max-width: 768px) {
	.site-branding {
		max-width: 100px;
	}

	.site-branding img,
	.custom-logo-link img,
	.site-branding .custom-logo {
		max-height: 100px;
		max-width: 100px;
	}

	/* Home page responsive */
	.home .site-branding {
		max-width: 180px;
	}

	.home .site-branding img,
	.home .custom-logo-link img,
	.home .site-branding .custom-logo {
		max-height: 180px;
		max-width: 180px;
	}

	.home .site-header {
		padding: 15px 0;
	}
}

@media (max-width: 480px) {
	.site-header {
		padding: 8px 0;
	}

	.site-branding {
		max-width: 80px;
	}

	.site-branding img,
	.custom-logo-link img,
	.site-branding .custom-logo {
		max-height: 80px;
		max-width: 80px;
	}

	/* Home page responsive */
	.home .site-branding {
		max-width: 140px;
	}

	.home .site-branding img,
	.home .custom-logo-link img,
	.home .site-branding .custom-logo {
		max-height: 140px;
		max-width: 140px;
	}

	.home .site-header {
		padding: 12px 0;
	}

	.header-inner {
		gap: 10px;
	}

	.menu-toggle {
		font-size: 20px;
		padding: 8px;
	}

	.site-title {
		font-size: 18px;
	}

	.site-description {
		font-size: 11px;
	}
}

/* Ensure content isn't hidden behind sticky header */
.site-content {
	position: relative;
	z-index: 1;
}

.intake-form-page {
	margin-top: 0;
	padding-top: 20px;
}

.intake-form-page .container {
	position: relative;
	z-index: 1;
}

/*--------------------------------------------------------------
12.0 Navigation & Pagination
--------------------------------------------------------------*/
.navigation.pagination {
	margin: 15px 0;
}

.navigation.pagination a,
.navigation.pagination span {
	padding: 12px 16px;
	background: #e9e9e9;
	margin-right: 10px;
	border-radius: var(--radius-sm);
	display: inline-block;
}

.navigation.pagination a {
	color: #777;
	transition: var(--transition-base);
}

.navigation.pagination a:hover,
.navigation.pagination span.current {
	background: var(--color-orange);
	color: var(--color-white);
}

.nav-links .nav-previous,
.nav-links .nav-next {
	text-align: center;
}

.nav-links .nav-previous a,
.nav-links .nav-next a {
	display: inline-block;
	text-align: center;
	padding: 10px 15px;
	border: 1px solid var(--color-orange);
	margin-bottom: 20px;
	border-radius: var(--radius-sm);
}

.nav-links .nav-previous a:hover,
.nav-links .nav-next a:hover {
	background: var(--color-orange);
	color: var(--color-white);
}

/* Breadcrumbs */
.section-top-title {
	padding: 150px 0 90px;
	background-size: cover;
	background-position: center;
	position: relative;
}

.section-top-title .overlay {
	background: rgba(0, 0, 0, 0.5);
	position: relative;
}

.section-top-title h2 {
	color: var(--color-white);
	font-size: 40px;
	margin: 0;
	text-transform: uppercase;
}

.breadcrumb {
	background: transparent;
	margin-bottom: 0;
}

.section-top-title .breadcrumb > .active,
.section-top-title ol li,
.section-top-title ol li a {
	color: var(--color-white);
}

.section-top-title ol li a:hover {
	color: var(--color-orange);
}

/*--------------------------------------------------------------
13.0 Responsive
--------------------------------------------------------------*/
@media (max-width: 991px) {
	.single_team {
		margin-bottom: 30px;
	}
}

@media (max-width: 768px) {
	:root {
		--font-size-h1: 2rem;
		--font-size-h2: 1.8rem;
		--font-size-h3: 1.5rem;
	}

	.container {
		padding: 0 var(--spacing-sm);
	}

	.hero-btn {
		padding: 15px 30px;
		font-size: 1rem;
	}

	#secondary {
		margin-top: 30px;
	}

	.section-top-title h2 {
		font-size: 30px;
	}
}

@media (max-width: 600px) {
	.admin-bar .navbar-fixed-top.menu-top.menu-shrink {
		margin-top: 0;
	}
}

@media (max-width: 480px) {
	:root {
		--font-size-h1: 1.8rem;
		--font-size-h2: 1.5rem;
		--font-size-h3: 1.3rem;
		--font-size-base: 15px;
	}

	.hero-btn {
		width: 100%;
		text-align: center;
	}
}

@media (max-width: 320px) {
	.section-top-title h2 {
		font-size: 24px;
	}
}

/*--------------------------------------------------------------
# Utility Classes
--------------------------------------------------------------*/
.center-block {
	float: none;
	margin-left: auto;
	margin-right: auto;
}

.text-center {
	text-align: center;
}

.clearfix::after {
	content: "";
	display: table;
	clear: both;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
/*
 * .site-footer background reads from CSS variables set at runtime
 * by functions.php via get_theme_mod('soul_suite_footer_bg_start')
 * and get_theme_mod('soul_suite_footer_bg_end') from the Footer
 * Settings customizer section. Fallback values in :root match defaults.
 */
.site-footer {
	background: linear-gradient(135deg, var(--footer-bg-start) 0%, var(--footer-bg-end) 100%);
	color: var(--color-white);
	padding: 60px 0 30px;
	position: relative;
}

.site-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #53DED4 0%, #EBA958 50%, #DF6E46 100%);
}

.footer-content {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

/* Footer Social Links */
.footer-social-links {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.footer-social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: var(--color-white);
	font-size: 18px;
	transition: all var(--transition-base);
	border: 2px solid transparent;
}

/*
 * .footer-social-link hover background reads from CSS variables set
 * at runtime by functions.php via get_theme_mod() for
 * soul_suite_footer_social_hover_start / _mid / _end from the Footer
 * Settings customizer section. Fallback values in :root match defaults.
 */
.footer-social-link:hover {
	background: linear-gradient(to right, var(--footer-social-hover-start), var(--footer-social-hover-mid), var(--footer-social-hover-end));
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
	color: var(--color-white);
	border-color: var(--color-white);
}

.footer-social-link i {
	font-size: 20px;
}

/* Footer Menu */
.footer-navigation {
	margin-bottom: 30px;
}

.footer-menu {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px 30px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-menu li {
	margin: 0;
}

.footer-menu a {
	color: var(--color-white);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: color var(--transition-base);
	opacity: 0.9;
}

.footer-menu a:hover {
	color: var(--color-teal);
	opacity: 1;
}

.footer-menu li:not(:last-child)::after {
	content: '|';
	margin-left: 30px;
	opacity: 0.3;
}

/* Copyright / Site Info */
.site-info {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-info p {
	margin: 8px 0;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
}

.site-info a {
	color: var(--color-teal);
	text-decoration: none;
	font-weight: 600;
	transition: color var(--transition-base);
}

.site-info a:hover {
	color: var(--color-orange);
}

.site-info .heart {
	color: var(--color-orange);
	display: inline-block;
	animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
	0%, 100% { transform: scale(1); }
	10%, 30% { transform: scale(1.1); }
	20%       { transform: scale(0.9); }
}

/* Footer Responsive */
@media (max-width: 768px) {
	.site-footer {
		padding: 50px 0 25px;
		/*margin-top: 60px;*/
	}

	.footer-social-links {
		gap: 15px;
		margin-bottom: 30px;
	}

	.footer-social-link {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}

	.footer-menu {
		flex-direction: column;
		gap: 15px;
	}

	.footer-menu li:not(:last-child)::after {
		display: none;
	}

	.site-info p {
		font-size: 13px;
	}
}

/*--------------------------------------------------------------
# Admin Bar Adjustments
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Infinite Scroll
--------------------------------------------------------------*/
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Import Custom Styles
--------------------------------------------------------------*/
/* Section-specific styles loaded from custom.css */
@import url('assets/css/custom.css');

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700&family=Dancing+Script:wght@400;600;700&display=swap');