<!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="Sathdara Clinic offers authentic Ayurveda, acupuncture, Hatha Yoga, and meditation in Ella, Sri Lanka. Specializing in holistic treatments and organic beauty products.">
    <meta name="keywords" content="Ayurveda, Acupuncture, Hatha Yoga, Meditation, Sathdara Clinic, Ella, Sri Lanka, Organic Beauty Products">
    <meta name="author" content="Sathdara Clinic">
    <title>Sathdara Clinic - Authentic Ayurveda & Holistic Wellness</title>
    <!-- Font Awesome for Icons -->
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
    <style>
        /* CSS Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f4f4f4;
        }

        /* Header */
        header {
            background-color: #1a3c34;
            color: #fff;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        header .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        header .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        header img {
            height: 50px;
        }

        header nav {
            display: flex;
            gap: 1.5rem;
        }

        header nav a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        header nav a:hover {
            color: #a8d5ba;
        }

        header .menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1506126611913-2ae36b5b4e1e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: #fff;
            text-align: center;
            padding: 5rem 1rem;
        }

        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        .hero .btn {
            background-color: #2e7d32;
            color: #fff;
            padding: 0.75rem 1.5rem;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 500;
            transition: background-color 0.3s;
        }

        .hero .btn:hover {
            background-color: #1b5e20;
        }

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

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

        h2 {
            font-size: 2rem;
            color: #1a3c34;
            text-align: center;
            margin-bottom: 2rem;
        }

        /* Grid for Treatments and Products */
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .card {
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1.5rem;
            text-align: center;
            transition: transform 0.3s;
        }

        .card:hover {
            transform: translateY(-5px);
        }

        .card h3 {
            font-size: 1.2rem;
            color: #2e7d32;
            margin-bottom: 0.5rem;
        }

        .card p {
            color: #666;
        }

        .card img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 1rem;
        }

        /* Yoga Section */
        .yoga-section .flex {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }

        .yoga-section .flex > * {
            flex: 1;
            min-width: 300px;
        }

        .yoga-section img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 8px;
        }

        .yoga-section ul {
            list-style: disc;
            padding-left: 1.5rem;
            color: #666;
            margin-bottom: 1rem;
        }

        /* Contact Section */
        .contact-section .flex {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .contact-section .flex > * {
            flex: 1;
            min-width: 300px;
        }

        .contact-section iframe {
            width: 100%;
            height: 400px;
            border: 0;
            border-radius: 8px;
        }

        .contact-section p {
            margin-bottom: 0.5rem;
            color: #666;
        }

        .contact-section a {
            color: #2e7d32;
            text-decoration: none;
        }

        .contact-section a:hover {
            text-decoration: underline;
        }

        /* Footer */
        footer {
            background-color: #1a3c34;
            color: #fff;
            text-align: center;
            padding: 2rem 1rem;
        }

        footer .socials {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 1rem;
        }

        footer .socials a {
            color: #fff;
            font-size: 1.5rem;
            transition: color 0.3s;
        }

        footer .socials a:hover {
            color: #a8d5ba;
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

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

        /* Responsive Design */
        @media (max-width: 768px) {
            header nav {
                display: none;
            }

            header .menu-toggle {
                display: block;
            }

            header .mobile-menu {
                display: none;
                background: #1a3c34;
                padding: 1rem;
            }

            header .mobile-menu.active {
                display: block;
            }

            header .mobile-menu a {
                display: block;
                padding: 0.5rem 0;
                color: #fff;
                text-decoration: none;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }
        }
    </style>
</head>
<body>
    <!-- Header -->
    <header>
        <div class="container">
            <div class="logo-container">
                <img src="https://via.placeholder.com/150x50?text=Sathdara+Clinic+Logo" alt="Sathdara Clinic Logo">
                <img src="https://via.placeholder.com/150x50?text=Beauty+Bliss+Lanka+Logo" alt="Beauty Bliss Lanka Logo">
            </div>
            <nav>
                <a href="#home">Home</a>
                <a href="#treatments">Treatments</a>
                <a href="#products">Beauty Products</a>
                <a href="#yoga">Yoga & Meditation</a>
                <a href="#contact">Contact</a>
            </nav>
            <i class="fas fa-bars menu-toggle" onclick="toggleMenu()"></i>
        </div>
        <div class="mobile-menu">
            <a href="#home">Home</a>
            <a href="#treatments">Treatments</a>
            <a href="#products">Beauty Products</a>
            <a href="#yoga">Yoga & Meditation</a>
            <a href="#contact">Contact</a>
        </div>
    </header>

    <!-- Hero Section -->
    <section id="home" class="hero">
        <div class="container">
            <h1 class="fade-in">Sathdara Clinic</h1>
            <p class="fade-in">Authentic Ayurveda, Acupuncture, Hatha Yoga, and Meditation in Ella, Sri Lanka</p>
            <a href="#contact" class="btn fade-in">Book Now</a>
        </div>
    </section>

    <!-- Treatments Section -->
    <section id="treatments">
        <div class="container">
            <h2 class="fade-in">Holistic Treatments</h2>
            <div class="grid">
                <div class="card fade-in">
                    <h3>Hormonal Imbalances</h3>
                    <p>Natural solutions for hormonal health.</p>
                </div>
                <div class="card fade-in">
                    <h3>Skin Diseases</h3>
                    <p>Herbal treatments for acne, pigmentation, and more.</p>
                </div>
                <div class="card fade-in">
                    <h3>Stress & Depression</h3>
                    <p>Holistic therapies for mental wellness.</p>
                </div>
                <div class="card fade-in">
                    <h3>Orthopedic Issues</h3>
                    <p>Relief for arthritis and joint pains.</p>
                </div>
                <div class="card fade-in">
                    <h3>Digestive Disorders</h3>
                    <p>Treat gastritis and ulcerative colitis naturally.</p>
                </div>
                <div class="card fade-in">
                    <h3>Heart & BP</h3>
                    <p>Manage blood pressure and cholesterol.</p>
                </div>
            </div>
        </div>
    </section>

    <!-- Beauty Products Section -->
    <section id="products" style="background-color: #fafafa;">
        <div class="container">
            <h2 class="fade-in">Organic Beauty Products</h2>
            <div class="grid">
                <div class="card fade-in">
                    <img src="https://via.placeholder.com/150?text=Organic+Hair+Oil" alt="Organic Hair Oil">
                    <h3>Organic Hair Oil</h3>
                    <p>Nourish and strengthen your hair.</p>
                </div>
                <div class="card fade-in">
                    <img src="https://via.placeholder.com/150?text=Body+Butter" alt="Body Butter">
                    <h3>Body Butter</h3>
                    <p>Deep hydration for soft skin.</p>
                </div>
                <div class="card fade-in">
                    <img src="https://via.placeholder.com/150?text=Night+Cream" alt="Night Cream">
                    <h3>Night Cream</h3>
                    <p>Rejuvenate your skin overnight.</p>
                </div>
                <div class="card fade-in">
                    <img src="https://via.placeholder.com/150?text=Lip+Balm" alt="Lip Balm">
                    <h3>Lip Balm</h3>
                    <p>Beeswax balm for soft lips.</p>
                </div>
            </div>
        </div>
    </section>

    <!-- Yoga & Meditation Section -->
    <section id="yoga" class="yoga-section">
        <div class="container">
            <h2 class="fade-in">Hatha Yoga & Meditation</h2>
            <div class="flex">
                <div class="fade-in">
                    <img src="https://images.unsplash.com/photo-1506126611913-2ae36b5b4e1e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80" alt="Yoga Session">
                </div>
                <div class="fade-in">
                    <h3>Our Practices</h3>
                    <ul>
                        <li>Hatha Yoga for balance</li>
                        <li>Loving Kindness Meditation</li>
                        <li>Walking Meditation</li>
                        <li>Anapanasati (Breath Awareness)</li>
                    </ul>
                    <a href="#contact" class="btn">Join a Session</a>
                </div>
            </div>
        </div>
    </section>

    <!-- Contact Section -->
    <section id="contact" class="contact-section" style="background-color: #fafafa;">
        <div class="container">
            <h2 class="fade-in">Visit Us</h2>
            <div class="flex">
                <div class="fade-in">
                    <h3>Contact Information</h3>
                    <p><i class="fas fa-map-marker-alt"></i> Uva Dikkarawa, Kithalella Road, Ella, Sri Lanka</p>
                    <p><i class="fas fa-phone"></i> <a href="tel:+94123456789">+94 123 456 789</a></p>
                    <p><i class="fas fa-envelope"></i> <a href="mailto:[email protected]">[email protected]</a></p>
                    <p><a href="https://www.google.com/maps/place/Ella,+Sri+Lanka" target="_blank">View on Google Maps</a></p>
                </div>
                <div class="fade-in">
                    <iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3960.837948869374!2d81.046853314772!3d6.866693995042!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3ae4618a1a9a0c5f%3A0x3e3d3a6e9e4b6f1!2sElla%2C%20Sri%20Lanka!5e0!3m2!1sen!2sus!4v1697051234567!5m2!1sen!2sus" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
                </div>
            </div>
        </div>
    </section>

    <!-- Footer -->
    <footer>
        <div class="container">
            <p>© 2025 Sathdara Clinic. All rights reserved.</p>
            <div class="socials">
                <a href="#"><i class="fab fa-facebook-f"></i></a>
                <a href="#"><i class="fab fa-instagram"></i></a>
                <a href="#"><i class="fab fa-twitter"></i></a>
            </div>
        </div>
    </footer>

    <script>
        // Toggle Mobile Menu
        function toggleMenu() {
            const menu = document.querySelector('.mobile-menu');
            menu.classList.toggle('active');
        }

        // Fade-in Animation on Scroll
        const fadeElements = document.querySelectorAll('.fade-in');
        const observer = new IntersectionObserver((entries) => {
            entries.forEach(entry => {
                if (entry.isIntersecting) {
                    entry.target.classList.add('visible');
                }
            });
        }, { threshold: 0.1 });

        fadeElements.forEach(element => observer.observe(element));
    </script>
</body>
</html>