<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>AB Spacelift Designs</title>
<style>
:root {
--bg-light: #ffffff;
--text-light: #1a1a1a;
--accent: #4a90e2;
--bg-dark: #1a1a1a;
--text-dark: #f5f5f5;
}
body {
font-family: 'Segoe UI', sans-serif;
margin: 0;
background-color: var(--bg-light);
color: var(--text-light);
transition: all 0.3s ease-in-out;
}
header, section {
padding: 4rem 2rem;
max-width: 1000px;
margin: auto;
}
nav {
background-color: var(--accent);
padding: 1rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
}
nav a {
color: white;
margin-left: 1rem;
text-decoration: none;
font-weight: bold;
}
.hero {
text-align: center;
padding: 6rem 2rem;
}
.hero h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.hero p {
font-size: 1.2rem;
max-width: 700px;
margin: auto;
}
.services, .portfolio {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
}
.service, .portfolio-item {
background: #f0f0f0;
padding: 1rem;
border-radius: 8px;
}
footer {
text-align: center;
padding: 2rem;
background-color: #f5f5f5;
}
.dark-mode {
background-color: var(--bg-dark);
color: var(--text-dark);
}
.dark-mode nav {
background-color: #333;
}
.dark-mode .service, .dark-mode .portfolio-item {
background-color: #2e2e2e;
}
.toggle-btn {
background: none;
border: 2px solid white;
color: white;
padding: 0.3rem 1rem;
border-radius: 5px;
cursor: pointer;
}
</style>
</head>
<body>
<nav>
<div><strong>AB Spacelift Designs</strong></div>
<div>
<a href="#about">About</a>
<a href="#services">Services</a>
<a href="#portfolio">Portfolio</a>
<a href="#contact">Contact</a>
<button class="toggle-btn" onclick="toggleDarkMode()">Toggle Mode</button>
</div>
</nav>
<section class="hero">
<h1>Transform Your Space. Add Value. Live Better.</h1>
<p>Smart, sustainable residential design by AB Spacelift Designs. We help homeowners unlock their home's full potential with efficient layouts, impactful alterations, and high-value extensions.</p>
</section>
<section id="about">
<h2>About</h2>
<p>I’m Adelina Bran, a qualified architectural designer with a UK Master's in Architecture and over 5 years of experience in sustainable residential design. AB Spacelift Designs focuses on value-driven improvements, from internal reconfigurations to extension planning. I blend creativity and practicality to help homeowners get the most from their space.</p>
</section>
<section id="services">
<h2>Services</h2>
<div class="services">
<div class="service">
<h3>Feasibility Study</h3>
<p>Initial site visit, layout sketches, and written assessment. From £200.</p>
</div>
<div class="service">
<h3>Interior Reconfiguration</h3>
<p>Survey, concept layouts, and final plan. From £350.</p>
</div>
<div class="service">
<h3>Planning Drawings</h3>
<p>Planning-ready drawings and application support. From £500.</p>
</div>
<div class="service">
<h3>Building Regulations Package</h3>
<p>Technical drawings and notes for approval. From £750.</p>
</div>
</div>
</section>
<section id="portfolio">
<h2>Portfolio</h2>
<div class="portfolio">
<div class="portfolio-item">
<h4>Kitchen-Diner Reconfiguration</h4>
<p>Opened layout for light and flow. Coming soon.</p>
</div>
<div class="portfolio-item">
<h4>Side Return Extension</h4>
<p>Gained 12m² of usable space. Coming soon.</p>
</div>
</div>
</section>
<section id="contact">
<h2>Contact</h2>
<p>Ready to improve your home? Email me at <a href="mailto:adelina.a.bran@gmail.com">adelina.a.bran@gmail.com</a></p>
</section>
<footer>
<p>© 2025 AB Spacelift Designs</p>
</footer>
<script>
function toggleDarkMode() {
document.body.classList.toggle('dark-mode');
}
</script>
</body>
</html>