<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Simple Nike-style Homepage</title>
  <style>
    /* Reset & base */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: Arial, sans-serif; line-height: 1.6; color: #111; }
    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; height: auto; }

    /* Navigation */
    nav { display: flex; justify-content: space-between; align-items: center; padding: 20px 40px; }
    .logo { font-size: 1.5rem; font-weight: bold; }
    .menu { display: flex; gap: 20px; font-size: 0.9rem; }
    .menu a:hover { text-decoration: underline; }

    /* Hero */
    .hero {
      position: relative;
      background: url('https://via.placeholder.com/1600x600') center/cover no-repeat;
      height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero-text {
      background: rgba(255,255,255,0.8);
      padding: 20px 40px;
      text-align: center;
    }
    .hero-text h1 { font-size: 2.5rem; margin-bottom: 10px; }
    .hero-text p { font-size: 1rem; margin-bottom: 20px; }
    .hero-text a {
      display: inline-block;
      padding: 10px 20px;
      background: #111;
      color: #fff;
      font-weight: bold;
    }

    /* Featured Section */
    .featured {
      padding: 60px 40px;
    }
    .featured h2 { text-align: center; margin-bottom: 40px; font-size: 1.8rem; }
    .products { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
    .product {
      border: 1px solid #ddd;
      padding: 20px;
      text-align: center;
    }
    .product h3 { margin: 15px 0; font-size: 1.1rem; }
    .product a {
      display: inline-block;
      margin-top: 10px;
      color: #111;
      font-weight: bold;
    }
    .product a:hover { text-decoration: underline; }

    /* Footer */
    footer {
      background: #f4f4f4;
      padding: 20px 40px;
      text-align: center;
      font-size: 0.9rem;
    }
    footer a { margin: 0 10px; color: #555; }
  </style>
</head>
<body>
  <!-- Navigation -->
  <nav>
    <div class="logo">Nike</div>
    <div class="menu">
      <a href="#">Men</a>
      <a href="#">Women</a>
      <a href="#">Kids</a>
      <a href="#">Sale</a>
      <a href="#">Search</a>
    </div>
  </nav>

  <!-- Hero Section -->
  <section class="hero">
    <div class="hero-text">
      <h1>Just Do It</h1>
      <p>Explore the latest in footwear and apparel</p>
      <a href="#">Shop Now</a>
    </div>
  </section>

  <!-- Featured Products -->
  <section class="featured">
    <h2>Featured Products</h2>
    <div class="products">
      <div class="product">
        <img src="https://via.placeholder.com/300x200" alt="Product 1">
        <h3>Air Max 270</h3>
        <a href="#">View Product</a>
      </div>
      <div class="product">
        <img src="https://via.placeholder.com/300x200" alt="Product 2">
        <h3>React Infinity</h3>
        <a href="#">View Product</a>
      </div>
      <div class="product">
        <img src="https://via.placeholder.com/300x200" alt="Product 3">
        <h3>ZoomX Vaporfly</h3>
        <a href="#">View Product</a>
      </div>
    </div>
  </section>

  <!-- Footer -->
  <footer>
    <p>&copy; 2025 Nike, Inc. All Rights Reserved.</p>
    <p>
      <a href="#">Privacy Policy</a>
      <a href="#">Terms of Use</a>
      <a href="#">Contact Us</a>
    </p>
  </footer>
</body>
</html>