<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>RPA Bathrooms – Richard Ascough</title>
<style>
:root {
--primary: #1e4a6c;
--accent: #e0effa;
--text-dark: #2b2b2b;
--text-light: #ffffff;
}
body {
margin: 0;
font-family: Arial, sans-serif;
color: var(--text-dark);
background: #f8f8f8;
}
/* HEADER */
header {
background: var(--primary);
color: var(--text-light);
padding: 20px 20px;
position: sticky;
top: 0;
z-index: 10;
}
header h1 {
margin: 0;
font-size: 24px;
text-align: center;
}
nav {
margin-top: 10px;
text-align: center;
}
nav a {
color: var(--text-light);
margin: 0 12px;
text-decoration: none;
font-weight: bold;
}
nav a:hover {
text-decoration: underline;
}
/* HERO */
.hero {
background: var(--accent);
padding: 70px 20px;
text-align: center;
}
.hero h1 {
margin: 0 0 10px;
font-size: 32px;
}
.hero p {
font-size: 18px;
margin: 0;
max-width: 600px;
margin: 10px auto 0;
color: #444;
}
/* SECTIONS */
.section {
padding: 50px 20px;
max-width: 1100px;
margin: auto;
}
.section h2 {
margin-top: 0;
font-size: 28px;
color: var(--primary);
}
/* GALLERY */
.gallery {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
margin-top: 20px;
}
.gallery div {
background: #d9d9d9;
height: 220px;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
color: #555;
font-size: 16px;
}
/* CONTACT */
.contact {
background: #ffffff;
padding: 40px 20px;
text-align: center;
border-top: 3px solid var(--primary);
}
.contact p {
margin: 5px 0;
font-size: 16px;
}
/* MOBILE FIXES */
@media (max-width: 600px) {
header h1 {
font-size: 20px;
}
.hero h1 {
font-size: 26px;
}
nav a {
display: inline-block;
margin: 6px;
}
}
</style>
</head>
<body>
<header>
<h1>RPA Bathrooms</h1>
<nav>
<a href="#about">About</a>
<a href="#gallery">Gallery</a>
<a href="#contact">Contact</a>
</nav>
</header>
<section class="hero">
<h1>Quality Bathroom Installations</h1>
<p>Professional bathroom fitting by Richard Ascough, delivering durable craftsmanship and modern design.</p>
</section>
<section id="about" class="section">
<h2>About Richard</h2>
<p>
With over 20 years of experience, Richard Ascough specialises in complete bathroom renovations,
including tiling, plumbing, lighting, and bespoke fittings. RPA Bathrooms focuses on delivering
clean, modern finishes with professional attention to detail.
</p>
</section>
<section id="gallery" class="section">
<h2>Photo Gallery</h2>
<p>Replace these boxes with photos of completed bathroom projects.</p>
<div class="gallery">
<div>Image 1</div>
<div>Image 2</div>
<div>Image 3</div>
<div>Image 4</div>
<div>Image 5</div>
<div>Image 6</div>
</div>
</section>
<section id="contact" class="contact">
<h2>Contact</h2>
<p>Email: your-email@example.com</p>
<p>Phone: 0000 000 000</p>
</section>
</body>
</html>