
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>columbiacityblog.com</title>
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.0/font/bootstrap-icons.css">
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap" rel="stylesheet">
    <style>
        :root {
            --primary-color: #2c3e50;
            --secondary-color: #3498db;
            --accent-color: #e74c3c;
            --light-color: #ecf0f1;
            --dark-color: #1a252f;
        }
        body {
            font-family: 'Inter', sans-serif;
            color: #333;
            line-height: 1.6;
            padding-top: 56px;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }
        .navbar {
            background-color: var(--primary-color);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: white !important;
        }
        .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--secondary-color) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(44, 62, 80, 0.85), rgba(44, 62, 80, 0.9)), url('https://images.unsplash.com/photo-1588681664899-f142ff2dc9b1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            margin-bottom: 60px;
        }
        .hero-title {
            font-size: 3.5rem;
            margin-bottom: 20px;
        }
        .section-title {
            color: var(--primary-color);
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 30px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--secondary-color);
        }
        .news-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
            margin-bottom: 30px;
        }
        .news-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .news-card-img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        .news-card-body {
            padding: 25px;
        }
        .news-date {
            color: #7f8c8d;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }
        .news-title {
            color: var(--primary-color);
            font-size: 1.4rem;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .btn-primary {
            background-color: var(--secondary-color);
            border: none;
            padding: 10px 25px;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        .btn-primary:hover {
            background-color: #2980b9;
        }
        .about-section, .contact-section {
            padding: 80px 0;
        }
        .about-section {
            background-color: #f8f9fa;
        }
        .contact-section {
            background-color: var(--primary-color);
            color: white;
        }
        .contact-section .section-title {
            color: white;
        }
        .contact-section .section-title:after {
            background-color: var(--accent-color);
        }
        .contact-info i {
            font-size: 1.5rem;
            color: var(--secondary-color);
            margin-right: 15px;
        }
        .footer {
            background-color: var(--dark-color);
            color: rgba(255,255,255,0.7);
            padding: 40px 0;
            text-align: center;
        }
        .article-content img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 20px 0;
        }
        .article-content h3 {
            color: var(--primary-color);
            margin-top: 30px;
            margin-bottom: 15px;
        }
        .article-content p {
            margin-bottom: 20px;
        }
        .back-link {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            margin-top: 30px;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-section {
                padding: 60px 0;
            }
        }
    </style>
</head>
<body>
    <nav class="navbar navbar-expand-lg navbar-dark fixed-top">
        <div class="container">
            <a class="navbar-brand" href="/">Columbia City Blog</a>
            <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
                <span class="navbar-toggler-icon"></span>
            </button>
            <div class="collapse navbar-collapse" id="navbarNav">
                <ul class="navbar-nav ms-auto">
                    <li class="nav-item">
                        <a class="nav-link" href="/#home">Home</a>
                    </li>
                    <li class="nav-item">
                        <a class="nav-link" href="/#about">About</a>
                    </li>
                    <li class="nav-item">
                        <a class="nav-link" href="/#news">News</a>
                    </li>
                    <li class="nav-item">
                        <a class="nav-link" href="/#contact">Contact</a>
                    </li>
                </ul>
            </div>
        </div>
    </nav>

    <main class="container-fluid p-0">
                    <section id="home" class="hero-section text-center">
                <div class="container">
                    <h1 class="hero-title">Columbia City Blog</h1>
                    <p class="lead fs-4 mb-4">Your trusted source for local news, events, and stories from the heart of Columbia City</p>
                    <a href="#news" class="btn btn-primary btn-lg">Read Latest News</a>
                </div>
            </section>

            <section id="about" class="about-section">
                <div class="container">
                    <h2 class="section-title">About Columbia City Blog</h2>
                    <div class="row">
                        <div class="col-lg-8">
                            <p class="fs-5 mb-4">Welcome to the Columbia City Blog, the premier online destination for residents and visitors seeking authentic, in-depth coverage of life in our vibrant community. Founded in 2015, our blog has grown from a small neighborhood project into a comprehensive local news source trusted by thousands.</p>
                            <p>Our mission is simple: to connect, inform, and empower the people of Columbia City by providing timely, accurate, and engaging content that reflects the diverse voices and stories of our community. We believe that strong local journalism is essential for a thriving neighborhood.</p>
                            <p>What sets us apart is our hyperlocal focus. While larger news outlets cover regional and national stories, we dive deep into what matters right here in Columbia City—from city council decisions that affect your taxes to profiles of local business owners, coverage of school events, and explorations of our rich historical heritage.</p>
                            <p>Our team consists of professional journalists, community contributors, and passionate volunteers who live right here in Columbia City. We attend the same meetings, shop at the same stores, and walk the same streets as our readers. This intimate connection with our community ensures that our reporting is not only accurate but also deeply contextualized.</p>
                            <p>Beyond news, we serve as a platform for community dialogue. Our comment sections, community calendars, and guest contributor programs provide spaces for respectful discussion and civic engagement. We believe that every resident has a story worth telling and a perspective worth sharing.</p>
                            <p>As Columbia City continues to grow and evolve, we remain committed to documenting its journey—celebrating its successes, examining its challenges, and always advocating for the best interests of our community. Whether you've lived here for decades or just arrived last week, we're here to help you feel connected to this special place we call home.</p>
                        </div>
                        <div class="col-lg-4">
                            <div class="card news-card">
                                <img src="http://columbiacityblog.com/assets/images/bafcf6e314b401bb1e55c58181c661f7.jpg" class="card-img-top news-card-img" alt="Columbia City Streets">
                                <div class="card-body">
                                    <h5 class="card-title">Our Community Promise</h5>
                                    <p class="card-text">We pledge to uphold the highest journalistic standards while maintaining deep roots in the community we serve.</p>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </section>

            <section id="news" class="container py-5">
                <h2 class="section-title">Latest Community News</h2>
                                    <div class="row">
                                                    <div class="col-md-6 col-lg-4">
                                <div class="card news-card">
                                    <img src="http://columbiacityblog.com/assets/images/a17e9230da836401bd2243b21b523724.jpg" class="card-img-top news-card-img" alt="News Image">
                                    <div class="card-body news-card-body">
                                        <p class="news-date">May 29, 2026</p>
                                        <h3 class="news-title">Xalaflix Vf</h3>
                                        <p class="card-text">
    Xalaflix Sans Compte : Votre Liberté de Streaming Ultime en France
    Envie d'un film ce soir, mais l'idée de cr...</p>
                                        <a href="/xalaflix-vf" class="btn btn-primary">Read More</a>
                                    </div>
                                </div>
                            </div>
                                                    <div class="col-md-6 col-lg-4">
                                <div class="card news-card">
                                    <img src="http://columbiacityblog.com/assets/images/a17e9230da836401bd2243b21b523724.jpg" class="card-img-top news-card-img" alt="News Image">
                                    <div class="card-body news-card-body">
                                        <p class="news-date">May 15, 2026</p>
                                        <h3 class="news-title">Filmoflix Vpn</h3>
                                        <p class="card-text">
    Filmoflix Séries : Plongez dans un Univers Narratif Sans Fin
    Pour les amateurs de récits captivants et de per...</p>
                                        <a href="/filmoflix-vpn" class="btn btn-primary">Read More</a>
                                    </div>
                                </div>
                            </div>
                                                    <div class="col-md-6 col-lg-4">
                                <div class="card news-card">
                                    <img src="http://columbiacityblog.com/assets/images/a17e9230da836401bd2243b21b523724.jpg" class="card-img-top news-card-img" alt="News Image">
                                    <div class="card-body news-card-body">
                                        <p class="news-date">April 9, 2026</p>
                                        <h3 class="news-title">Betify</h3>
                                        <p class="card-text">
    Betify VIP: Unlock the Ultimate Casino Experience Beyond the Standard

    For the discerning French player, the qu...</p>
                                        <a href="/betify" class="btn btn-primary">Read More</a>
                                    </div>
                                </div>
                            </div>
                                            </div>
                            </section>

            <section id="contact" class="contact-section">
                <div class="container">
                    <h2 class="section-title text-center">Get In Touch</h2>
                    <div class="row justify-content-center">
                        <div class="col-md-8 col-lg-6">
                            <p class="text-center mb-5 fs-5">We value your feedback, story tips, and questions. Reach out to us through any of the following channels.</p>
                            <div class="contact-info mb-4">
                                <div class="d-flex align-items-center mb-3">
                                    <i class="bi bi-envelope-fill"></i>
                                    <div>
                                        <h5>Email</h5>
                                        <p><a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="89ecede0fde6fbc9eae6e5fce4ebe0e8eae0fdf0ebe5e6eea7eae6e4">[email&#160;protected]</a></p>
                                    </div>
                                </div>
                                <div class="d-flex align-items-center mb-3">
                                    <i class="bi bi-geo-alt-fill"></i>
                                    <div>
                                        <h5>Address</h5>
                                        <p>123 Columbia Street, Columbia City, CC 98108</p>
                                    </div>
                                </div>
                                <div class="d-flex align-items-center mb-3">
                                    <i class="bi bi-clock-fill"></i>
                                    <div>
                                        <h5>Office Hours</h5>
                                        <p>Monday-Friday: 9am-5pm</p>
                                    </div>
                                </div>
                            </div>
                            <form>
                                <div class="mb-3">
                                    <input type="text" class="form-control" placeholder="Your Name" required>
                                </div>
                                <div class="mb-3">
                                    <input type="email" class="form-control" placeholder="Your Email" required>
                                </div>
                                <div class="mb-3">
                                    <textarea class="form-control" rows="4" placeholder="Your Message" required></textarea>
                                </div>
                                <button type="submit" class="btn btn-primary w-100">Send Message</button>
                            </form>
                        </div>
                    </div>
                </div>
            </section>
            </main>

    <footer class="footer">
        <div class="container">
            <div class="row">
                <div class="col-md-6 text-md-start">
                    <h4 class="mb-3">Columbia City Blog</h4>
                    <p>Independent local journalism serving the Columbia City community since 2015.</p>
                </div>
                <div class="col-md-6 text-md-end">
                    <h5 class="mb-3">Quick Links</h5>
                    <ul class="list-unstyled">
                        <li><a href="/#home" class="text-light text-decoration-none">Home</a></li>
                        <li><a href="/#about" class="text-light text-decoration-none">About</a></li>
                        <li><a href="/#news" class="text-light text-decoration-none">News</a></li>
                        <li><a href="/#contact" class="text-light text-decoration-none">Contact</a></li>
                    </ul>
                </div>
            </div>
            <hr class="my-4" style="border-color: rgba(255,255,255,0.1);">
            <p class="mb-0">&copy; 2026 Columbia City Blog. All rights reserved.</p>
        </div>
    </footer>

    <script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
    <script>
        // Smooth scrolling for anchor links
        document.querySelectorAll('a[href^="#"]').forEach(anchor => {
            anchor.addEventListener('click', function (e) {
                const href = this.getAttribute('href');
                if (href !== '#' && href.startsWith('#')) {
                    e.preventDefault();
                    const target = document.querySelector(href);
                    if (target) {
                        window.scrollTo({
                            top: target.offsetTop - 70,
                            behavior: 'smooth'
                        });
                    }
                }
            });
        });
    </script>
</body>
</html>
