<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>LUMEOO – Outdoor Leisure & Fishing Gear</title>
<meta name="description" content="LUMEOO is an outdoor lifestyle brand focused on fishing and leisure gear for a relaxed, modern lifestyle." />
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
margin: 0;
color: #2c2c2c;
background: #ffffff;
line-height: 1.6;
}
header {
text-align: center;
padding: 40px 20px 20px;
}
header img {
max-width: 280px;
}
section {
max-width: 1100px;
margin: 60px auto;
padding: 0 20px;
}
h1, h2, h3 {
color: #4f7f3a;
}
.hero img {
width: 100%;
border-radius: 16px;
}
.center {
text-align: center;
}
.about {
display: flex;
gap: 40px;
flex-wrap: wrap;
align-items: center;
}
.about img {
max-width: 480px;
width: 100%;
border-radius: 16px;
}
.products {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 30px;
margin-top: 30px;
}
.product-card img {
width: 100%;
border-radius: 14px;
}
footer {
background: #f6f6f6;
text-align: center;
padding: 40px 20px;
margin-top: 80px;
font-size: 14px;
}
</style>
</head>
<body>
<header>
<img src="/logo.png" alt="LUMEOO Logo" />
<p><strong>Outdoor Leisure & Fishing Gear</strong></p>
</header>
<section class="hero center">
<img src="/images/hero-fishing.jpg" alt="Fishing lifestyle outdoors" />
<h1>Welcome to LUMEOO</h1>
<p>
Thoughtfully designed fishing and outdoor products<br />
for a relaxed, modern lifestyle.
</p>
</section>
<section class="about">
<img src="/images/about-outdoor.jpg" alt="Outdoor leisure lifestyle" />
<div>
<h2>About LUMEOO</h2>
<p>
LUMEOO is an outdoor lifestyle brand focused on fishing and leisure gear.
We believe time spent outdoors should be simple, comfortable, and enjoyable.
</p>
<p>
We work closely with experienced manufacturers in China who specialize in
fishing equipment and outdoor tools. Through careful product selection and
quality control, we deliver well-designed and dependable products to customers worldwide.
</p>
<p>
Our goal is not to offer everything — but to offer the right products that
support a relaxed outdoor lifestyle and perform when it matters.
</p>
</div>
</section>
<section>
<h2 class="center">Our Products</h2>
<div class="products">
<div class="product-card">
<img src="/images/fishing-rod.jpg" alt="Fishing rods and accessories" />
<h3>Fishing Rods & Accessories</h3>
<p>
Designed for anglers who value balance, durability, and comfort.
Suitable for freshwater and light saltwater fishing.
</p>
</div>
<div class="product-card">
<img src="/images/garden-tools.jpg" alt="Outdoor and garden tools" />
<h3>Outdoor & Garden Tools</h3>
<p>
Practical tools for everyday outdoor tasks, focusing on usability
and long-term reliability.
</p>
</div>
<div class="product-card">
<img src="/images/outdoor-gear.jpg" alt="Outdoor lifestyle gear" />
<h3>Outdoor Lifestyle Gear</h3>
<p>
Selected accessories that complement leisure time outdoors,
from fishing trips to weekend activities.
</p>
</div>
</div>
</section>
<footer>
<p><strong>LUMEOO LLC</strong></p>
<p>United States</p>
<p>Email: <a href="mailto:info@lumeoo.co">info@lumeoo.co</a></p>
<p>© LUMEOO LLC. All rights reserved.</p>
</footer>
</body>
</html>