<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Mother Bumper | Family Fleet Safety & Automotive Logistics</title>
    <meta name="description" content="The premier resource for family vehicle safety, road trip logistics, driver wellness, and automotive maintenance standards.">
    <meta name="keywords" content="automotive safety, family travel, fleet maintenance, road trip logistics, car seat safety, vehicle engineering">
    <link rel="canonical" href="https://www.motherbumper.com/">
    <meta name="robots" content="index, follow">
    <meta name="theme-color" content="#2c3e50">

    <!-- Open Graph -->
    <meta property="og:type" content="website">
    <meta property="og:url" content="https://www.motherbumper.com/">
    <meta property="og:title" content="Mother Bumper | Safety First">
    <meta property="og:description" content="Expert advice on keeping your family fleet safe and operational.">
    <meta property="og:image" content="https://picsum.photos/seed/suv/1200/630">

    <!-- Twitter Card -->
    <meta name="twitter:card" content="summary_large_image">
    <meta name="twitter:title" content="Mother Bumper Automotive">
    <meta name="twitter:description" content="Engineering safety for the modern family.">
    <meta name="twitter:image" content="https://picsum.photos/seed/suv/1200/630">

    <!-- Schema.org -->
    <script type="application/ld+json">
    {
      "@context": "https://schema.org",
      "@type": "WebSite",
      "name": "Mother Bumper",
      "url": "https://www.motherbumper.com/",
      "description": "Automotive safety and logistics resource.",
      "publisher": {
        "@type": "Organization",
        "name": "Mother Bumper Safety Labs",
        "logo": {
          "@type": "ImageObject",
          "url": "https://www.motherbumper.com/logo.png"
        }
      }
    }
    </script>

    <!-- Fonts -->
    <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=Oswald:wght@400;700&family=Roboto:wght@300;400;700&display=swap" rel="stylesheet">

    <style>
        :root {
            --safety-orange: #ff6b00;
            --steel-blue: #2c3e50;
            --asphalt: #34495e;
            --concrete: #ecf0f1;
            --text-dark: #222;
            --max-width: 1000px;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }

        body {
            background-color: var(--concrete);
            color: var(--text-dark);
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
        }

        header {
            background-color: var(--steel-blue);
            color: white;
            padding: 40px 20px;
            border-bottom: 5px solid var(--safety-orange);
        }

        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }

        h1 {
            font-family: 'Oswald', sans-serif;
            font-size: 3rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .subtitle {
            font-family: 'Roboto', sans-serif;
            font-weight: 300;
            font-size: 1.2rem;
            color: #bdc3c7;
            margin-top: 10px;
        }

        .hero {
            background: url('https://picsum.photos/seed/highway/1200/600') center/cover;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        .hero::after {
            content: '';
            position: absolute;
            top:0; left:0; right:0; bottom:0;
            background: rgba(44, 62, 80, 0.7);
        }
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            border: 3px solid var(--safety-orange);
            padding: 30px;
            background: rgba(0,0,0,0.5);
        }

        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }

        .card {
            background: white;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            border-top: 4px solid var(--asphalt);
        }
        .card:hover {
            transform: translateY(-5px);
            border-top-color: var(--safety-orange);
        }
        .card-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .card-body {
            padding: 20px;
        }
        .card-tag {
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--safety-orange);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .card-title {
            font-family: 'Oswald', sans-serif;
            font-size: 1.5rem;
            margin: 10px 0;
            color: var(--steel-blue);
        }
        .card-text {
            font-size: 0.95rem;
            color: #666;
            margin-bottom: 20px;
        }
        .btn-read {
            display: inline-block;
            background: var(--steel-blue);
            color: white;
            padding: 8px 16px;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.9rem;
            border-radius: 2px;
        }
        .btn-read:hover {
            background: var(--safety-orange);
        }

        .network-section {
            background: var(--asphalt);
            color: white;
            padding: 40px 0;
            margin-top: 60px;
        }
        .network-links a {
            color: #bdc3c7;
            text-decoration: none;
            margin-right: 20px;
            font-size: 0.9rem;
            display: inline-block;
            margin-bottom: 10px;
        }
        .network-links a:hover {
            color: var(--safety-orange);
            text-decoration: underline;
        }

        footer {
            background: var(--steel-blue);
            color: white;
            text-align: center;
            padding: 20px;
            font-size: 0.8rem;
        }
    </style>
