@import url('colors.css');

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	background-color: var(--c-bg-primary);
	color: var(--c-text-primary);
	font-family: var(--font-base);
	line-height: 1.6;
	font-size: 18px;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

:root {
	/* Treatment Page Layout Settings - Easy to resize here! */
	--treatment-img-height: 450px;
	--treatment-content-max-width: 1000px;
}


/* ... Headings ... */
h1,
h2,
h3,
h4 {
	font-weight: 400;
	line-height: 1.2;
	margin-bottom: 1em;
	color: var(--c-text-primary);
	scroll-margin-top: 140px;
	/* Fix for sticky header overlap */
}

/* Add scroll margin to sections and specific targets too */
section,
.treatment-desc-item,
div[id] {
	scroll-margin-top: 140px;
}

/* Treatment Page Detail Layout */
.treatment-desc-item {
	display: flex;
	flex-direction: column;
	/* Image above text */
	gap: 40px;
	align-items: center;
	margin-bottom: 80px;
	max-width: var(--treatment-content-max-width);
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.treatment-desc-item .img-wrapper {
	width: 100%;
	height: var(--treatment-img-height) !important;
	/* Force override of old inline heights if any */
	border-radius: 20px;
	overflow: hidden;
}

.treatment-desc-item .treatment-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 20%;
	border: 4px solid var(--c-text-primary);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	border-radius: 30% 5% 30% 5%;
	transition: all 0.3s ease;
}

.treatment-desc-item:hover .treatment-img {
	border-radius: 5% 30% 5% 30%;
}

.treatment-desc-item .desc-content {
	width: 100%;
	max-width: 800px;
	/* Keep text readable */
	text-align: left;
	/* Better for long text */
}

.category-title {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 40px;
	color: var(--c-text-primary);
}

.treatment-desc-item .desc-content h3 {
	font-size: 2rem;
	margin-top: 0;
	margin-bottom: 5px;
	color: var(--c-text-primary);
}

.treatment-desc-item .desc-content h4 {
	font-size: 1.25rem;
	font-style: italic;
	font-weight: 400;
	margin-bottom: 30px;
	color: var(--c-accent);
}

.treatment-desc-item .desc-content h5 {
	font-size: 1.1rem;
	font-weight: 700;
	margin-top: 25px;
	margin-bottom: 12px;
	color: var(--c-text-primary);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.treatment-desc-item .desc-content p {
	color: var(--c-text-secondary);
	margin-bottom: 20px;
	line-height: 1.8;
}

.treatment-desc-item .desc-content ul {
	list-style: none;
	padding: 0;
	margin-bottom: 30px;
}

.treatment-desc-item .desc-content li {
	position: relative;
	padding-left: 25px;
	margin-bottom: 12px;
	color: var(--c-text-secondary);
}

.treatment-desc-item .desc-content li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: var(--c-accent);
	font-weight: bold;
}

h1 {
	font-size: 3.5rem;
}

h2 {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 2rem;
}

/* ... existing code ... */

/* Hamburger Button - HIDDEN per user request (Logo is now toggle) */
header nav button {
	display: none !important;
}

/* ... rest of existing code ... */
header.sticky nav button {
	display: none !important;
}

h3 {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

a {
	text-decoration: none;
	color: inherit;
	transition: color 0.3s ease;
}

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

/* ... Page Wrapper & Menu ... */
#page {
	position: relative;
	transition: 1s all ease-in-out;
	width: 100%;
	z-index: 1;
}

#page.menuopen {
	opacity: .6;
	filter: blur(20px);
	transform: scale(0.95);
	pointer-events: none;
}

header {
	z-index: 99999;
	position: relative;
	height: 0;
}

/* Consolidated Logo Styles */
header #logo {
	position: fixed;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	/* Explicitly unset right to prevent conflicts */
	right: auto;
	width: auto;
	height: 100px;
	z-index: 10001;
	transition: all 0.4s ease;
	pointer-events: auto;
	cursor: pointer;
}

header #logo:hover {
	transform: translateX(-50%) scale(1.05);
	/* Maintain centering while scaling */
}

/* Language Switcher */
header .top-bar {
	position: fixed;
	top: 15px;
	right: 40px;
	z-index: 10002;
	pointer-events: auto;
	transition: opacity 0.3s ease;
}

