/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	/* Color System */
	--background: hsl(48, 20%, 98%);
	--foreground: hsl(140, 25%, 15%);
	--nature-green: hsl(142, 76%, 36%);
	--warm-earth: hsl(32, 85%, 65%);
	--soft-grass: hsl(120, 60%, 85%);
	--natural-brown: hsl(25, 45%, 40%);
	--card-bg: hsl(48, 30%, 96%);
	--muted: hsl(48, 15%, 92%);
	--muted-foreground: hsl(140, 15%, 45%);

	/* Fonts */
	--font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		"Helvetica Neue", Arial, sans-serif;

	/* Spacing */
	--container-max-width: 1200px;
	--section-padding: 5rem 0;
	--border-radius: 0.5rem;

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

body {
	font-family: var(--font-family);
	line-height: 1.6;
	color: var(--foreground);
	background-color: var(--background);
	overflow-x: hidden;
}

.container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 1rem;
}

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background: hsla(48, 20%, 98%, 0.8);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid hsla(142, 76%, 36%, 0.2);
	z-index: 1000;
	transition: var(--transition-smooth);
}

.nav-container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 1rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 4rem;
}

.nav-logo {
	font-size: 1.25rem;
	font-weight: bold;
	color: var(--nature-green);
}

.nav-menu {
	display: flex;
	gap: 2rem;
	z-index: 999; /* Ensure nav is on top */
}

.nav-link {
	pointer-events: auto;
	color: var(--foreground);
	text-decoration: none;
	padding: 0.5rem 0.75rem;
	font-weight: 500;
	transition: var(--transition-smooth);
	border-radius: var(--border-radius);
}

.nav-link:hover {
	color: var(--nature-green);
	background-color: hsla(142, 76%, 36%, 0.1);
}

.nav-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: var(--foreground);
	padding: 0.5rem;
}

.nav-toggle-icon {
	display: block;
	width: 24px;
	height: 2px;
	background-color: var(--foreground);
	position: relative;
	transition: var(--transition-smooth);
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
	content: "";
	position: absolute;
	width: 24px;
	height: 2px;
	background-color: var(--foreground);
	transition: var(--transition-smooth);
}

.nav-toggle-icon::before {
	top: -6px;
}

.nav-toggle-icon::after {
	bottom: -6px;
}

.nav-toggle.active .nav-toggle-icon {
	background-color: transparent;
}

.nav-toggle.active .nav-toggle-icon::before {
	transform: rotate(45deg);
	top: 0;
}

.nav-toggle.active .nav-toggle-icon::after {
	transform: rotate(-45deg);
	bottom: 0;
}

/* Mobile Navigation */
@media (max-width: 768px) {
	.nav-toggle {
		display: block;
	}

	.nav-menu {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: var(--background);
		border-top: 1px solid hsla(142, 76%, 36%, 0.2);
		flex-direction: column;
		padding: 1rem;
		transform: translateY(-100%);
		opacity: 0;
		visibility: hidden;
		transition: var(--transition-smooth);
	}

	.nav-menu.active {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}

	.nav-link {
		display: block;
		padding: 0.75rem;
		text-align: left;
		pointer-events: auto;
	}
}

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

.hero-background {
	position: absolute;
	inset: 0;
	background-image: url("/hero-dog-park.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to right,
		hsla(48, 20%, 98%, 0.8),
		hsla(48, 20%, 98%, 0.6),
		transparent
	);
}

.hero-content {
	position: relative;
	z-index: 10;
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 1rem;
	text-align: center;
}

.hero-text {
	max-width: 60%;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-radius: 1rem;
	padding: 3rem 2.5rem;
	box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: bold;
	color: var(--foreground);
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.hero-title-accent {
	display: block;
	color: var(--nature-green);
}

.hero-subtitle {
	font-size: clamp(1.5rem, 4vw, 2rem);
	color: var(--foreground);
	margin-bottom: 1rem;
	font-weight: 600;
}

.hero-description {
	font-size: 1.125rem;
	color: var(--muted-foreground);
	margin-bottom: 2rem;
	max-width: 100%;
	line-height: 1.7;
}

.hero-buttons {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	justify-content: center;
	align-items: center;
}

@media (min-width: 640px) {
	.hero-buttons {
		flex-direction: row;
	}

	.hero-content {
		text-align: left;
	}

	.hero-text {
		max-width: 60%;
	}

	.hero-description {
		margin-left: 0;
		margin-right: 0;
	}

	.hero-buttons {
		justify-content: flex-start;
	}
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 2rem;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	border: 2px solid transparent;
	border-radius: var(--border-radius);
	cursor: pointer;
	transition: var(--transition-smooth);
	font-family: inherit;
}

.btn-hero {
	background-color: var(--nature-green);
	color: white;
	font-size: 1.125rem;
	padding: 1rem 2rem;
	border-color: var(--nature-green);
}

.btn-hero:hover {
	background-color: transparent;
	color: var(--nature-green);
	border-color: var(--nature-green);
}

.btn-warm {
	background-color: var(--warm-earth);
	color: white;
	border-color: var(--warm-earth);
}

.btn-warm:hover {
	background-color: transparent;
	color: var(--warm-earth);
	border-color: var(--warm-earth);
}

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

.section-title {
	font-size: clamp(2rem, 4vw, 2.5rem);
	font-weight: bold;
	color: var(--foreground);
	margin-bottom: 1rem;
}

.section-description {
	font-size: 1.125rem;
	color: var(--muted-foreground);
	max-width: 40rem;
	margin: 0 auto;
}

/* Features Section */
.features {
	padding: var(--section-padding);
	background: linear-gradient(
		to bottom,
		var(--background),
		hsla(120, 60%, 85%, 0.2)
	);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-bottom: 4rem;
}

.feature-card {
	background: linear-gradient(
		to bottom right,
		var(--card-bg),
		hsla(120, 60%, 85%, 0.1)
	);
	border: 1px solid hsla(142, 76%, 36%, 0.2);
	border-radius: var(--border-radius);
	padding: 1.5rem;
	transition: var(--transition-smooth);
	display: flex;
	gap: 1rem;
}

.feature-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 30px -10px hsla(142, 76%, 36%, 0.2);
}

