<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>LuTerra Travel | Navigate Your World</title>
<link rel="icon" type="image/png" href="favicon.png" />
<meta name="description" content="LuTerra Travel provides stress-free, custom travel planning for families and service members. Veteran-owned and trusted worldwide." />
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Playfair+Display:wght@600;700&display=swap" rel="stylesheet">
<style>
:root {
--navy: #0B1F3A;
--gold: #C9A24D;
--gray: #4A4F57;
--white: #F5F7FA;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'Montserrat', sans-serif;
}
body {
background: var(--white);
color: var(--navy);
line-height: 1.6;
}
/* Header */
header {
background: var(--navy);
color: white;
padding: 1.5rem 3rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-family: 'Playfair Display', serif;
font-size: 1.8rem;
font-weight: 700;
letter-spacing: 1px;
}
nav a {
color: white;
margin-left: 2rem;
text-decoration: none;
font-weight: 600;
}
nav a:hover {
color: var(--gold);
}
/* Hero */
.hero {
background: linear-gradient(rgba(11,31,58,0.7), rgba(11,31,58,0.7)), url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80');
background-size: cover;
background-position: center;
color: white;
text-align: center;
padding: 6rem 2rem;
}
.hero h1 {
font-family: 'Playfair Display', serif;
font-size: 3rem;
margin-bottom: 1rem;
}
.hero p {
max-width: 700px;
margin: 0 auto 2rem;
font-size: 1.1rem;
}
.btn {
background: var(--gold);
color: var(--navy);
padding: 0.8rem 1.8rem;
border-radius: 4px;
text-decoration: none;
font-weight: 700;
display: inline-block;
transition: 0.2s ease;
}
.btn:hover {
opacity: 0.85;
transform: translateY(-2px);
}
/* Sections */
section {
padding: 4rem 2rem;
max-width: 1200px;
margin: auto;
}
.section-title {
text-align: center;
margin-bottom: 3rem;
}
.section-title h2 {
font-family: 'Playfair Display', serif;
font-size: 2.2rem;
margin-bottom: 0.5rem;
}
.section-title p {
color: var(--gray);
}
/* Services */
.services {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}
.service-card {
background: white;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 5px 15px rgba(0,0,0,0.08);
text-align: center;
}
.service-card h3 {
margin-bottom: 1rem;
color: var(--navy);
}
/* About */
.about {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 3rem;
align-items: center;
}
.about img {
width: 100%;
border-radius: 10px;
}
/* Testimonials */
.testimonials {
background: var(--navy);
color: white;
}
.testimonial-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.testimonial {
background: rgba(255,255,255,0.1);
padding: 2rem;
border-radius: 8px;
}
/* Contact */
.contact-form {
max-width: 600px;
margin: auto;
}
.contact-form input,
.contact-form textarea {
width: 100%;
padding: 0.8rem;
margin-bottom: 1rem;
border-radius: 4px;
border: 1px solid #ccc;
}
.contact-form button {
width: 100%;
border: none;
cursor: pointer;
}
/* Footer */
footer {
background: var(--navy);
color: white;
text-align: center;
padding: 2rem 1rem;
margin-top: 3rem;
}
footer p {
font-size: 0.9rem;
opacity: 0.9;
}
/* Responsive */
@media (max-width: 768px) {
header {
flex-direction: column;
}
nav {
margin-top: 1rem;
}
nav a {
margin: 0 1rem;
}
.hero h1 {
font-size: 2.2rem;
}
}
</style>
</head>
<body>
<!-- Header -->
<header>
<div class="logo">
<img src="LTTv2.png" alt="LuTerra Travel Logo" style="height:48px; vertical-align:middle;" />
</div>
<nav>
<a href="#services">Services</a>
<a href="#about">About</a>
<a href="#testimonials">Reviews</a>
<a href="#contact">Contact</a>
</nav>
</header>
<!-- Hero -->
<section class="hero">
<div style="margin-bottom:1.5rem;">
<img src="LTTv2.png" alt="LuTerra Travel Logo" style="max-width:160px; opacity:0.95;" />
</div>
<h1>Navigate Your World</h1>
<p>Stress-free, custom travel planning for families and service members. Veteran-owned. Globally trusted.</p>
<a href="#contact" class="btn">Free Trip Consultation</a>
</section>
<!-- Services -->
<section id="services">
<div class="section-title">
<h2>Our Services</h2>
<p>Personalized travel solutions for every journey</p>
</div>
<div class="services">
<div class="service-card">
<h3>✈️ Vacation Planning</h3>
<p>All-inclusive resorts, cruises, and custom trips designed around your budget and schedule.</p>
</div>
<div class="service-card">
<h3>🎖️ Military Travel</h3>
<p>PCS, leave travel, reunions, and exclusive military-friendly booking support.</p>
</div>
<div class="service-card">
<h3>👨👩👧👦 Group & Family Trips</h3>
<p>Hassle-free coordination for large families, reunions, and destination events.</p>
</div>
<div class="service-card">
<h3>🌍 International Travel</h3>
<p>Flights, visas, insurance, and logistics handled with precision and care.</p>
</div>
</div>
</section>
<!-- About -->
<section id="about">
<div class="section-title">
<h2>About LuTerra</h2>
<p>Built on integrity, precision, and service</p>
</div>
<div class="about">
<div>
<p>
LuTerra Travel is a veteran-owned travel agency dedicated to delivering seamless, stress-free travel experiences.
We combine disciplined planning with global expertise to ensure every journey exceeds expectations.
</p>
<br />
<p>
Whether you're traveling for leisure, family, or duty, we treat every trip like a mission — executed with excellence.
</p>
<br />
<a href="#contact" class="btn">Plan With Us</a>
</div>
<img src="https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&w=900&q=80" alt="Travel Planning" />
</div>
</section>
<!-- Testimonials -->
<section id="testimonials" class="testimonials">
<div class="section-title">
<h2>What Clients Say</h2>
<p>Trusted by travelers worldwide</p>
</div>
<div class="testimonial-grid">
<div class="testimonial">
<p>“LuTerra handled everything perfectly. Best vacation we've ever had.”</p>
<strong>- Mark T.</strong>
</div>
<div class="testimonial">
<p>“As a military family, this level of service is rare. Highly recommended.”</p>
<strong>- Sarah L.</strong>
</div>
<div class="testimonial">
<p>“Professional, responsive, and saved us money. We'll never book alone again.”</p>
<strong>- James R.</strong>
</div>
</div>
</section>
<!-- Contact -->
<section id="contact">
<div class="section-title">
<h2>Contact Us</h2>
<p>Start your journey today</p>
</div>
<form class="contact-form">
<input type="text" placeholder="Full Name" required />
<input type="email" placeholder="Email Address" required />
<input type="text" placeholder="Destination" />
<textarea rows="5" placeholder="Tell us about your trip..."></textarea>
<button type="submit" class="btn">Request Consultation</button>
</form>
</section>
<!-- Footer -->
<footer>
<p>© 2026 LuTerra Travel | Veteran-Owned & Operated</p>
<p>Navigate Your World</p>
</footer>
</body>
</html>