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

:root {
	/* Colors - HSL values */
	--background: hsl(210, 40%, 98%);
	--foreground: hsl(220, 40%, 15%);
	--card: hsl(0, 0%, 100%);
	--card-foreground: hsl(220, 40%, 15%);
	--primary: hsl(217, 91%, 35%);
	--primary-foreground: hsl(0, 0%, 100%);
	--secondary: hsl(210, 30%, 94%);
	--secondary-foreground: hsl(220, 40%, 15%);
	--muted: hsl(210, 30%, 94%);
	--muted-foreground: hsl(220, 15%, 50%);
	--accent: hsl(14, 90%, 65%);
	--accent-foreground: hsl(0, 0%, 100%);
	--border: hsl(220, 20%, 88%);
	--input: hsl(220, 20%, 88%);

	/* Effects */
	--radius: 0.75rem;
	--shadow-soft: 0 4px 20px -2px hsla(217, 91%, 35%, 0.15);
	--shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
	--shadow-xl: 0 20px 30px -10px rgba(0, 0, 0, 0.15);
	--transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
	background-color: var(--background);
	color: var(--foreground);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

/* Navbar */
.navbar {
	position: sticky;
	top: 0;
	z-index: 50;
	width: 100%;
	border-bottom: 1px solid var(--border);
	background-color: var(--background);
	backdrop-filter: blur(10px);
}

.navbar-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 4rem;
}

.navbar-logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 700;
	font-size: 1.25rem;
	text-decoration: none;
	color: var(--foreground);
}

.navbar-logo svg {
	color: var(--primary);
}

