<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CK Inspections - Home Inspections in Texas</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}
body {
line-height: 1.6;
}
.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 15px;
}
/* Header Styles */
.top-bar {
display: flex;
justify-content: flex-end;
padding: 10px 20px;
background-color: #fff;
}
.contact-info {
display: flex;
gap: 20px;
}
.contact-info a {
color: #0072bc;
text-decoration: none;
display: flex;
align-items: center;
gap: 5px;
}
/* Navigation */
.header {
background-color: #0072bc;
padding: 15px 0;
}
.nav-container {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
max-width: 150px;
}
.logo img {
width: 100%;
}
.nav-menu {
display: flex;
list-style: none;
}
.nav-menu li a {
color: white;
text-decoration: none;
padding: 15px;
display: block;
font-weight: bold;
transition: background-color 0.3s;
}
.nav-menu li a:hover {
background-color: rgba(255, 255, 255, 0.2);
}
.nav-menu li a.active {
background-color: white;
color: #0072bc;
}
.cta-button {
background-color: #ff0000;
color: white;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
font-weight: bold;
text-decoration: none;
display: inline-block;
}
/* Hero Section */
.hero {
position: relative;
height: 400px;
overflow: hidden;
}
.hero-image {
width: 100%;
height: 100%;
object-fit: cover;
}
.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: rgba(0, 0, 0, 0.3);
color: white;
text-align: center;
padding: 20px;
}
.hero-title {
font-size: 2.5rem;
font-weight: bold;
margin-bottom: 10px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.hero-subtitle {
font-size: 1.5rem;
font-weight: bold;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
/* Content Section */
.content-section {
padding: 50px 0;
}
.section-title {
font-size: 2rem;
margin-bottom: 30px;
text-align: center;
}
.section-content {
max-width: 800px;
margin: 0 auto;
}
/* Media Queries */
@media (max-width: 768px) {
.nav-container {
flex-direction: column;
gap: 20px;
}
.nav-menu {
flex-direction: column;
width: 100%;
}
.nav-menu li a {
text-align: center;
padding: 10px;
}
.hero-title {
font-size: 1.8rem;
}
.hero-subtitle {
font-size: 1.2rem;
}
.contact-info {
flex-direction: column;
gap: 10px;
}
}
</style>
</head>
<body>
<!-- Top Bar -->
<div class="top-bar">
<div class="contact-info">
<a href="tel:281.520.3333">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" viewBox="0 0 16 16">
<path d="M1.885.511a1.745 1.745 0 0 1 2.61.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.678.678 0 0 0 .178.643l2.457 2.457a.678.678 0 0 0 .644.178l2.189-.547a1.745 1.745 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.634 18.634 0 0 1-7.01-4.42 18.634 18.634 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877L1.885.511z"/>
</svg>
281.520.3333
</a>
<a href="mailto:cody@cmkinspectiontx.com">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" viewBox="0 0 16 16">
<path d="M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V4zm2-1a1 1 0 0 0-1 1v.217l7 4.2 7-4.2V4a1 1 0 0 0-1-1H2zm13 2.383-4.758 2.855L15 11.114v-5.73zm-.034 6.878L9.271 8.82 8 9.583 6.728 8.82l-5.694 3.44A1 1 0 0 0 2 13h12a1 1 0 0 0 .966-.739zM1 11.114l4.758-2.876L1 5.383v5.73z"/>
</svg>
cody@cmkinspectiontx.com
</a>
</div>
</div>
<!-- Header & Navigation -->
<header class="header">
<div class="container nav-container">
<div class="logo">
<img src="/api/placeholder/150/50" alt="CK Inspections Logo">
</div>
<nav>
<ul class="nav-menu">
<li><a href="#" class="active">HOME</a></li>
<li><a href="#">YOUR INSPECTION</a></li>
<li><a href="#">SERVICES & FEES</a></li>
<li><a href="#">ABOUT</a></li>
<li><a href="#">YOUR REPORT</a></li>
<li><a href="#">AGENTS</a></li>
<li><a href="#">CONTACT</a></li>
</ul>
</nav>
<a href="#" class="cta-button">SCHEDULE YOUR INSPECTION</a>
</div>
</header>
<!-- Hero Section -->
<section class="hero">
<img src="/api/placeholder/1200/400" alt="Aerial view of houses" class="hero-image">
<div class="hero-overlay">
<h1 class="hero-title">A Home Inspection That Buys</h1>
<h2 class="hero-subtitle">You Peace of Mind</h2>
</div>
</section>
<!-- Content Section -->
<section class="content-section">
<div class="container">
<h2 class="section-title">WELCOME</h2>
<div class="section-content">
<p>Welcome to CK Inspections, your trusted partner for thorough and reliable home inspections in Texas. We offer comprehensive services including Drone Inspections, Sewer Scope, and WDI Inspections to ensure your home is safe and sound. Our detailed reports give you the peace of mind you need, whether you're buying, selling, or maintaining your home. Choose CK Inspections for expert insights and unmatched customer service.</p>
</div>
</div>
</section>
<!-- Footer would go here -->
</body>
</html>