/* Sacred Pathways - Spiritual Companionship Website Styles */

/* CSS Custom Properties */
:root {
	/* Color Palette - Soft, Calming, Trustworthy */
	--primary-color: #6EBD71;
	/* Soft lavender purple */
	--primary-light: #96db99;
	/* Lighter purple */
	--primary-dark: #59935b;
	/* Darker purple */
	--secondary-color: #B8D4C8;
	/* Sage green */
	--accent-color: #E8D5B3;
	/* Warm cream */
	--text-primary: #2C3E50;
	/* Deep blue-gray */
	--text-secondary: #5A6B7D;
	/* Medium gray-blue */
	--text-light: #8A9BA8;
	/* Light gray-blue */
	--background-light: #e9ebe2;
	/* Very light gray */
	--background-cream: #FDF8E5;
	--background-shadow: #FDF8E566;
	/* Warm off-white */
	--white: #FFFDFD;
	--border-color: #E1E8ED;

	/* Typography */
	--font-heading: 'Cormorant Garamond', serif;
	--font-body: 'Inter', sans-serif;

	/* Spacing */
	--section-padding: 5rem 0;
	--container-padding: 2rem;

	/* Shadows */
	--shadow-light: 0 2px 20px rgba(123, 104, 166, 0.08);
	--shadow-medium: 0 4px 30px rgba(123, 104, 166, 0.15);
	--shadow-strong: 0 8px 40px rgba(123, 104, 166, 0.2);

	/* Transitions */
	--transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: var(--font-body);
	line-height: 1.7;
	color: var(--text-primary);
	background-color: var(--white);
	overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	font-weight: 500;
	line-height: 1.3;
	margin-bottom: 1rem;
	color: var(--text-primary);
}

h1 {
	font-size: 3.5rem;
}

h2 {
	font-size: 2.75rem;
}

h3 {
	font-size: 2.25rem;
}

h4 {
	font-size: 1.75rem;
}

h5 {
	font-size: 1.25rem;
}

h6 {
	font-size: 1rem;
}

p {
	font-size: 1.1rem;
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
}

a {
	color: var(--text-secondary);
	text-decoration: underline;
	font-weight: lighter;
}

a:hover {
	color: var(--text-light);
}

dl {
	color: var(--text-secondary);
}

dt {
	font-size: 1.1rem;
	font-weight: normal
}

dd {
	font-weight: 300;
	font-size: .96rem;
}

.location-text-muted {
	color: var(--text-secondary);
	font-weight: 300;
}

/* Navigation */
.navbar {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--border-color);
	padding: 1rem 0;
	transition: var(--transition-smooth);
}

.navbar.scrolled {
	background: rgba(255, 255, 255, 0.98);
	box-shadow: var(--shadow-light);
}

.navbar-brand {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--primary-color) !important;
	text-decoration: none;
	display: flex;
	align-items: center;
}

.navbar-brand i {
	font-size: 1.75rem;
}

.nav-link {
	font-weight: 500;
	color: var(--text-primary) !important;
	position: relative;
	transition: var(--transition-smooth);
	margin: 0 0.5rem;
}

.nav-link:hover,
.nav-link.active {
	color: var(--primary-color) !important;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%) scaleX(0);
	width: 30px;
	height: 2px;
	background: var(--primary-color);
	transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
	transform: translateX(-50%) scaleX(1);
}

/* Hero Section */
.hero-section {
	min-height: 100vh;
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("./slowdownlistennotice.svg") no-repeat center center/cover;
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	animation: fadeInUp 1s ease-out;
}

.hero-title {
	color: black;
	font-size: 6rem;
	font-weight: 600;
	margin-bottom: 3rem;
	padding-bottom: 2rem;
	text-shadow: -1px -1px 0 var(--background-shadow),
		1px -1px 0 var(--background-shadow),
		-1px 1px 0 var(--background-shadow),
		1px 1px 0 var(--background-shadow);
}

.hero-subtitle {
	color: var(--text-primary);
	font-size: 2rem;
	font-weight: 300;
	max-width: 600px;
}