.navbar-logo-text {
	background: linear-gradient(to right, var(--primary), var(--accent));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.navbar-links {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.navbar-link {
	text-decoration: none;
	color: var(--muted-foreground);
	transition: var(--transition-smooth);
}

.navbar-link:hover,
.navbar-link.active {
	color: var(--foreground);
}

.navbar-link.active {
	color: var(--primary);
	font-weight: 500;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
	font-weight: 500;
	border-radius: 0.375rem;
	border: none;
	cursor: pointer;
	transition: var(--transition-smooth);
	text-decoration: none;
	white-space: nowrap;
}

.btn-primary {
	background-color: var(--primary);
	color: var(--primary-foreground);
}

.btn-primary:hover {
	background-color: hsl(217, 91%, 30%);
}

.btn-hero {
	background-color: var(--accent);
	color: var(--accent-foreground);
	box-shadow: var(--shadow-lg);
}

.btn-hero:hover {
	background-color: hsl(14, 90%, 60%);
	box-shadow: var(--shadow-xl);
}

.btn-outline {
	background-color: transparent;
	border: 1px solid var(--border);
	color: var(--foreground);
}

.btn-outline:hover {
	background-color: var(--secondary);
}

.btn-secondary {
	background-color: var(--background);
	color: var(--foreground);
}

.btn-secondary:hover {
	background-color: hsl(210, 40%, 95%);
}

.btn-sm {
	padding: 0.375rem 0.75rem;
	font-size: 0.875rem;
}

.btn-lg {
	padding: 0.75rem 2rem;
	font-size: 1rem;
}

/* Hero Section */
.hero {
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, hsla(217, 91%, 35%, 0.05) 0%, var(--background) 50%, hsla(14, 90%, 65%, 0.05) 100%);
	z-index: -1;
}

.hero-content {
	padding: 5rem 0 8rem;
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
}

@media (min-width: 768px) {
	.hero-content {
		grid-template-columns: 1fr 1fr;
	}
}

.hero-text {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.hero-title {
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.2;
}

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

.hero-gradient-text {
	background: linear-gradient(to right, var(--primary), var(--accent));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero-description {
	font-size: 1.25rem;
	color: var(--muted-foreground);
}

.hero-buttons {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

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

.hero-image-wrapper {
	position: relative;
}

.hero-image-wrapper::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, hsla(217, 91%, 35%, 0.2), hsla(14, 90%, 65%, 0.2));
	border-radius: 1.5rem;
	filter: blur(3rem);
	z-index: -1;
}

.hero-image {
	position: relative;
	width: 100%;
	border-radius: 1.5rem;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Sections */
section {
	padding: 4rem 0;
}

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

.section-title {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

@media (min-width: 768px) {
	.section-title {
		font-size: 2.5rem;
	}
}

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

/* Cards */
.card-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.card-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.card-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.card {
	background-color: var(--card);
	border: 2px solid var(--border);
	border-radius: var(--radius);
	padding: 1.5rem;
	transition: var(--transition-smooth);
}

.card:hover {
	border-color: hsl(217, 91%, 35%, 0.5);
	box-shadow: var(--shadow-lg);
}

.card-image {
	width: 100%;
	height: 10rem;
	object-fit: cover;
	border-radius: calc(var(--radius) - 0.25rem);
	margin-bottom: 1rem;
}

.card-header {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
}

.card-icon {
	color: var(--primary);
}

.card-title {
	font-size: 1.25rem;
	font-weight: 600;
}

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

/* Mission Section */
.mission-section {
	background: linear-gradient(to bottom, var(--background), var(--secondary));
}

.mission-content {
	max-width: 48rem;
	margin: 0 auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.mission-icon {
	color: var(--accent);
	margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
	background: linear-gradient(to right, var(--primary), hsl(217, 91%, 35%, 0.8));
	color: var(--primary-foreground);
}

.cta-content {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
}

.cta-title {
	font-size: 2rem;
	font-weight: 700;
}

@media (min-width: 768px) {
	.cta-title {
		font-size: 2.5rem;
	}
}

.cta-description {
	font-size: 1.25rem;
	opacity: 0.9;
	max-width: 42rem;
}

/* Footer */
footer {
	border-top: 1px solid var(--border);
	background-color: var(--secondary);
	margin-top: 5rem;
}

.footer-content {
	padding: 3rem 0;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 768px) {
	.footer-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1rem;
	font-weight: 700;
	font-size: 1.125rem;
}

.footer-logo svg {
	color: var(--primary);
}

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

.footer-section h3 {
	font-weight: 600;
	margin-bottom: 1rem;
}

.footer-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.footer-link {
	font-size: 0.875rem;
	color: var(--muted-foreground);
	text-decoration: none;
	transition: var(--transition-smooth);
}

.footer-link:hover {
	color: var(--foreground);
}

.footer-bottom {
	border-top: 1px solid var(--border);
	padding: 2rem 0;
	text-align: center;
	font-size: 0.875rem;
	color: var(--muted-foreground);
}

/* About Page Styles */
.about-hero {
	background: linear-gradient(135deg, hsla(217, 91%, 35%, 0.05) 0%, var(--background) 50%, hsla(14, 90%, 65%, 0.05) 100%);
}

.about-hero-content {
	max-width: 48rem;
	margin: 0 auto;
	text-align: center;
	padding: 5rem 0;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.story-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
}

@media (min-width: 768px) {
	.story-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.story-image {
	width: 100%;
	border-radius: 1rem;
	box-shadow: var(--shadow-xl);
}

.story-content {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.story-content h2 {
	font-size: 1.875rem;
	font-weight: 700;
}

.story-text {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	color: var(--muted-foreground);
}

.nonprofit-section {
	background-color: var(--secondary);
}

.nonprofit-content {
	max-width: 48rem;
	margin: 0 auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
}

.nonprofit-icon {
	color: var(--primary);
}

.values-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.values-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.values-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.value-card {
	background-color: var(--card);
	border: 2px solid var(--border);
	border-radius: var(--radius);
	padding: 2rem 1.5rem;
	text-align: center;
	transition: var(--transition-smooth);
}

.value-card:hover {
	border-color: hsl(217, 91%, 35%, 0.5);
}

.value-icon-wrapper {
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	background-color: hsla(217, 91%, 35%, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
}

.value-icon {
	color: var(--primary);
}

.value-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

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

.impact-section {
	background: linear-gradient(to right, var(--primary), hsl(217, 91%, 35%, 0.8));
	color: var(--primary-foreground);
}

.impact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	text-align: center;
}

@media (min-width: 768px) {
	.impact-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.impact-number {
	font-size: 3rem;
	font-weight: 700;
}

@media (min-width: 768px) {
	.impact-number {
		font-size: 3.5rem;
	}
}

.impact-label {
	font-size: 1.125rem;
	opacity: 0.9;
}

/* Contact Page Styles */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: start;
}

@media (min-width: 1024px) {
	.contact-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.form-card {
	background-color: var(--card);
	border: 2px solid var(--border);
	border-radius: var(--radius);
	padding: 2rem;
}

.form-header {
	margin-bottom: 1.5rem;
}

.form-title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

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

.form-group {
	margin-bottom: 1.5rem;
}

.form-label {
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
	width: 100%;
	padding: 0.5rem 0.75rem;
	border: 1px solid var(--input);
	border-radius: 0.375rem;
	font-size: 0.875rem;
	font-family: inherit;
	transition: var(--transition-smooth);
	background-color: var(--background);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 2px hsla(217, 91%, 35%, 0.1);
}

.form-textarea {
	resize: vertical;
	min-height: 120px;
}

.form-note {
	font-size: 0.875rem;
	color: var(--muted-foreground);
	text-align: center;
	margin-top: 1rem;
}

.sidebar-space {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.sidebar-image {
	width: 100%;
	border-radius: 1rem;
	box-shadow: var(--shadow-lg);
	margin-bottom: 1.5rem;
}

.info-card {
	background-color: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.5rem;
}

.info-card-title {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.step-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.step {
	display: flex;
	gap: 0.75rem;
}

.step-number {
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background-color: hsla(217, 91%, 35%, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--primary);
	font-weight: 700;
}

.step-content h4 {
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.step-content p {
	font-size: 0.875rem;
	color: var(--muted-foreground);
}

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

.contact-info-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.contact-icon {
	color: var(--primary);
	flex-shrink: 0;
}

.contact-info-label {
	font-weight: 500;
}

.contact-info-value {
	font-size: 0.875rem;
	color: var(--muted-foreground);
}

/* Icons using Lucide SVG paths */
svg {
	width: 1.5rem;
	height: 1.5rem;
}

svg.icon-sm {
	width: 1.25rem;
	height: 1.25rem;
}

svg.icon-lg {
	width: 3rem;
	height: 3rem;
}

svg.icon-xl {
	width: 4rem;
	height: 4rem;
}

/* Toast Notification */
.toast {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	background-color: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1rem 1.5rem;
	box-shadow: var(--shadow-xl);
	z-index: 100;
	display: none;
}

.toast.show {
	display: block;
	animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
	from {
		transform: translateX(100%);
		opacity: 0;
	}

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

.toast-title {
	font-weight: 600;
	margin-bottom: 0.25rem;
}

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

/* Utility Classes */
.text-center {
	text-align: center;
}

.mb-4 {
	margin-bottom: 1rem;
}

.mt-8 {
	margin-top: 2rem;
}

.w-full {
	width: 100%;
}