/* 2. Nav Pill - Centered Below Logo (Glassy Style) */
header nav {
	display: flex;
	height: 60px;
	justify-content: center;
	align-items: center;
	padding: 0 40px;
	position: fixed;
	left: 50%;
	transform: translateX(-50%);
	width: max-content;
	min-width: 0;
	top: 115px;
	/* Pushed down to sit clearly below logo */

	/* Glassy Effect (iOS Style) */
	background: rgba(255, 255, 255, 0.65);
	backdrop-filter: blur(25px) saturate(180%);
	-webkit-backdrop-filter: blur(25px) saturate(180%);
	box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.5);

	border-radius: 200px;
	z-index: 10000;
	transition: 0.8s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

header nav a {
	color: var(--c-text-primary);
	text-decoration: none;
	font-weight: 700;
	display: block;
	padding: 10px 15px;
	line-height: 1;
	font-size: 14px;
	letter-spacing: 1.5px;
	transition: .3s all cubic-bezier(0.075, 0.82, 0.165, 1) .6s;
	position: relative;
	z-index: 9;
	margin: 0px 15px;
	/* Regular spacing */
	white-space: nowrap;
}

/* Remove the old gap margins */
header nav a:nth-of-type(2) {
	margin-right: 15px;
}

header nav a:nth-of-type(3) {
	margin-left: 15px;
}

header nav a:hover {
	color: var(--c-accent);
}

.lang-switcher {
	display: flex;
	gap: 8px;
	align-items: center;
	position: sticky;
	top: 0;
}

.lang-link {
	color: var(--c-text-primary);
	text-decoration: none;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 12px;
	font-size: 11px;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: all 0.3s ease;
	opacity: 0.6;
}

.lang-link:hover {
	opacity: 1;
	color: var(--c-accent);
}

.lang-link.active {
	background: var(--c-accent);
	color: #fff;
	opacity: 1;
}

.lang-link:hover {
	background: rgba(166, 144, 118, 0.1);
	color: var(--c-accent);
}

.lang-link.active {
	background: var(--c-accent);
	color: #fff;
}

/* Hamburger Button */
header nav button {
	-webkit-appearance: none;
	appearance: none;
	background: rgba(92, 75, 67, 0.1);
	backdrop-filter: blur(5px);
	border: 1px solid rgba(92, 75, 67, 0.2);
	position: absolute;
	/* Kept absolute for desktop/general logic, but adjusted in mobile media query */
	z-index: 99;
	left: 0;
	margin: auto;
	right: 0;
	top: 0;
	bottom: 0;
	width: 50px;
	height: 50px;
	border-radius: 100%;
	outline: 0;
	cursor: pointer;
	transition: .3s all cubic-bezier(0.075, 0.82, 0.165, 1) 0.2s;
	transform: scale(0);
}

header nav button span {
	width: 40%;
	background: var(--c-text-primary);
	height: 2px;
	display: block;
	margin: 5px auto;
	transform: scalex(0);
	transition: .6s transform cubic-bezier(0.075, 0.82, 0.165, 1) 0s, .3s margin ease-in 0s;
}

header nav button:hover {
	border-color: var(--c-accent);
}

header nav button:hover span {
	background: var(--c-accent);
	margin: 10px auto;
}

/* Sticky/Mobile Styles for Nav */
/* Sticky/Mobile Styles for Nav */
/* Sticky: Logo scales down but stays centered */
header.sticky #logo {
	top: 15px;
	left: 50%;
	transform: translateX(-50%) scale(0.8);
	opacity: 1;
	transition-delay: 0s;
	pointer-events: auto;
}

/* Hide top bar on scroll */
header.sticky .top-bar {
	opacity: 0;
	pointer-events: none;
}

/* Sticky Nav: Morph into the Logo (Hide behind it) */
header.sticky nav {
	top: 15px;
	/* Match logo top position */
	left: 50%;
	transform: translateX(-50%) scale(0.5);
	/* Shrink it down */

	/* Make it transparent/hidden behind logo */
	opacity: 0;
	pointer-events: none;
	/* Not clickable when hidden */

	padding: 0;
	width: 50px;
	/* Small size */
	height: 50px;
	min-width: 0;

	background: transparent;
	box-shadow: none;
	border: none;
	backdrop-filter: none;
	transition-delay: 0s;
	z-index: 9000;
	/* Behind logo (10001) */
}

