<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Modern Blog</title>
    <link rel="stylesheet" href="style.css">
</head>
<body>
    <header class="header">
        <nav class="nav">
            <div class="container">
                <h1 class="logo">Modern Blog</h1>
                <ul class="nav-links">
                    <li><a href="index.php">Home</a></li>
                    <li><a href="#about">About</a></li>
                    <li><a href="#contact">Contact</a></li>
                </ul>
            </div>
        </nav>
    </header>

    <section class="hero">
        <div class="container">
            <div class="hero-content">
                <h2 class="hero-title">Welcome to Our Modern Blog</h2>
                <p class="hero-description">Discover amazing stories, insights, and ideas from our talented writers</p>
                <a href="#featured" class="hero-btn">Explore Stories</a>
            </div>
        </div>
    </section>

        <section id="featured" class="featured">
        <div class="container">
            <h2 class="section-title">Featured Posts</h2>
            <div class="featured-grid">
                                <article class="featured-card">
                                        <div class="card-image featured-image">
                        <img src="https://e7.pngegg.com/pngimages/895/199/png-clipart-spider-man-heroes-download-with-transparent-background-thumbnail.png" alt="The Surprising Benefits of Doing Nothing: Why You Should Embrace Boredom" loading="lazy">
                    </div>
                                        <div class="card-content">
                        <div class="card-meta">
                            <a href="category-test" class="category">Test</a>
                            <time class="date">Aug 19, 2025</time>
                        </div>
                        <h3 class="card-title">
                            <a href="blog-the-surprising-benefits-of-doing-nothing-why-you-should-embrace-boredom">
                                The Surprising Benefits of Doing Nothing: Why You Should Embrace Boredom                            </a>
                        </h3>
                        <p class="card-excerpt">In a world obsessed with productivity, the idea of doing nothing can feel almost sinful. We are constantly checking our phones, replying to emails, an...</p>
                        <div class="card-author">
                            <span>By Alen</span>
                        </div>
                    </div>
                </article>
                                <article class="featured-card">
                                        <div class="card-image featured-image">
                        <img src="https://png.pngtree.com/png-vector/20220629/ourmid/pngtree-lightweight-fabric-property-vector-flat-color-icon-png-image_5622800.png" alt="This is a test Post" loading="lazy">
                    </div>
                                        <div class="card-content">
                        <div class="card-meta">
                            <a href="category-abc" class="category">ABC</a>
                            <time class="date">Aug 19, 2025</time>
                        </div>
                        <h3 class="card-title">
                            <a href="blog-this-is-a-test-post">
                                This is a test Post                            </a>
                        </h3>
                        <p class="card-excerpt">1. Navigate to Your Project FolderOpen your terminal (Command Prompt, PowerShell, or terminal on macOS/Linux), and navigate to the folder where your P...</p>
                        <div class="card-author">
                            <span>By Alen</span>
                        </div>
                    </div>
                </article>
                            </div>
        </div>
    </section>
    
    <main class="main-content">
        <div class="container">
            <div class="content-wrapper">
                <section class="blog-list">
                    <h2 class="section-title">Latest Posts</h2>
                    <div class="blog-grid">
                                                <article class="blog-card">
                                                        <div class="card-image latest-image">
                                <img src="https://e7.pngegg.com/pngimages/895/199/png-clipart-spider-man-heroes-download-with-transparent-background-thumbnail.png" alt="The Surprising Benefits of Doing Nothing: Why You Should Embrace Boredom" loading="lazy">
                            </div>
                                                        <div class="card-content">
                                <div class="card-meta">
                                                                            <a href="category-test" class="category">Test</a>
                                                                        <time class="date">Aug 19, 2025</time>
                                </div>
                                <h3 class="card-title">
                                    <a href="blog-the-surprising-benefits-of-doing-nothing-why-you-should-embrace-boredom">
                                        The Surprising Benefits of Doing Nothing: Why You Should Embrace Boredom                                    </a>
                                </h3>
                                <p class="card-excerpt">In a world obsessed with productivity, the idea of doing nothing can feel almost sinful. We are constantly checking our ...</p>
                                <div class="card-author">
                                    <span>By Alen</span>
                                </div>
                            </div>
                        </article>
                                                <article class="blog-card">
                                                        <div class="card-image latest-image">
                                <img src="https://png.pngtree.com/png-vector/20220629/ourmid/pngtree-lightweight-fabric-property-vector-flat-color-icon-png-image_5622800.png" alt="This is a test Post" loading="lazy">
                            </div>
                                                        <div class="card-content">
                                <div class="card-meta">
                                                                            <a href="category-abc" class="category">ABC</a>
                                                                        <time class="date">Aug 19, 2025</time>
                                </div>
                                <h3 class="card-title">
                                    <a href="blog-this-is-a-test-post">
                                        This is a test Post                                    </a>
                                </h3>
                                <p class="card-excerpt">1. Navigate to Your Project FolderOpen your terminal (Command Prompt, PowerShell, or terminal on macOS/Linux), and navig...</p>
                                <div class="card-author">
                                    <span>By Alen</span>
                                </div>
                            </div>
                        </article>
                                            </div>

                                    </section>
                
                <aside class="sidebar">
                    <div class="sidebar-widget newsletter-widget">
                        <h3>Newsletter Signup</h3>
                        <p>Stay updated with our latest posts and insights!</p>
                        <form class="newsletter-form">
                            <input type="email" placeholder="Enter your email" required>
                            <button type="submit">Subscribe</button>
                        </form>
                    </div>
                    
                    <div class="sidebar-widget ad-widget">
                        <h3>Advertisement</h3>
                        <div class="ad-placeholder">
                            <p>Your Ad Here</p>
                            <small>300x250</small>
                        </div>
                    </div>
                </aside>
            </div>
        </div>
    </main>

    <footer class="footer">
        <div class="container">
            <p>&copy; 2024 Modern Blog. All rights reserved.</p>
        </div>
    </footer>
</body>
</html>