.feature-icon {
	font-size: 2rem;
	flex-shrink: 0;
}

.feature-title {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--foreground);
	margin-bottom: 0.5rem;
}

.feature-description {
	color: var(--muted-foreground);
}

.future-plans {
	background: hsla(32, 85%, 65%, 0.2);
	border-radius: var(--border-radius);
	padding: 2rem;
	max-width: 48rem;
	margin: 0 auto;
	text-align: center;
}

.future-title {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--foreground);
	margin-bottom: 1rem;
}

.future-description {
	color: var(--muted-foreground);
	margin-bottom: 1rem;
}

.future-list {
	text-align: left;
	list-style: disc;
	list-style-position: inside;
	color: var(--muted-foreground);
	max-width: 32rem;
	margin: 0 auto;
}

.future-list li {
	margin-bottom: 0.5rem;
}

/* Pricing Section */
.pricing {
	padding: var(--section-padding);
	background: var(--background);
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	max-width: 64rem;
	margin: 0 auto 4rem;
}

.pricing-card {
	background: linear-gradient(
		to bottom right,
		var(--card-bg),
		hsla(32, 85%, 65%, 0.05)
	);
	border: 1px solid hsla(32, 85%, 65%, 0.2);
	border-radius: var(--border-radius);
	padding: 2rem;
	transition: var(--transition-smooth);
	position: relative;
}

.pricing-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 25px -8px hsla(32, 85%, 65%, 0.3);
}

.pricing-card-popular {
	border: 2px solid var(--nature-green);
	background: linear-gradient(
		to bottom right,
		var(--card-bg),
		hsla(142, 76%, 36%, 0.05)
	);
	box-shadow: 0 10px 30px -10px hsla(142, 76%, 36%, 0.2);
}

.pricing-badge {
	position: absolute;
	top: -0.75rem;
	left: 50%;
	transform: translateX(-50%);
	background: var(--nature-green);
	color: white;
	padding: 0.25rem 1rem;
	border-radius: 9999px;
	font-size: 0.875rem;
	font-weight: 500;
}

.pricing-header {
	text-align: center;
	margin-bottom: 1.5rem;
}

.pricing-duration {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.duration-icon {
	font-size: 1.5rem;
}

.duration-title {
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--foreground);
}

.pricing-price {
	margin-bottom: 1rem;
}

.price-amount {
	font-size: 2.5rem;
	font-weight: bold;
	color: var(--nature-green);
}

.price-period {
	color: var(--muted-foreground);
	margin-left: 0.5rem;
}

.pricing-description {
	color: var(--muted-foreground);
}

.pricing-features {
	list-style: none;
	margin-bottom: 2rem;
}

.pricing-features li {
	margin-bottom: 0.75rem;
	color: var(--foreground);
}

.pricing-btn {
	width: 100%;
	font-size: 1.125rem;
}

.booking-info {
	background: hsla(48, 15%, 92%, 0.5);
	border-radius: var(--border-radius);
	padding: 2rem;
	max-width: 48rem;
	margin: 0 auto;
	text-align: center;
}

.booking-title {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--foreground);
	margin-bottom: 1.5rem;
}

.booking-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
	text-align: left;
}

.booking-subtitle {
	font-weight: 500;
	color: var(--foreground);
	margin-bottom: 0.5rem;
}

.booking-text {
	color: var(--muted-foreground);
	font-size: 0.875rem;
}

/* Contact Section */
.contact {
	padding: var(--section-padding);
	background: linear-gradient(
		to bottom,
		var(--background),
		hsla(120, 60%, 85%, 0.2)
	);
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 3rem;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.contact-card {
	background: linear-gradient(
		to bottom right,
		var(--card-bg),
		hsla(142, 76%, 36%, 0.05)
	);
	border: 1px solid hsla(142, 76%, 36%, 0.2);
	border-radius: var(--border-radius);
	padding: 1.5rem;
	display: flex;
	gap: 1rem;
}

.contact-icon {
	font-size: 1.5rem;
	flex-shrink: 0;
	margin-top: 0.25rem;
}

.contact-title {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--foreground);
	margin-bottom: 0.5rem;
}