.hero-quote {
	color: var(--text-primary);
	font-size: 1.25rem;
	font-style: italic;
	font-weight: 300;
	max-width: 600px;
}

.hero-actions {
	margin-top: 3rem;
}

.scroll-indicator {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	color: var(--primary-dark);
	font-size: 1.5rem;
	animation: bounce 2s infinite;
	z-index: 2;
}

/* Buttons */
.btn {
	font-weight: 500;
	padding: 0.75rem 2rem;
	border-radius: 50px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 0.9rem;
	transition: var(--transition-smooth);
	border: 2px solid transparent;
}

.btn-primary {
	background: var(--background-cream);
	border-color: var(--text-secondary);
	color: var(--text-secondary);
}

.btn-primary:hover {
	background: var(--primary-dark);
	border-color: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: var(--shadow-medium);
}

.btn.btn-primary:active {
	background-color: var(--background-cream);
	color: black;
	border-color: var(--primary-dark);
}

.btn-outline-light {
	border-color: var(--background-cream);
	color: var(--background-cream);
	background: var(--primary-color);
}

.btn.btn-outline-light:hover {
	background: var(--background-cream);
	color: var(--primary-color);
	transform: translateY(-2px);
	box-shadow: var(--shadow-medium);
}

.btn.btn-outline-light:active {
	background-color: var(--background-cream);
	color: black;
	border-color: var(--primary-dark);
}


/* Section Styles */
.section-padding {
	padding: var(--section-padding);
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-title {
	font-size: 3rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.section-divider {
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
	margin: 0 auto 2rem;
	border-radius: 2px;
}

.section-subtitle {
	font-size: 1.2rem;
	color: var(--text-secondary);
	max-width: 40%;
	margin: 0 auto;
	font-weight: 300;
}

/* Mission Section */
.mission-content h3 {
	color: var(--primary-color);
	margin-bottom: 2rem;
}

.mission-values {
	margin-top: 2rem;
}

.value-item {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
	padding: 1rem;
	background: var(--background-cream);
	border-radius: 10px;
	transition: var(--transition-smooth);
}

.value-item:hover {
	transform: translateX(10px);
	box-shadow: var(--shadow-light);
}

.value-item i {
	font-size: 1.5rem;
	margin-right: 1rem;
	width: 30px;
}

.value-item span {
	font-weight: 500;
	color: var(--text-primary);
}

.mission-visual {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 400px;
	position: relative;
}

.floating-element {
	font-size: 12rem;
	color: var(--primary-light);
	opacity: 0.3;
	animation: float 6s ease-in-out infinite;
}

/* Services Section */
.bg-light {
	background-color: var(--background-light) !important;
}

.bg-contact {
	background-color: var(--background-shadow) !important;
}

.service-card {
	background: var(--white);
	border-radius: 20px;
	padding: 2.5rem;
	text-align: center;
	box-shadow: var(--shadow-light);
	transition: var(--transition-smooth);
	border: 1px solid var(--border-color);
	height: 100%;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-strong);
	border-color: var(--primary-light);
}

.service-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 2rem;
	font-size: 2rem;
	color: var(--white);
}

.service-title {
	color: var(--text-primary);
	margin-bottom: 1.5rem;
	font-size: 1.5rem;
}

.service-description {
	color: var(--text-secondary);
	margin-bottom: 1rem;
	line-height: 1.5;
}

.service-features {
	text-align: left;
}

.feature-item {
	display: flex;
	align-items: center;
	margin-bottom: 0.75rem;
	color: var(--text-secondary);
}

.feature-item i {
	margin-right: 0.75rem;
	font-size: 0.9rem;
}

/* About Section */
.about-image {
	position: relative;
}

.image-placeholder {
	background: var(--background-cream);
	border-radius: 20px;
	padding: 3rem;
	box-shadow: var(--shadow-light);
}

.image-placeholder i {
	font-size: 8rem;
	color: var(--primary-light);
	opacity: 0.7;
}

.about-content h3 {
	color: var(--primary-color);
	margin-bottom: 2rem;
}

.credentials {
	background: var(--background-cream);
	padding: 2rem;
	border-radius: 15px;
	border-left: 4px solid var(--primary-color);
}

