<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <meta name="description" content="Compassionate support and resources for pet loss grief. You're not alone in your grief.">

    <title>Fur-Ever in Our Hearts | Pet Loss Support & Resources</title>

    <style>

        * {

            margin: 0;

            padding: 0;

            box-sizing: border-box;

        }


        body {

            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;

            line-height: 1.6;

            color: #3A3A3A;

            background: linear-gradient(to bottom, #f5e8f0, #fdf5f3);

            min-height: 100vh;

        }


        /* Navigation */

        nav {

            background: white;

            box-shadow: 0 2px 10px rgba(0,0,0,0.1);

            position: sticky;

            top: 0;

            z-index: 100;

        }


        .nav-container {

            max-width: 1200px;

            margin: 0 auto;

            padding: 1rem 2rem;

            display: flex;

            justify-content: space-between;

            align-items: center;

        }


        .logo {

            font-size: 1.5rem;

            font-weight: bold;

            color: #9B8BA8;

        }


        .nav-links {

            display: flex;

            gap: 2rem;

            list-style: none;

        }


        .nav-links a {

            color: #5F5F5F;

            text-decoration: none;

            font-weight: 500;

            transition: color 0.3s;

        }


        .nav-links a:hover {

            color: #9B8BA8;

        }


        /* Hero Section */

        .hero {

            max-width: 1000px;

            margin: 0 auto;

            padding: 4rem 2rem;

            text-align: center;

        }


        .hero-image {

            max-width: 600px;

            margin: 0 auto 2rem;

            border-radius: 2rem;

            overflow: hidden;

            box-shadow: 0 20px 60px rgba(0,0,0,0.2);

            background: linear-gradient(135deg, #e8d4f0, #f5e8e6, #f5ddb8);

            padding: 4rem 2rem;

        }


        .hero-image-placeholder {

            font-size: 4rem;

            margin-bottom: 1rem;

        }


        .hero-image-text {

            color: #5F5F5F;

            font-style: italic;

            font-size: 0.9rem;

        }


        .hero h1 {

            font-size: 3rem;

            color: #9B8BA8;

            margin-bottom: 1.5rem;

            font-weight: bold;

        }


        .hero p {

            font-size: 1.25rem;

            color: #5F5F5F;

            margin-bottom: 2rem;

            line-height: 1.8;

        }


        .cta-buttons {

            display: flex;

            gap: 1rem;

            justify-content: center;

            flex-wrap: wrap;

        }


        .btn {

            padding: 1rem 2rem;

            border-radius: 2rem;

            font-size: 1rem;

            font-weight: 600;

            text-decoration: none;

            transition: all 0.3s;

            cursor: pointer;

            border: none;

        }


        .btn-primary {

            background: linear-gradient(135deg, #9B8BA8, #D4AF8F);

            color: white;

            box-shadow: 0 4px 15px rgba(155, 139, 168, 0.3);

        }


        .btn-primary:hover {

            box-shadow: 0 6px 25px rgba(155, 139, 168, 0.4);

            transform: translateY(-2px);

        }


        .btn-secondary {

            background: white;

            color: #9B8BA8;

            border: 2px solid #9B8BA8;

        }


        .btn-secondary:hover {

            background: #f5e8f0;

        }


        /* Sections */

        section {

            max-width: 1200px;

            margin: 0 auto;

            padding: 4rem 2rem;

        }


        .section-header {

            text-align: center;

            margin-bottom: 3rem;

        }


        .section-header h2 {

            font-size: 2.5rem;

            color: #9B8BA8;

            margin-bottom: 1rem;

        }


        .section-header p {

            font-size: 1.1rem;

            color: #5F5F5F;

        }


        /* Contact Form */

        .contact-card {

            background: white;

            border-radius: 2rem;

            padding: 3rem;

            box-shadow: 0 10px 40px rgba(0,0,0,0.1);

            max-width: 700px;

            margin: 0 auto;

        }


        .form-group {

            margin-bottom: 1.5rem;

        }


        label {

            display: block;

            margin-bottom: 0.5rem;

            color: #5F5F5F;

            font-weight: 500;

        }


        input, textarea {

            width: 100%;

            padding: 0.75rem;

            border: 2px solid #e0e0e0;

            border-radius: 0.5rem;

            font-size: 1rem;

            font-family: inherit;

            transition: border-color 0.3s;

        }


        input:focus, textarea:focus {

            outline: none;

            border-color: #9B8BA8;

        }


        textarea {

            resize: vertical;

            min-height: 150px;

        }


        .privacy-note {

            background: #f5e8f0;

            padding: 1rem;

            border-radius: 0.5rem;

            font-size: 0.9rem;

            color: #5F5F5F;

            margin-top: 1rem;

            text-align: center;

        }


        /* Specialist Section */

        .specialist-card {

            background: white;

            border-radius: 2rem;

            padding: 3rem;

            box-shadow: 0 10px 40px rgba(0,0,0,0.1);

            text-align: center;

        }


        .specialist-icon {

            font-size: 3rem;

            margin-bottom: 1.5rem;

        }


        .pricing-box {

            background: #f5e8f0;

            padding: 1.5rem;

            border-radius: 1rem;

            margin: 2rem 0;

        }


        .pricing-box p {

            font-size: 1.1rem;

            color: #5F5F5F;

        }


        .pricing-box .price {

            font-weight: bold;

            color: #3A3A3A;

            margin-bottom: 0.5rem;

        }


        .status-box {

            background: #fdf5f3;

            padding: 1.5rem;

            border-radius: 1rem;

            margin-top: 1.5rem;

        }


        .status-box .status-label {

            font-weight: 600;

            color: #D4AF8F;

            margin-bottom: 0.5rem;

        }


        /* Resources Grid */

        .resources-grid {

            display: grid;

            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

            gap: 2rem;

        }


        .resource-card {

            background: white;

            border-radius: 1.5rem;

            padding: 2rem;

            box-shadow: 0 5px 20px rgba(0,0,0,0.08);

            transition: all 0.3s;

        }


        .resource-card:hover {

            box-shadow: 0 10px 40px rgba(0,0,0,0.15);

            transform: translateY(-5px);

        }


        .resource-icon {

            font-size: 2.5rem;

            margin-bottom: 1rem;

        }


        .resource-card h3 {

            font-size: 1.3rem;

            color: #9B8BA8;

            margin-bottom: 1rem;

        }


        .resource-card p {

            color: #5F5F5F;

            margin-bottom: 1.5rem;

            line-height: 1.6;

        }


        .resource-buttons {

            display: flex;

            gap: 0.75rem;

        }


        .btn-small {

            flex: 1;

            padding: 0.75rem;

            border-radius: 0.75rem;

            font-size: 0.9rem;

            font-weight: 600;

            text-decoration: none;

            text-align: center;

            transition: all 0.3s;

            display: inline-flex;

            align-items: center;

            justify-content: center;

            gap: 0.5rem;

        }


        .btn-view {

            background: white;

            color: #9B8BA8;

            border: 2px solid #9B8BA8;

        }


        .btn-view:hover {

            background: #f5e8f0;

        }


        .btn-download {

            background: #D4AF8F;

            color: white;

        }


        .btn-download:hover {

            background: #c49f7f;

        }


        /* Crisis Button */

        .crisis-button {

            position: fixed;

            bottom: 2rem;

            right: 2rem;

            background: #dc2626;

            color: white;

            padding: 1rem 1.5rem;

            border-radius: 2rem;

            box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);

            cursor: pointer;

            font-weight: 600;

            display: flex;

            align-items: center;

            gap: 0.5rem;

            z-index: 99;

            transition: all 0.3s;

            border: none;

            font-size: 1rem;

        }


        .crisis-button:hover {

            background: #b91c1c;

            box-shadow: 0 6px 25px rgba(220, 38, 38, 0.5);

        }


        /* Modal */

        .modal {

            display: none;

            position: fixed;

            top: 0;

            left: 0;

            width: 100%;

            height: 100%;

            background: rgba(0, 0, 0, 0.6);

            z-index: 999;

            justify-content: center;

            align-items: center;

            padding: 1rem;

        }


        .modal.active {

            display: flex;

        }


        .modal-content {

            background: white;

            border-radius: 2rem;

            padding: 3rem;

            max-width: 500px;

            width: 100%;

            position: relative;

            box-shadow: 0 20px 60px rgba(0,0,0,0.3);

            max-height: 90vh;

            overflow-y: auto;

        }


        .modal-close {

            position: absolute;

            top: 1.5rem;

            right: 1.5rem;

            background: none;

            border: none;

            font-size: 1.5rem;

            cursor: pointer;

            color: #999;

            transition: color 0.3s;

        }


        .modal-close:hover {

            color: #333;

        }


        .modal-icon {

            font-size: 3rem;

            text-align: center;

            margin-bottom: 1rem;

        }


        .modal h3 {

            font-size: 2rem;

            text-align: center;

            color: #3A3A3A;

            margin-bottom: 1rem;

        }


        .modal p {

            text-align: center;

            color: #5F5F5F;

            margin-bottom: 2rem;

        }


        .crisis-resource {

            background: #fee2e2;

            padding: 1.5rem;

            border-radius: 1rem;

            margin-bottom: 1rem;

        }


        .crisis-resource h4 {

            color: #7f1d1d;

            margin-bottom: 0.5rem;

        }


        .crisis-resource .number {

            color: #991b1b;

            font-size: 1.3rem;

            font-weight: bold;

            margin-bottom: 0.25rem;

        }


        .crisis-resource .detail {

            color: #b91c1c;

            font-size: 0.9rem;

        }


        /* Footer */

        footer {

            background: white;

            border-top: 1px solid #e0e0e0;

            padding: 2rem;

            text-align: center;

            margin-top: 4rem;

        }


        footer p {

            color: #5F5F5F;

            margin-bottom: 0.5rem;

        }


        footer .crisis-info {

            font-size: 0.9rem;

            color: #999;

        }


        /* Responsive */

        @media (max-width: 768px) {

            .hero h1 {

                font-size: 2rem;

            }


            .hero p {

                font-size: 1rem;

            }


            .section-header h2 {

                font-size: 2rem;

            }


            .nav-links {

                gap: 1rem;

            }


            .cta-buttons {

                flex-direction: column;

            }


            .resource-buttons {

                flex-direction: column;

            }


            .crisis-button {

                bottom: 1rem;

                right: 1rem;

                padding: 0.75rem 1rem;

                font-size: 0.9rem;

            }


            .modal-content {

                padding: 2rem;

            }

        }

    </style>

</head>

<body>

    <!-- Navigation -->

    <nav>

        <div class="nav-container">

            <div class="logo">Fur-Ever Pet Loss Support</div>

            <ul class="nav-links">

                <li><a href="#contact">Reach Out</a></li>

                <li><a href="#specialist">Specialist</a></li>

                <li><a href="#resources">Resources</a></li>

            </ul>

        </div>

    </nav>


    <!-- Hero Section -->

    <section class="hero">

        <div class="hero-image">

            <div class="hero-image-placeholder">🐾</div>

            <p class="hero-image-text">Your beautiful image of pet paws being held will go here</p>

        </div>

        <h1>Fur-Ever in Our Hearts</h1>

        <p>Your pet was family. Your grief is real and valid. Whether you're facing the loss of your beloved companion or navigating life after they've gone, you're safe here. This is a sacred space for your heart.</p>

        <div class="cta-buttons">

            <a href="#contact" class="btn btn-primary">Reach Out to Us</a>

            <a href="#resources" class="btn btn-secondary">Download Resources</a>

        </div>

    </section>


    <!-- Contact Section -->

    <section id="contact">

        <div class="section-header">

            <h2>We're Here to Listen</h2>

            <p>Share what's on your heart. We'll respond with compassion and care.</p>

        </div>

        <div class="contact-card">

            <form id="contactForm">

                <div class="form-group">

                    <label for="name">Your Name</label>

                    <input type="text" id="name" name="name" required>

                </div>

                <div class="form-group">

                    <label for="email">Email Address</label>

                    <input type="email" id="email" name="email" required>

                </div>

                <div class="form-group">

                    <label for="petName">Your Pet's Name (Optional)</label>

                    <input type="text" id="petName" name="petName">

                </div>

                <div class="form-group">

                    <label for="message">What would you like to share?</label>

                    <textarea id="message" name="message" required placeholder="There's no right or wrong thing to say. Share whatever feels right..."></textarea>

                </div>

                <button type="submit" class="btn btn-primary" style="width: 100%;">Send Message</button>

                <div class="privacy-note">

                    🔒 Your message is private and will be treated with compassion and confidentiality

                </div>

            </form>

        </div>

    </section>


    <!-- Specialist Section -->

    <section id="specialist">

        <div class="specialist-card">

            <div class="specialist-icon">💜</div>

            <h2 style="color: #9B8BA8; margin-bottom: 1rem; font-size: 2rem;">Connect With a Human Specialist</h2>

            <p style="font-size: 1.1rem; color: #5F5F5F; margin-bottom: 2rem; line-height: 1.8;">

                Sometimes grief needs a human heart. Our network of pet loss grief therapists understand 

                the profound bond you shared with your pet. They provide a safe, validating space for your grief.

            </p>

            

            <div class="pricing-box">

                <p class="price">Sessions typically range from £40-£75</p>

                <p>Many therapists offer sliding scale fees based on income</p>

            </div>


            <div class="status-box">

                <p class="status-label">🌱 Coming Soon</p>

                <p style="font-size: 0.95rem; color: #5F5F5F;">

                    We're currently building our network of compassionate pet loss grief specialists. 

                    If you're a qualified therapist interested in joining, please reach out.

                </p>

            </div>

        </div>

    </section>


    <!-- Resources Section -->

    <section id="resources">

        <div class="section-header">

            <h2>Practical Resources</h2>

            <p>Beautiful, compassionate guides to help you through the practical aspects of pet loss</p>

        </div>

        <div class="resources-grid">

            <div class="resource-card">

                <div class="resource-icon">🐾</div>

                <h3>Pet Loss Decision Tree</h3>

                <p>Gentle guidance through your immediate options, helping you understand what choices are available without feeling overwhelmed.</p>

                <div class="resource-buttons">

                    <a href="#" class="btn-small btn-view">

                        <span>👁️</span> View

                    </a>

                    <a href="#" class="btn-small btn-download">

                        <span>⬇️</span> Download

                    </a>

                </div>

            </div>


            <div class="resource-card">

                <div class="resource-icon">💚</div>

                <h3>Pet Loss Costs & Timeline</h3>

                <p>Transparent information about costs and what to expect in the coming days and weeks. Removes financial anxiety during this difficult time.</p>

                <div class="resource-buttons">

                    <a href="#" class="btn-small btn-view">

                        <span>👁️</span> View

                    </a>

                    <a href="#" class="btn-small btn-download">

                        <span>⬇️</span> Download

                    </a>

                </div>

            </div>


            <div class="resource-card">

                <div class="resource-icon">🐾</div>

                <h3>Questions to Ask Services</h3>

                <p>Empower yourself to advocate for your pet's care. Know what questions to ask cremation and funeral services.</p>

                <div class="resource-buttons">

                    <a href="#" class="btn-small btn-view">

                        <span>👁️</span> View

                    </a>

                    <a href="#" class="btn-small btn-download">

                        <span>⬇️</span> Download

                    </a>

                </div>

            </div>


            <div class="resource-card">

                <div class="resource-icon">💚</div>

                <h3>End-of-Life Planning Worksheet</h3>

                <p>Plan with love, not fear. Document your wishes while your pet is still with you, so decisions come from clarity, not crisis.</p>

                <div class="resource-buttons">

                    <a href="#" class="btn-small btn-view">

                        <span>👁️</span> View

                    </a>

                    <a href="#" class="btn-small btn-download">

                        <span>⬇️</span> Download

                    </a>

                </div>

            </div>

        </div>

    </section>


    <!-- Footer -->

    <footer>

        <p>Your grief is sacred. Your love is eternal. You're not alone.</p>

        <p class="crisis-info">If you're in crisis, please call Samaritans: 116 123 (24/7)</p>

    </footer>


    <!-- Crisis Button -->

    <button class="crisis-button" onclick="openCrisisModal()">

        ⚠️ In Crisis?

    </button>


    <!-- Crisis Modal -->

    <div id="crisisModal" class="modal">

        <div class="modal-content">

            <button class="modal-close" onclick="closeCrisisModal()">✕</button>

            <div class="modal-icon">⚠️</div>

            <h3>You're Not Alone</h3>

            <p>If you're having thoughts of harming yourself, please reach out for immediate support:</p>

            

            <div class="crisis-resource">

                <h4>Samaritans (24/7)</h4>

                <p class="number">116 123</p>

                <p class="detail">Free to call from any phone</p>

            </div>


            <div class="crisis-resource">

                <h4>Crisis Text Line</h4>

                <p class="number">Text SHOUT to 85258</p>

                <p class="detail">24/7 text support</p>

            </div>


            <div class="crisis-resource">

                <h4>Emergency Services</h4>

                <p class="number">999 or 111</p>

            </div>


            <p style="margin-top: 1.5rem; font-size: 0.9rem;">Your life matters. Your grief is valid. Please reach out.</p>

        </div>

    </div>


    <script>

        // Crisis Modal

        function openCrisisModal() {

            document.getElementById('crisisModal').classList.add('active');

        }


        function closeCrisisModal() {

            document.getElementById('crisisModal').classList.remove('active');

        }


        // Close modal when clicking outside

        document.getElementById('crisisModal').addEventListener('click', function(e) {

            if (e.target === this) {

                closeCrisisModal();

            }

        });


        // Smooth scrolling

        document.querySelectorAll('a[href^="#"]').forEach(anchor => {

            anchor.addEventListener('click', function (e) {

                e.preventDefault();

                const target = document.querySelector(this.getAttribute('href'));

                if (target) {

                    target.scrollIntoView({

                        behavior: 'smooth',

                        block: 'start'

                    });

                }

            });

        });


        // Form submission

        document.getElementById('contactForm').addEventListener('submit', function(e) {

            e.preventDefault();

            

            // Get form data

            const formData = new FormData(this);

            const data = Object.fromEntries(formData);

            

            // In production, you would send this to your email service

            // For now, show a confirmation

            alert('Thank you for reaching out. Your message has been received with compassion. We will respond with care soon.');

            

            // Reset form

            this.reset();

        });

    </script>

</body>

</html>