<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

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

    <title>Scribble Haus Designs - Wall Art with Big Personality</title>

    <style>

        * {

            margin: 0;

            padding: 0;

            box-sizing: border-box;

        }


        body {

            font-family: 'Georgia', serif;

            color: #2d5f5d;

            background-color: #f5f3ed;

            line-height: 1.6;

        }


        header {

            background-color: #e8e4d9;

            padding: 2rem 1rem;

            text-align: center;

            border-bottom: 3px solid #2d5f5d;

        }


        .logo {

            max-width: 200px;

            margin: 0 auto 1rem;

        }


        .tagline {

            font-size: 1.3rem;

            font-style: italic;

            color: #5a9a96;

            margin-top: 0.5rem;

        }


        nav {

            background-color: #2d5f5d;

            padding: 1rem;

            text-align: center;

        }


        nav a {

            color: #f5f3ed;

            text-decoration: none;

            margin: 0 1.5rem;

            font-size: 1.1rem;

            transition: color 0.3s;

        }


        nav a:hover {

            color: #5a9a96;

        }


        .hero {

            text-align: center;

            padding: 4rem 2rem;

            background: linear-gradient(135deg, #e8e4d9 0%, #d4cdb8 100%);

        }


        .hero h1 {

            font-size: 2.5rem;

            margin-bottom: 1rem;

            color: #2d5f5d;

        }


        .hero p {

            font-size: 1.2rem;

            margin-bottom: 2rem;

            color: #5a9a96;

        }


        .cta-button {

            display: inline-block;

            background-color: #5a9a96;

            color: white;

            padding: 1rem 2.5rem;

            text-decoration: none;

            border-radius: 50px;

            font-size: 1.2rem;

            transition: background-color 0.3s, transform 0.2s;

            border: none;

            cursor: pointer;

        }


        .cta-button:hover {

            background-color: #2d5f5d;

            transform: translateY(-2px);

        }


        .container {

            max-width: 1200px;

            margin: 0 auto;

            padding: 3rem 2rem;

        }


        .section-title {

            text-align: center;

            font-size: 2.2rem;

            margin-bottom: 3rem;

            color: #2d5f5d;

        }


        .gallery {

            display: grid;

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

            gap: 2rem;

            margin-bottom: 3rem;

        }


        .art-piece {

            background: white;

            border-radius: 8px;

            overflow: hidden;

            box-shadow: 0 4px 6px rgba(0,0,0,0.1);

            transition: transform 0.3s, box-shadow 0.3s;

        }


        .art-piece:hover {

            transform: translateY(-5px);

            box-shadow: 0 8px 12px rgba(0,0,0,0.15);

        }


        .art-image {

            width: 100%;

            height: 300px;

            background-color: #e8e4d9;

            display: flex;

            align-items: center;

            justify-content: center;

            font-style: italic;

            color: #5a9a96;

        }


        .art-info {

            padding: 1.5rem;

        }


        .art-title {

            font-size: 1.3rem;

            margin-bottom: 0.5rem;

            color: #2d5f5d;

        }


        .art-description {

            font-size: 0.95rem;

            color: #666;

            margin-bottom: 1rem;

        }


        .shop-button {

            display: inline-block;

            background-color: #2d5f5d;

            color: white;

            padding: 0.7rem 1.5rem;

            text-decoration: none;

            border-radius: 25px;

            font-size: 1rem;

            transition: background-color 0.3s;

        }


        .shop-button:hover {

            background-color: #5a9a96;

        }


        .about {

            background-color: white;

            padding: 4rem 2rem;

            text-align: center;

        }


        .about-content {

            max-width: 700px;

            margin: 0 auto;

        }


        .about p {

            font-size: 1.1rem;

            margin-bottom: 1.5rem;

            color: #555;

        }


        footer {

            background-color: #2d5f5d;

            color: #f5f3ed;

            text-align: center;

            padding: 2rem;

        }


        .footer-links {

            margin-top: 1rem;

        }


        .footer-links a {

            color: #5a9a96;

            text-decoration: none;

            margin: 0 1rem;

        }


        .footer-links a:hover {

            color: #f5f3ed;

        }


        @media (max-width: 768px) {

            .hero h1 {

                font-size: 2rem;

            }


            nav a {

                display: block;

                margin: 0.5rem 0;

            }


            .gallery {

                grid-template-columns: 1fr;

            }

        }

    </style>

</head>

<body>

    <header>

        <img src="images/Scribble Haus Designs Logo.png" alt="Scribble Haus Designs Logo" class="logo">

        <div class="tagline">little doodles. big personality.</div>

    </header>


    <nav>

        <a href="#home">Home</a>

        <a href="#gallery">Gallery</a>

        <a href="#about">About</a>

        <a href="#contact">Contact</a>

    </nav>


    <section class="hero" id="home">

        <h1>Welcome to Scribble Haus Designs</h1>

        <p>Unique wall art that brings charm and character to your space</p>

        <a href="#gallery" class="cta-button">View Collection</a>

    </section>


    <div class="container" id="gallery">

        <h2 class="section-title">Featured Designs</h2>

        <div class="gallery">

            <div class="art-piece">

                <div class="art-image">Your Design Image</div>

                <div class="art-info">

                    <h3 class="art-title">Coastal Cottage</h3>

                    <p class="art-description">A charming beach house illustration perfect for bringing coastal vibes to any room.</p>

                    <a href="YOUR_ETSY_LISTING_URL" class="shop-button" target="_blank">Shop on Etsy</a>

                </div>

            </div>


            <div class="art-piece">

                <div class="art-image">Your Design Image</div>

                <div class="art-info">

                    <h3 class="art-title">Minimalist Line Art</h3>

                    <p class="art-description">Simple yet striking line drawings that add personality without overwhelming your space.</p>

                    <a href="YOUR_ETSY_LISTING_URL" class="shop-button" target="_blank">Shop on Etsy</a>

                </div>

            </div>


            <div class="art-piece">

                <div class="art-image">Your Design Image</div>

                <div class="art-info">

                    <h3 class="art-title">Botanical Sketch</h3>

                    <p class="art-description">Hand-drawn botanical illustrations that bring nature indoors.</p>

                    <a href="YOUR_ETSY_LISTING_URL" class="shop-button" target="_blank">Shop on Etsy</a>

                </div>

            </div>


            <div class="art-piece">

                <div class="art-image">Your Design Image</div>

                <div class="art-info">

                    <h3 class="art-title">Abstract Doodles</h3>

                    <p class="art-description">Playful abstract designs with big personality and unique character.</p>

                    <a href="YOUR_ETSY_LISTING_URL" class="shop-button" target="_blank">Shop on Etsy</a>

                </div>

            </div>


            <div class="art-piece">

                <div class="art-image">Your Design Image</div>

                <div class="art-info">

                    <h3 class="art-title">Vintage Inspired</h3>

                    <p class="art-description">Nostalgic designs with a modern twist for timeless appeal.</p>

                    <a href="YOUR_ETSY_LISTING_URL" class="shop-button" target="_blank">Shop on Etsy</a>

                </div>

            </div>


            <div class="art-piece">

                <div class="art-image">Your Design Image</div>

                <div class="art-info">

                    <h3 class="art-title">Modern Typography</h3>

                    <p class="art-description">Bold text-based art that makes a statement on any wall.</p>

                    <a href="YOUR_ETSY_LISTING_URL" class="shop-button" target="_blank">Shop on Etsy</a>

                </div>

            </div>

        </div>


        <div style="text-align: center;">

            <a href="YOUR_ETSY_SHOP_URL" class="cta-button" target="_blank">Visit My Etsy Shop</a>

        </div>

    </div>


    <section class="about" id="about">

        <div class="about-content">

            <h2 class="section-title">About Scribble Haus</h2>

            <p>Welcome! I'm passionate about creating wall art that adds personality and charm to your home. Each piece starts as a little doodle that evolves into something special.</p>

            <p>My designs blend hand-drawn character with modern aesthetics, perfect for anyone looking to add a unique touch to their space. Whether you're decorating a cozy bedroom, a bright living room, or a creative workspace, there's a Scribble Haus design for you.</p>

            <p>All prints are available through my Etsy shop, where you'll find various sizes and framing options to suit your needs.</p>

        </div>

    </section>


    <section class="container" id="contact">

        <h2 class="section-title">Get In Touch</h2>

        <div style="text-align: center;">

            <p style="font-size: 1.1rem; margin-bottom: 1.5rem;">Have questions or custom requests? I'd love to hear from you!</p>

            <a href="mailto:your-email@example.com" class="cta-button">Email Me</a>

        </div>

    </section>


    <footer>

        <p>&copy; 2026 Scribble Haus Designs. All rights reserved.</p>

        <div class="footer-links">

            <a href="YOUR_ETSY_SHOP_URL" target="_blank">Etsy Shop</a>

            <a href="YOUR_PINTEREST_URL" target="_blank">Pinterest</a>

            <a href="YOUR_INSTAGRAM_URL" target="_blank">Instagram</a>

        </div>

    </footer>

</body>

</html>