.contact-text {
	color: var(--muted-foreground);
}

.location-card {
	background: linear-gradient(
		to bottom right,
		var(--card-bg),
		hsla(120, 60%, 85%, 0.1)
	);
	border: 1px solid hsla(142, 76%, 36%, 0.2);
	border-radius: var(--border-radius);
	padding: 2rem;
	height: 100%;
}

.location-title {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--foreground);
	margin-bottom: 1.5rem;
}

.location-sections {
	margin-bottom: 2rem;
}

.location-section {
	margin-bottom: 1.5rem;
}

.location-subtitle {
	font-weight: 500;
	color: var(--foreground);
	margin-bottom: 0.5rem;
}

.location-text {
	color: var(--muted-foreground);
	font-size: 0.875rem;
}

.location-tip {
	padding: 1rem;
	background: hsla(32, 85%, 65%, 0.2);
	border-radius: var(--border-radius);
}

.location-tip p {
	font-size: 0.875rem;
	color: var(--foreground);
}

/* Footer */
.footer {
	background: var(--nature-green);
	color: white;
	padding: 3rem 0 1rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-title {
	font-size: 1.25rem;
	font-weight: bold;
	margin-bottom: 1rem;
}

.footer-subtitle {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.footer-text {
	color: hsla(0, 0%, 100%, 0.8);
	margin-bottom: 1rem;
}

.footer-small {
	font-size: 0.875rem;
	color: hsla(0, 0%, 100%, 0.7);
}

.footer-contact,
.footer-service {
	color: hsla(0, 0%, 100%, 0.8);
}

.footer-contact p,
.footer-service p {
	margin-bottom: 0.5rem;
}

.footer-hours {
	margin-top: 1rem !important;
	font-size: 0.875rem;
}

.footer-bottom {
	border-top: 1px solid hsla(0, 0%, 100%, 0.2);
	padding-top: 2rem;
	text-align: center;
}

.footer-copyright {
	color: hsla(0, 0%, 100%, 0.7);
	font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
	:root {
		--section-padding: 3rem 0;
	}

	.hero-text {
		max-width: 100%;
		padding: 2rem 1.5rem;
	}

	.hero-content {
		text-align: center;
	}

	.hero-description {
		margin-left: auto;
		margin-right: auto;
	}

	.hero-buttons {
		justify-content: center;
	}

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

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

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

	.footer-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

/* Smooth Scrolling */
html {
	scroll-behavior: smooth;
}

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

	html {
		scroll-behavior: auto;
	}
}

/* Thank You Page */
.thank-you-section {
	padding: 8rem 0 6rem 0;
	background: linear-gradient(
		135deg,
		var(--soft-grass) 0%,
		var(--background) 100%
	);
	min-height: 80vh;
	display: flex;
	align-items: center;
}

.thank-you-content {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.thank-you-icon {
	font-size: 4rem;
	margin-bottom: 2rem;
	display: block;
}

.thank-you-title {
	font-size: 3rem;
	font-weight: 700;
	color: var(--nature-green);
	margin-bottom: 2rem;
	line-height: 1.2;
}

.thank-you-message {
	margin-bottom: 3rem;
}

.thank-you-text {
	font-size: 1.25rem;
	color: var(--muted-foreground);
	margin-bottom: 3rem;
	line-height: 1.7;
}

.confirmation-info {
	display: grid;
	gap: 2rem;
	margin-bottom: 2rem;
}

.info-card {
	background: white;
	padding: 2rem;
	border-radius: var(--border-radius);
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	text-align: left;
	transition: var(--transition-smooth);
}

.info-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.info-icon {
	font-size: 2rem;
	flex-shrink: 0;
	margin-top: 0.25rem;
}

.info-content h3 {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--nature-green);
	margin-bottom: 0.5rem;
}

.info-content p {
	color: var(--muted-foreground);
	line-height: 1.6;
}

.thank-you-actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* Image Showcase Section */
.image-showcase {
	padding: var(--section-padding);
	background-color: var(--background);
	text-align: center;
}

.showcase-img {
	width: 100%;
	max-width: 1000px;
	height: auto;
	border-radius: var(--border-radius);
	box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
	display: block;
	margin: 0 auto;
	transition: var(--transition-smooth);
}

.showcase-img:hover {
	transform: translateY(-5px);
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
}

/* Mobile responsive */
@media (max-width: 768px) {
	.thank-you-section {
		padding: 6rem 0 4rem 0;
	}

	.thank-you-title {
		font-size: 2rem;
	}

	.thank-you-text {
		font-size: 1.1rem;
	}

	.info-card {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}

	.thank-you-actions {
		flex-direction: column;
		align-items: center;
	}

	.thank-you-actions .btn {
		width: 100%;
		max-width: 300px;
	}
}