.credential-item {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
	color: var(--text-secondary);
}

.credential-item i {
	margin-right: 0.75rem;
	width: 20px;
}

.approach {
	margin-top: 2rem;
}

.approach h5 {
	color: var(--primary-color);
	margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-info h4 {
	color: var(--primary-color);
	margin-bottom: 2rem;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 2rem;
}

.contact-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	margin-right: 1rem;
	flex-shrink: 0;
}

.contact-details h6 {
	color: var(--primary-color);
	margin-bottom: 0.5rem;
	font-weight: 600;
}

.contact-details p {
	color: var(--text-secondary);
	margin-bottom: 0;
}

.contact-form {
	background: var(--white);
	padding: 2.5rem;
	border-radius: 20px;
	box-shadow: var(--shadow-light);
	border: 1px solid var(--border-color);
}

.contact-form h4 {
	color: var(--primary-color);
	margin-bottom: 2rem;
}

.form-label {
	color: var(--text-primary);
	font-weight: 500;
	margin-bottom: 0.5rem;
}

.form-control {
	border: 2px solid var(--border-color);
	border-radius: 10px;
	padding: 0.75rem 1rem;
	font-size: 1rem;
	transition: var(--transition-smooth);
	background: var(--white);
}

.form-control:focus {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 0.2rem rgba(123, 104, 166, 0.15);
	outline: none;
}

/* Footer */
.footer {
	background: var(--primary-dark);
	color: var(--white);
	padding: 3rem 0;
	text-align: center;
}

.footer-logo i {
	font-size: 3rem;
	color: var(--accent-color);
}

.footer-logo h5 {
	color: var(--white);
	font-family: var(--font-heading);
	margin-top: 1rem;
}

.footer-text {
	color: rgba(255, 255, 255, 0.8);
	font-style: italic;
	margin-bottom: 2rem;
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

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

@keyframes bounce {

	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateX(-50%) translateY(0);
	}

	40% {
		transform: translateX(-50%) translateY(-10px);
	}

	60% {
		transform: translateX(-50%) translateY(-5px);
	}
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}

	33% {
		transform: translateY(-20px) rotate(5deg);
	}

	66% {
		transform: translateY(-10px) rotate(-5deg);
	}
}

.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease-out;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
	.hero-title {
		font-size: 5.5rem;
	}

	.section-title {
		font-size: 2.5rem;
	}

	.section-padding {
		padding: 4rem 0;
	}

	.service-card {
		margin-bottom: 2rem;
	}
}

@media (max-width: 768px) {
	.hero-title {
		font-size: 5rem;
	}

	.hero-subtitle {
		font-size: 1.5rem;
	}

	.section-title {
		font-size: 2rem;
	}

	h1 {
		font-size: 2.5rem;
	}

	h2 {
		font-size: 2rem;
	}

	h3 {
		font-size: 1.75rem;
	}

	.navbar-brand {
		font-size: 1.25rem;
	}

	.service-card {
		padding: 2rem;
	}

	.contact-form {
		padding: 2rem;
	}

	.floating-element {
		font-size: 8rem;
	}
}

@media (max-width: 576px) {
	.hero-title {
		font-size: 4.5rem;
	}

	.section-padding {
		padding: 3rem 0;
	}

	.btn {
		padding: 0.65rem 1.5rem;
		font-size: 0.85rem;
	}

	.hero-actions .btn {
		display: block;
		margin: 0.5rem 0;
	}

	.service-card {
		padding: 1.5rem;
	}

	.contact-form {
		padding: 1.5rem;
	}
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	.scroll-indicator {
		animation: none;
	}

	.floating-element {
		animation: none;
	}
}

/* Focus styles for accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
	outline: 2px solid var(--primary-color);
	outline-offset: 2px;
}

/* Print styles */
@media print {

	.navbar,
	.scroll-indicator,
	.hero-actions {
		display: none;
	}

	.hero-section {
		min-height: auto;
		padding: 2rem 0;
	}

	* {
		background: white !important;
		color: black !important;
		box-shadow: none !important;
	}
}