/* When Nav is OPEN, restore it to visible pill */
header.nav-open nav {
	top: 115px !important;
	/* Move back down */
	left: 50%;
	transform: translateX(-50%) scale(1) !important;
	opacity: 1 !important;
	pointer-events: auto !important;

	/* Restore Glassy Look */
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(25px) saturate(180%);
	-webkit-backdrop-filter: blur(25px) saturate(180%);
	box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.6);

	width: max-content;
	height: auto;
	padding: 15px 40px;
	display: flex;
}

/* Hide specific active page link */
header nav a.current-page {
	display: none;
}

/* ... Hero & Sections ... */
.hero {
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	background-image: url('../images/wellness-sanctuary-hero-itsumi-ryoho.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	position: relative;
	color: var(--c-bg-primary);
	padding-top: 150px;
}

.hero::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(92, 75, 67, 0.4);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 800px;
	padding: 20px;
}

.hero h1 {
	color: #fff;
	font-size: 4rem;
	margin-bottom: 20px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero p {
	font-size: 1.25rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 40px;
}

.btn {
	display: inline-block;
	padding: 15px 40px;
	background-color: var(--c-bg-primary);
	color: var(--c-text-primary);
	border-radius: 50px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-size: 0.9rem;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

section {
	padding: 100px 20px;
	max-width: 1200px;
	margin: 0 auto;
}

/* ... Treatments Grid ... */
.treatments-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
}

.treatment-card {
	background: transparent;
	border-radius: 30% 5% 30% 5%;
	overflow: visible;
	box-shadow: none;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
}

.treatment-card:hover {
	border-radius: 5% 30% 5% 30%;
}

.img-wrapper {
	position: relative;
	height: 180px;
	width: 100%;
	overflow: visible;
	background: transparent;
}

.treatment-img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center 20%;
	display: block;
	border-radius: 30% 5% 30% 5%;
	border: 4px solid var(--c-text-primary);
	box-shadow: 0 8px 20px rgba(92, 75, 67, 0.3);
	transition: border-radius 0.3s ease, box-shadow 0.3s ease;
}

.treatment-card:hover .treatment-img {
	border-radius: 5% 30% 5% 30%;
	box-shadow: 0 12px 30px rgba(92, 75, 67, 0.4);
}



.treatment-info {
	padding: 30px;
	flex: 1;
	text-align: center;
}

.treatment-info p {
	color: var(--c-text-secondary);
	font-size: 0.95rem;
	margin-bottom: 20px;
}

.read-more {
	font-weight: 700;
	color: var(--c-accent);
	text-transform: uppercase;
	font-size: 0.8rem;
	letter-spacing: 1px;
	display: block;
	margin-top: auto;
	text-decoration: none;
}

.read-more:hover {
	color: var(--c-text-primary);
}

/* ... Pricing Grid (Landing Page) ... */
.pricing-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: center;
}

.price-card {
	background: var(--c-bg-card);
	border-radius: 20px;
	padding: 40px 30px;
	flex: 1 1 250px;
	max-width: 300px;
	box-shadow: var(--shadow-soft);
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.price-title {
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--c-text-secondary);
	margin-bottom: 10px;
	display: block;
}

.price {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--c-text-primary);
	margin-bottom: 30px;
}

.price span {
	font-size: 1rem;
	font-weight: 400;
	color: var(--c-text-secondary);
}

.price-features {
	list-style: none;
	margin-bottom: 30px;
	flex-grow: 1;
}

.price-features li {
	margin-bottom: 15px;
	color: var(--c-text-secondary);
}

.btn-outline {
	background: transparent;
	border: 2px solid var(--c-accent);
	color: var(--c-accent);
	padding: 10px 30px;
	border-radius: 50px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-outline:hover {
	background: var(--c-accent);
	color: #fff;
}

/* ... Pricing List Layout (New) ... */
#pricing,
#pricelist {
	background-color: var(--c-bg-secondary);
	border-radius: 30px;
	margin: 50px auto;
	padding: 80px 40px;
	max-width: 1000px;
	/* Center the section */
}

.pricing-container {
	max-width: 900px;
	margin: 0 auto;
	background: var(--c-bg-card);
	padding: 60px;
	border-radius: 20px;
	box-shadow: var(--shadow-soft);
}

.price-category {
	margin-bottom: 50px;
}

.price-category:last-child {
	margin-bottom: 0;
}

.price-category h3 {
	text-align: center;
	color: var(--c-text-primary);
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 1.8rem;
	margin-bottom: 30px;
	border-bottom: 1px solid var(--c-accent);
	padding-bottom: 15px;
	display: inline-block;
	width: 100%;
}

