nonprofittest / donate.html
ICExrp's picture
make all the pages be able to loop back to the Home page and build out the Home page - Initial Deployment
149e452 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Donate - PurrHope</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
</head>
<body class="bg-gradient-to-br from-blue-50 to-purple-50">
<!-- Navigation -->
<nav class="fixed w-full bg-white/95 backdrop-blur-sm shadow-sm z-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between items-center h-16">
<div class="flex items-center">
<i data-feather="heart" class="h-8 w-8 text-purple-400 mr-2"></i>
<span class="text-2xl font-bold text-gray-800">PurrHope</span>
</div>
<div class="hidden md:block">
<div class="ml-10 flex items-baseline space-x-8">
<a href="index.html" class="text-purple-600 px-3 py-2 rounded-md text-sm font-medium">Home</a>
<a href="about.html" class="text-gray-700 hover:text-purple-600 px-3 py-2 rounded-md text-sm font-medium transition-colors">About</a>
<a href="cats.html" class="text-gray-700 hover:text-purple-600 px-3 py-2 rounded-md text-sm font-medium transition-colors">Our Cats</a>
<a href="donate.html" class="bg-purple-500 text-white px-4 py-2 rounded-md text-sm font-medium hover:bg-purple-600 transition-colors">Donate</a>
</div>
</div>
<button class="md:hidden" onclick="toggleMenu()">
<i data-feather="menu" class="h-6 w-6 text-gray-700"></i>
</button>
</div>
</div>
<div id="mobile-menu" class="hidden md:hidden bg-white border-t">
<div class="px-2 pt-2 pb-3 space-y-1">
<a href="index.html" class="block px-3 py-2 text-gray-700 hover:text-purple-600">Home</a>
<a href="about.html" class="block px-3 py-2 text-gray-700 hover:text-purple-600">About</a>
<a href="cats.html" class="block px-3 py-2 text-gray-700 hover:text-purple-600">Our Cats</a>
<a href="donate.html" class="block px-3 py-2 text-purple-600">Donate</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="pt-16 min-h-[60vh] flex items-center">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-20">
<div class="text-center" data-aos="fade-up">
<h1 class="text-5xl lg:text-6xl font-bold text-gray-800 mb-6">
Make a <span class="text-purple-600">Difference</span> Today
</h1>
<p class="text-xl text-gray-600 max-w-3xl mx-auto leading-relaxed">
Your donation helps us provide food, medical care, and shelter for cats in need.
Every dollar makes a difference in saving lives.
</p>
</div>
</div>
</section>
<!-- Donation Amounts -->
<section class="py-20 bg-white/50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16" data-aos="fade-up">
<h2 class="text-4xl font-bold text-gray-800 mb-4">Choose Your Impact</h2>
<p class="text-xl text-gray-600 max-w-2xl mx-auto">
Select an amount to see how your donation helps our cats
</p>
</div>
<div class="grid md:grid-cols-3 gap-8 max-w-4xl mx-auto">
<div class="bg-white rounded-2xl p-8 shadow-lg hover:shadow-xl transition-shadow cursor-pointer group" data-aos="fade-up" data-aos-delay="100">
<div class="text-center">
<div class="text-4xl font-bold text-purple-600 mb-2 group-hover:scale-110 transition-transform">$25</div>
<p class="text-gray-600 mb-4">Feeds a cat for one week</p>
<div class="bg-purple-100 rounded-lg p-4">
<i data-feather="shopping-bag" class="h-8 w-8 text-purple-600 mx-auto mb-2"></i>
<p class="text-sm text-gray-700">Food & Treats</p>
</div>
</div>
</div>
<div class="bg-white rounded-2xl p-8 shadow-lg hover:shadow-xl transition-shadow cursor-pointer group border-2 border-purple-500" data-aos="fade-up" data-aos-delay="200">
<div class="text-center">
<div class="text-4xl font-bold text-purple-600 mb-2 group-hover:scale-110 transition-transform">$50</div>
<p class="text-gray-600 mb-4">Vaccinates a cat</p>
<div class="bg-purple-100 rounded-lg p-4">
<i data-feather="shield" class="h-8 w-8 text-purple-600 mx-auto mb-2"></i>
<p class="text-sm text-gray-700">Medical Care</p>
</div>
</div>
</div>
<div class="bg-white rounded-2xl p-8 shadow-lg hover:shadow-xl transition-shadow cursor-pointer group" data-aos="fade-up" data-aos-delay="300">
<div class="text-center">
<div class="text-4xl font-bold text-purple-600 mb-2 group-hover:scale-110 transition-transform">$100</div>
<p class="text-gray-600 mb-4">Spays/neuters a cat</p>
<div class="bg-purple-100 rounded-lg p-4">
<i data-feather="heart" class="h-8 w-8 text-purple-600 mx-auto mb-2"></i>
<p class="text-sm text-gray-700">Surgery & Care</p>
</div>
</div>
</div>
</div>
<div class="text-center mt-8" data-aos="fade-up">
<div class="inline-flex items-center space-x-4 bg-white rounded-full p-2 shadow-lg">
<input type="number" placeholder="Custom amount" class="px-4 py-2 w-32 text-center outline-none">
<button class="bg-purple-500 text-white px-6 py-2 rounded-full hover:bg-purple-600 transition-colors">
Donate Now
</button>
</div>
</div>
</div>
</section>
<!-- Donation Form -->
<section class="py-20">
<div class="max-w-5xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid lg:grid-cols-2 gap-12">
<div data-aos="fade-right">
<h2 class="text-4xl font-bold text-gray-800 mb-6">Make Your Donation</h2>
<p class="text-lg text-gray-600 mb-8">
Your generous donation goes directly to helping cats in need. We're a 501(c)(3) organization, so your donation is tax-deductible.
</p>
<div class="space-y-4">
<div class="flex items-center space-x-3">
<i data-feather="check-circle" class="h-5 w-5 text-green-500"></i>
<span class="text-gray-700">100% of your donation goes to cat care</span>
</div>
<div class="flex items-center space-x-3">
<i data-feather="check-circle" class="h-5 w-5 text-green-500"></i>
<span class="text-gray-700">Monthly giving options available</span>
</div>
<div class="flex items-center space-x-3">
<i data-feather="check-circle" class="h-5 w-5 text-green-500"></i>
<span class="text-gray-700">Receive updates on how your donation helps</span>
</div>
</div>
</div>
<div class="bg-white rounded-2xl p-8 shadow-lg" data-aos="fade-left">
<form class="space-y-6">
<div>
<label class="block text-gray-700 font-medium mb-2">Donation Amount</label>
<div class="grid grid-cols-3 gap-3 mb-3">
<button type="button" class="border-2 border-gray-300 rounded-lg py-2 hover:border-purple-500 hover:text-purple-600 transition-colors">$25</button>
<button type="button" class="border-2 border-purple-500 bg-purple-500 text-white rounded-lg py-2 transition-colors">$50</button>
<button type="button" class="border-2 border-gray-300 rounded-lg py-2 hover:border-purple-500 hover:text-purple-600 transition-colors">$100</button>
</div>
<input type="number" placeholder="Custom amount" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:border-purple-500">
</div>
<div class="grid md:grid-cols-2 gap-4">
<div>
<label class="block text-gray-700 font-medium mb-2">First Name</label>
<input type="text" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:border-purple-500">
</div>
<div>
<label class="block text-gray-700 font-medium mb-2">Last Name</label>
<input type="text" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:border-purple-500">
</div>
</div>
<div>
<label class="block text-gray-700 font-medium mb-2">Email</label>
<input type="email" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:border-purple-500">
</div>
<div>
<label class="flex items-center space-x-3 cursor-pointer">
<input type="checkbox" class="w-5 h-5 text-purple-600 rounded">
<span class="text-gray-700">Make this a monthly donation</span>
</label>
</div>
<button type="submit" class="w-full bg-purple-500 text-white py-3 rounded-lg font-semibold hover:bg-purple-600 transition-colors">
Donate Now
</button>
</form>
</div>
</div>
</div>
</section>
<!-- Other Ways to Help -->
<section class="py-20 bg-white/50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16" data-aos="fade-up">
<h2 class="text-4xl font-bold text-gray-800 mb-4">Other Ways to Help</h2>
<p class="text-xl text-gray-600 max-w-2xl mx-auto">
Your support doesn't have to be financial. There are many ways to make a difference.
</p>
</div>
<div class="grid md:grid-cols-3 gap-8">
<div class="bg-white rounded-2xl p-8 shadow-lg hover:shadow-xl transition-shadow" data-aos="fade-up" data-aos-delay="100">
<div class="bg-purple-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-6">
<i data-feather="gift" class="h-8 w-8 text-purple-600"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-4 text-center">Supply Donations</h3>
<p class="text-gray-600 text-center mb-6">
Donate food, toys, bedding, and other supplies our cats need.
</p>
<a href="#" class="block text-center text-purple-600 hover:text-purple-700 font-medium">
View Wish List →
</a>
</div>
<div class="bg-white rounded-2xl p-8 shadow-lg hover:shadow-xl transition-shadow" data-aos="fade-up" data-aos-delay="200">
<div class="bg-purple-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-6">
<i data-feather="clock" class="h-8 w-8 text-purple-600"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-4 text-center">Volunteer</h3>
<p class="text-gray-600 text-center mb-6">
Give your time to help care for cats and support our mission.
</p>
<a href="volunteer.html" class="block text-center text-purple-600 hover:text-purple-700 font-medium">
Learn More →
</a>
</div>
<div class="bg-white rounded-2xl p-8 shadow-lg hover:shadow-xl transition-shadow" data-aos="fade-up" data-aos-delay="300">
<div class="bg-purple-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-6">
<i data-feather="share-2" class="h-8 w-8 text-purple-600"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-4 text-center">Spread the Word</h3>
<p class="text-gray-600 text-center mb-6">
Share our mission with friends and family on social media.
</p>
<div class="flex justify-center space-x-4">
<a href="#" class="text-purple-600 hover:text-purple-700">
<i data-feather="facebook" class="h-6 w-6"></i>
</a>
<a href="#" class="text-purple-600 hover:text-purple-700">
<i data-feather="twitter" class="h-6 w-6"></i>
</a>
<a href="#" class="text-purple-600 hover:text-purple-700">
<i data-feather="instagram" class="h-6 w-6"></i>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Thank You Message -->
<section class="py-20 bg-gradient-to-r from-purple-100 to-pink-100">
<div class="max-w-4xl mx-auto text-center px-4 sm:px-6 lg:px-8" data-aos="fade-up">
<h2 class="text-4xl font-bold text-gray-800 mb-6">Thank You for Your Support!</h2>
<p class="text-xl text-gray-600 mb-8">
Your generosity helps us save lives and find loving homes for cats in need.
Every donation, no matter the size, makes a real difference.
</p>
<div class="bg-white rounded-2xl p-8 inline-block shadow-lg">
<p class="text-lg text-gray-700 italic">
"We couldn't do this work without supporters like you.
Thank you for being a hero for cats!"
</p>
<p class="text-purple-600 font-semibold mt-4">- The PurrHope Team</p>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-800 text-white py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid md:grid-cols-4 gap-8">
<div>
<div class="flex items-center mb-4">
<i data-feather="heart" class="h-8 w-8 text-purple-400 mr-2"></i>
<span class="text-2xl font-bold">PurrHope</span>
</div>
<p class="text-gray-400">
Giving every cat a chance at a loving home.
</p>
</div>
<div>
<h4 class="font-bold mb-4">Quick Links</h4>
<ul class="space-y-2 text-gray-400">
<li><a href="index.html" class="hover:text-white transition-colors">Home</a></li>
<li><a href="about.html" class="hover:text-white transition-colors">About Us</a></li>
<li><a href="cats.html" class="hover:text-white transition-colors">Our Cats</a></li>
<li><a href="donate.html" class="text-white">Donate</a></li>
</ul>
</div>
<div>
<h4 class="font-bold mb-4">Contact</h4>
<ul class="space-y-2 text-gray-400">
<li>123 Cat Street</li>
<li>Meow City, MC 12345</li>
<li>(555) 123-MEOW</li>
<li>info@purrhope.org</li>
</ul>
</div>
<div>
<h4 class="font-bold mb-4">Follow Us</h4>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white transition-colors">
<i data-feather="facebook" class="h-6 w-6"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition-colors">
<i data-feather="twitter" class="h-6 w-6"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition-colors">
<i data-feather="instagram" class="h-6 w-6"></i>
</a>
</div>
</div>
</div>
<div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-400">
<p>&copy; 2024 PurrHope. All rights reserved.</p>
</div>
</div>
</footer>
<script>
function toggleMenu() {
const menu = document.getElementById('mobile-menu');
menu.classList.toggle('hidden');
}
// Initialize AOS
AOS.init({
duration: 800,
once: true
});
// Initialize Feather Icons
feather.replace();
// Amount button functionality
const amountButtons = document.querySelectorAll('button:contains("$")');
amountButtons.forEach(button => {
button.addEventListener('click', function() {
amountButtons.forEach(btn => {
btn.classList.remove('bg-purple-500', 'text-white', 'border-purple-500');
btn.classList.add('border-gray-300');
});
this.classList.add('bg-purple-500', 'text-white', 'border-purple-500');
this.classList.remove('border-gray-300');
});
});
</script>
</body>
</html>