<script type="importmap">
{
  "imports": {
    "react": "https://esm.sh/react@^19.2.3",
    "react-dom/": "https://esm.sh/react-dom@^19.2.3/",
    "react/": "https://esm.sh/react@^19.2.3/"
  }
}
</script>
</head>
<body>

    <header>
        <div class="container">
            <h1>Mother Bumper</h1>
            <div class="subtitle">Logistics. Safety. Family Transport.</div>
        </div>
    </header>

    <div class="hero">
        <div class="hero-content">
            <h2 style="font-family:'Oswald'; font-size: 2.5rem; text-transform:uppercase;">Protect Your Fleet</h2>
            <p>Expert analysis on vehicle safety, travel logistics, and maintenance.</p>
        </div>
    </div>

    <div class="container">
        <div class="articles-grid">
            <!-- Article 1: Hospitality -->
            <article class="card">
                <img src="https://picsum.photos/seed/motel/400/300" alt="Road Trip Hotel" class="card-img">
                <div class="card-body">
                    <span class="card-tag">Travel Logistics</span>
                    <h3 class="card-title">The Road Trip Rest Stop</h3>
                    <p class="card-text">Finding safe havens on long journeys. Why historic inns offer better recovery than roadside motels.</p>
                    <a href="road-trip-rest-stops.html" class="btn-read">Read Report</a>
                </div>
            </article>

            <!-- Article 2: News -->
            <article class="card">
                <img src="https://picsum.photos/seed/traffic/400/300" alt="Global Traffic" class="card-img">
                <div class="card-body">
                    <span class="card-tag">Safety Intelligence</span>
                    <h3 class="card-title">Traffic Intelligence</h3>
                    <p class="card-text">How global events impact fuel prices and travel safety. Staying informed on the road.</p>
                    <a href="traffic-safety-news.html" class="btn-read">Read Report</a>
                </div>
            </article>

            <!-- Article 3: Wellness -->
            <article class="card">
                <img src="https://picsum.photos/seed/driver/400/300" alt="Driver Fatigue" class="card-img">
                <div class="card-body">
                    <span class="card-tag">Driver Health</span>
                    <h3 class="card-title">Driver Fatigue & Wellness</h3>
                    <p class="card-text">The physiology of driving. Why spa treatments are essential for alertness and reaction time.</p>
                    <a href="driver-wellness-fatigue.html" class="btn-read">Read Report</a>
                </div>
            </article>

            <!-- Article 4: Auto/Tech -->
            <article class="card">
                <img src="https://picsum.photos/seed/engine/400/300" alt="Engine Maintenance" class="card-img">
                <div class="card-body">
                    <span class="card-tag">Mechanical Integrity</span>
                    <h3 class="card-title">The Bumper & The Engine</h3>
                    <p class="card-text">Routine maintenance protocols. Ensuring your fluid systems and fleet vehicles are road-ready.</p>
                    <a href="vehicle-integrity-maintenance.html" class="btn-read">Read Report</a>
                </div>
            </article>

            <!-- Article 5: Dining -->
            <article class="card">
                <img src="https://picsum.photos/seed/diner/400/300" alt="Roadside Dining" class="card-img">
                <div class="card-body">
                    <span class="card-tag">Fueling The Family</span>
                    <h3 class="card-title">Roadside Gastronomy</h3>
                    <p class="card-text">Moving beyond the drive-thru. Finding high-quality dining and natural ingredients on the highway.</p>
                    <a href="roadside-gastronomy.html" class="btn-read">Read Report</a>
                </div>
            </article>
        </div>
    </div>

    <div class="network-section">
        <div class="container">
            <h4 style="margin-bottom:20px; font-family:'Oswald'; color:var(--safety-orange);">PARTNER NETWORK</h4>
            <div class="network-links">
                <a href="https://aefaup.com">AEFAUP Architecture</a>
                <a href="https://www.alienvspredator2.com">AVP2 Archive</a>
                <a href="https://www.motherbumper.com">Mother Bumper</a>
                <a href="https://100thwindow.com">100th Window</a>
                <a href="https://ihomebirth.com">iHomeBirth</a>
            </div>
        </div>
    </div>

    <footer>
        <p>&copy; <script>document.write(new Date().getFullYear())</script> Mother Bumper Safety Labs. All rights reserved. <a href="legal.html" style="color:white; text-decoration:underline;">Legal</a></p>
    </footer>

</body>
</html>