.price-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
	font-size: 1.1rem;
	color: var(--c-text-secondary);
	border-bottom: 1px dashed rgba(166, 144, 118, 0.3);
	/* faint dotted line */
	padding-bottom: 5px;
}

.price-item:last-child {
	border-bottom: none;
}

.item-name {
	font-weight: 500;
}

.item-price {
	font-weight: 700;
	color: var(--c-text-primary);
	margin-left: 20px;
}

.price-admin-fee {
	text-align: center;
	margin-top: 40px;
	font-size: 0.9rem;
	font-style: italic;
	color: var(--c-text-secondary);
}


/* ... Footer ... */
footer {
	background-color: var(--c-bg-footer);
	color: #fff;
	padding: 60px 20px;
	text-align: center;
	margin-top: 50px;
}

.footer-logo {
	width: 60px;
	margin: 0 auto 20px auto;
	/* Explicit centering */
	opacity: 0.8;
	display: block;
	/* Ensure it behaves as block for margin auto */
}

.social-links {
	margin-top: 20px;
	display: flex;
	gap: 20px;
	justify-content: center;
}

.social-link {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s ease;
}

.social-link:hover {
	background: var(--c-accent);
}

.social-link svg {
	width: 20px;
	fill: #fff;
}

/* ... Card Hover Glow ... */
.treatment-card:hover,
.price-card:hover {
	box-shadow: 0 15px 40px -5px rgba(166, 144, 118, 0.6);
	/* Glow in accent color */
	transform: translateY(-5px);
}


/* ... Sparkles (Particles) ... */
.sparkle {
	position: fixed;
	width: 6px;
	height: 6px;
	background-color: rgba(255, 215, 0, 0.8);
	/* Gold/Sparkle color */
	border-radius: 50%;
	pointer-events: none;
	z-index: 999999;
	box-shadow: 0 0 4px rgba(255, 215, 0, 0.6);
	animation: fadeAndFloat 1s linear forwards;
}

@keyframes fadeAndFloat {
	0% {
		opacity: 1;
		transform: scale(var(--scale, 1)) translateY(0);
	}

	100% {
		opacity: 0;
		transform: scale(0) translateY(20px);
		/* Float down or up */
	}
}

/* Animations: Fly In + Twist (Re-used) */
@keyframes flyInTwist {
	from {
		opacity: 0;
		transform: translateX(-50px) rotate(-5deg);
	}

	to {
		opacity: 1;
		transform: translateX(0) rotate(0);
	}
}

.animate-slide-in {
	opacity: 0;
	transition: opacity 0.5s ease-out;
	/* Smooth fade for JS toggle */
}

/* JS Driven State */
.animate-slide-in.active {
	opacity: 1;
	animation: flyInTwist 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* Mobile */
@media (max-width: 768px) {
	h1 {
		font-size: 2.5rem;
	}

	h2 {
		font-size: 2rem;
	}

	.hero {
		background-attachment: scroll;
	}

	.hero-content {
		padding: 0 20px;
	}

	#logo {
		width: 80px;
		/* Smaller mobile logo */
		left: 20px;
		/* Pin to left */
		transform: none;
		/* No centering */
		top: 15px;
		pointer-events: auto;
		z-index: 10001;
	}

	/* Override Sticky behavior on mobile to keep it left */
	header.sticky #logo {
		left: 20px;
		transform: none;
		top: 15px;
		width: 70px;
		opacity: 1;
	}

	/* Sticky Mobile: Keep button on right, not centered */
	header.sticky nav button {
		left: auto;
		right: 20px;
		margin: 0;
		top: 20px;
		bottom: auto;
	}

	/* Mobile Top Bar/Lang Switcher: Can stay right or move into menu */
	header .top-bar {
		display: none;
		/* Let's hide top bar text on mobile home, likely inside menu */
	}

	/* Force Menu Button to Right Corner */
	header nav button {
		left: auto;
		right: 20px;
		transform: scale(1);
		/* Always visible on mobile */
		top: 20px;
		bottom: auto;
		margin: 0;
	}

	/* Container: Transparent & passable when closed */
	header nav {
		width: 100%;
		min-width: 0;
		/* Override desktop min-width */
		height: 80px;
		/* Cover header area */
		top: 0;
		left: 0;
		right: 0;
		padding: 0;
		justify-content: center;
		background-color: transparent;
		border: none;
		border-radius: 0;
		/* Override desktop radius */
		box-shadow: none;
		backdrop-filter: none;
		pointer-events: none;
		/* Clicks go through to page/logo area */
		display: flex;
		transition: none;
		/* Avoid weird transitions on container size */
	}

	/* Links: Hidden initially */
	header nav a {
		display: none;
		opacity: 0;
		margin: 10px 0 !important;
		font-size: 1.2rem;
	}

	/* Language switcher: Hidden initially */
	.lang-switcher {
		display: none;
		opacity: 0;
		flex-direction: row;
		gap: 10px;
		margin: 200px 0;
	}

	/* Sticky Override: Mobile Nav Container should NOT be a pill */
	header.sticky nav {
		top: 0;
		padding: 0;
		width: 100%;
		min-width: 0;
		height: 80px;
		background-color: transparent;
		box-shadow: none;
		border-radius: 0;
	}

	header.sticky nav button {
		transform: scale(1);
		/* Ensure button stays visible */
	}

	header.sticky nav a {
		/* Keep links hidden in sticky mobile until menu opens */
		display: none;
	}

	/* Container: Visible & Active when Open */
	header.nav-open nav {
		width: 90%;
		height: auto;
		min-height: 300px;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding-top: 80px;
		/* Push content down so it doesn't overlap logo */
		padding-bottom: 40px;
		border-radius: 20px;
		background-color: rgba(255, 255, 255, 0.98);
		border: 1px solid rgba(255, 255, 255, 0.8);
		box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
		backdrop-filter: blur(10px);
		top: 20px;
		margin: 0 auto;
		pointer-events: auto;
		/* Capture clicks for links */
		transition: 0.3s all cubic-bezier(0.075, 0.82, 0.165, 1);
	}

	/* Links: Visible when Open */
	header.nav-open nav a {
		display: block;
		opacity: 1;
		margin: 15px 0 !important;
	}

	/* Language switcher: Visible when Open */
	header.nav-open .lang-switcher {
		display: flex;
		opacity: 1;
		justify-content: center;
	}

	/* Invisible Overlay Button (The Trigger) */
	header nav button {
		display: block !important;
		opacity: 0;
		/* Invisible */
		width: 120px;
		/* Covers the 100px logo + padding */
		height: 80px;
		/* Full header height */
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		margin: 0 auto;
		/* Centered over logo */
		z-index: 10005;
		/* Top level */
		cursor: pointer;
		transform: scale(1);
		pointer-events: auto;
		/* Catch the click! */
	}

	header.nav-open nav button {
		top: 0;
		/* Stay in place to toggle close */
	}

	/* Logo visibility during open menu */
	header.nav-open #logo {
		opacity: 1 !important;
		top: 25px;
	}

	section {
		padding: 60px 20px;
	}

	.treatments-grid {
		grid-template-columns: 1fr;
	}

	.pricing-container {
		padding: 30px 20px;
	}
}

/* ... FAQ Accordion Styles ... */
.faq-container {
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

details.faq-item {
	background: var(--c-bg-card, #fff);
	border-radius: 20px;
	/* Matching the price card radius */
	padding: 0;
	box-shadow: var(--shadow-soft, 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06));
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid rgba(166, 144, 118, 0.1);
}

details.faq-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

summary {
	padding: 25px 30px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	list-style: none;
	font-weight: 600;
	color: var(--c-text-primary);
	font-size: 1.1rem;
	user-select: none;
}

summary::-webkit-details-marker {
	display: none;
}

.faq-icon {
	color: var(--c-accent);
	font-size: 1.5rem;
	transition: transform 0.3s ease;
}

details[open] .faq-icon {
	transform: rotate(45deg);
}

.faq-answer {
	padding: 0 30px 30px 30px;
	color: var(--c-text-secondary);
	line-height: 1.7;
	border-top: 1px solid rgba(166, 144, 118, 0.1);
	animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.faq-answer ul,
.faq-answer ol {
	padding-left: 20px;
	margin-top: 10px;
}

.faq-answer li {
	margin-bottom: 8px;
}

/* ... About Me Text Styles ... */
.about-text-container {
	max-width: 1200px;
	margin: 0 auto;
}

.about-flex-container {
	display: flex;
	gap: 60px;
	align-items: flex-start;
	justify-content: space-between;
}

.about-text-column {
	flex: 1;
	text-align: left;
}

.profile-img-column {
	flex: 0 0 auto;
}

/* Mobile responsive */
@media (max-width: 900px) {
	.about-flex-container {
		flex-direction: column;
		align-items: center;
		gap: 40px;
	}

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

.about-text-container p {
	margin-bottom: 25px;
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--c-text-secondary);
}

.about-highlight {
	font-size: 1.3rem;
	color: var(--c-accent);
	font-weight: 500;
	font-style: italic;
	margin: 40px 0;
	display: block;
	font-family: serif;
	/* Elegant touch */
}

/* --- Nav Open State (Triggered by Logo) --- */
header.nav-open nav {
	pointer-events: auto;
	/* Enable clicks */
	opacity: 1;
}

header.nav-open nav a {
	pointer-events: auto;
	opacity: 1;
	transform: scale(1);
	/* Ensure visible */
	max-width: none;
}

/* Ensure Logo stays clickable */
header.nav-open #logo {
	pointer-events: auto;
}

@media (max-width: 768px) {

	/* When open on mobile, maybe show a background or pill style? */
	header.nav-open nav {
		pointer-events: auto;
		background: rgba(255, 255, 255, 0.95);
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
		/* Safari Fix */
		top: 70px;
		/* Below logo */
		height: auto;
		flex-wrap: wrap;
		padding: 20px;
		border-radius: 20px;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	}

	header.nav-open nav a {
		font-size: 16px;
		margin: 10px;
		display: block;
	}
}

/* ... Events Grid ... */
.events-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 40px;
	padding: 20px 0;
}

.event-card {
	background: var(--c-bg-card, #fff);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow-soft);
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px -5px rgba(166, 144, 118, 0.4);
}

.event-img-wrapper {
	position: relative;
	height: 250px;
	width: 100%;
	overflow: hidden;
}

.event-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

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

.event-date-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background: rgba(255, 255, 255, 0.95);
	padding: 10px 15px;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	min-width: 60px;
}

.event-date-badge .day {
	display: block;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--c-text-primary);
	line-height: 1;
}

.event-date-badge .month {
	display: block;
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--c-accent);
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* --- About Me Profile Image --- */
.profile-img-container {
	text-align: center;
	margin-bottom: 50px;
}

.profile-img {
	width: 280px;
	height: 280px;
	object-fit: cover;
	border: 4px solid var(--c-text-primary);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	border-radius: 30% 5% 30% 5%;
	transition: all 0.3s ease;
}

.profile-img:hover {
	border-radius: 5% 30% 5% 30%;
}

.event-details {
	padding: 30px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.event-details h3 {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: var(--c-text-primary);
}

.event-meta {
	font-size: 0.9rem;
	color: var(--c-text-secondary);
	margin-bottom: 20px;
	line-height: 1.8;
}

.event-desc {
	color: var(--c-text-secondary);
	margin-bottom: 30px;
	flex-grow: 1;
}

/* Ensure placeholder looks nice */
.event-img[src="placeholder.png"] {
	opacity: 0.9;
}

/* ... Reviews Section ... */
.reviews-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.review-card {
	background: rgba(255, 255, 255, 0.65);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	padding: 30px;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
	transition: transform 0.3s ease;
	display: flex;
	flex-direction: column;
}

.review-card:hover {
	transform: translateY(-5px);
}

.stars {
	color: var(--c-accent, #a69076);
	font-size: 1.2rem;
	margin-bottom: 15px;
}

.review-text {
	font-style: italic;
	color: var(--c-text-secondary);
	margin-bottom: 20px;
	line-height: 1.6;
	flex-grow: 1;
}

.customer-name {
	font-weight: 700;
	color: var(--c-text-primary);
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Individual Image Adjustments - Use these to fine-tune cropping per image */
/* Home Page Card Images */
#card-reiki {
	object-position: center 60%;
}

#card-tarot {
	object-position: center 20%;
}

#card-holistic {
	object-position: center 40%;
}

#card-madero {
	object-position: center 70%;
}

#card-shiatsu {
	object-position: center 45%;
}

#card-yoga {
	object-position: center 40%;
}

/* Detailed Treatment Page Images */
#desc-reiki {
	object-position: center 60%;
}

#desc-tarot {
	object-position: center 20%;
}

#desc-holistic {
	object-position: center 40%;
}

#desc-madero {
	object-position: center 65%;
}

#desc-shiatsu {
	object-position: center 45%;
}

#desc-yoga {
	object-position: center 40%;
}

#desc-chakra {
	object-position: center 60%;
}

#desc-remote-reiki {
	object-position: center 60%;
}