-
-
Notifications
You must be signed in to change notification settings - Fork 520
Open
Description
<title>SimpliCape Holdings - Futuristic Shade Solutions</title>
<style>
body {
margin: 0;
padding: 0;
font-family: 'Roboto', sans-serif;
background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
color: #ffffff;
overflow-x: hidden;
}
header {
position: fixed;
width: 100%;
top: 0;
background: rgba(0, 0, 0, 0.5);
backdrop-filter: blur(10px);
padding: 20px 0;
z-index: 1000;
transition: background 0.3s;
}
header.scrolled {
background: rgba(0, 0, 0, 0.8);
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.logo {
font-family: 'Orbitron', sans-serif;
font-size: 24px;
color: #00ffcc;
text-shadow: 0 0 10px #00ffcc;
}
ul {
list-style: none;
display: flex;
margin: 0;
padding: 0;
}
li {
margin-left: 30px;
}
a {
color: #ffffff;
text-decoration: none;
font-weight: 300;
position: relative;
transition: color 0.3s;
}
a::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: #00ffcc;
transition: width 0.3s;
}
a:hover {
color: #00ffcc;
}
a:hover::after {
width: 100%;
}
.hero {
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
background: url('https://via.placeholder.com/1920x1080?text=Futuristic+Shade') no-repeat center/cover;
position: relative;
}
.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
}
.hero-content {
position: relative;
z-index: 1;
animation: fadeIn 2s ease-in;
}
h1 {
font-family: 'Orbitron', sans-serif;
font-size: 48px;
margin: 0;
text-shadow: 0 0 20px #00ffcc;
}
p {
font-size: 18px;
max-width: 600px;
margin: 20px auto;
}
.btn {
background: linear-gradient(45deg, #00ffcc, #007bff);
padding: 15px 30px;
border-radius: 50px;
color: #ffffff;
text-decoration: none;
font-weight: bold;
box-shadow: 0 0 15px #00ffcc;
transition: transform 0.3s;
}
.btn:hover {
transform: scale(1.05);
}
section {
padding: 80px 20px;
max-width: 1200px;
margin: 0 auto;
}
h2 {
font-family: 'Orbitron', sans-serif;
text-align: center;
margin-bottom: 40px;
color: #00ffcc;
text-shadow: 0 0 10px #00ffcc;
}
.products-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}
.product {
background: rgba(255, 255, 255, 0.1);
border-radius: 15px;
padding: 20px;
text-align: center;
transition: transform 0.3s, box-shadow 0.3s;
backdrop-filter: blur(5px);
}
.product:hover {
transform: translateY(-10px);
box-shadow: 0 0 20px #00ffcc;
}
.product img {
width: 100%;
border-radius: 10px;
margin-bottom: 15px;
}
form {
display: flex;
flex-direction: column;
max-width: 500px;
margin: 0 auto;
}
input, textarea {
margin-bottom: 15px;
padding: 10px;
border: none;
border-radius: 5px;
background: rgba(255, 255, 255, 0.2);
color: #ffffff;
}
input::placeholder, textarea::placeholder {
color: #cccccc;
}
button {
background: linear-gradient(45deg, #00ffcc, #007bff);
border: none;
padding: 15px;
border-radius: 50px;
color: #ffffff;
font-weight: bold;
cursor: pointer;
box-shadow: 0 0 15px #00ffcc;
transition: transform 0.3s;
}
button:hover {
transform: scale(1.05);
}
footer {
background: rgba(0, 0, 0, 0.8);
padding: 20px;
text-align: center;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(50px); }
to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
h1 { font-size: 36px; }
.products-grid { grid-template-columns: 1fr; }
}
</style>
SimpliCape Holdings
<section id="home" class="hero">
<div class="hero-content">
<h1>Welcome to SimpliCape Holdings</h1>
<p>Your futuristic solution for high-quality blinds, durable tents, custom pool covers, and elegant shade sail canopies.</p>
<a href="#products" class="btn">Explore Products</a>
</div>
</section>
<section id="about">
<h2>About Us</h2>
<p>Based in Cape Town, South Africa, SimpliCape Holdings specializes in innovative outdoor solutions designed to enhance your space and protect you from the elements. With a focus on quality and durability, our products blend modern technology with sleek design for a futuristic feel.</p>
</section>
<section id="products">
<h2>Our Products</h2>
<div class="products-grid">
<div class="product">
<img src="https://via.placeholder.com/300x200?text=Blinds" alt="Blinds">
<h3>High-Quality Blinds</h3>
<p>Weather-resistant outdoor blinds to keep your space warm and dry.</p>
</div>
<div class="product">
<img src="https://via.placeholder.com/300x200?text=Tents" alt="Tents">
<h3>Durable Tents</h3>
<p>Robust tents for all occasions, built to last.</p>
</div>
<div class="product">
<img src="https://via.placeholder.com/300x200?text=Pool+Covers" alt="Pool Covers">
<h3>Custom Pool Covers</h3>
<p>Tailored covers to protect and maintain your pool.</p>
</div>
<div class="product">
<img src="https://via.placeholder.com/300x200?text=Shade+Sails" alt="Shade Sails">
<h3>Elegant Shade Sail Canopies</h3>
<p>Stylish canopies for shade and aesthetic appeal.</p>
</div>
</div>
</section>
<section id="contact">
<h2>Contact Us</h2>
<p>Location: Cape Town, South Africa<br>Phone: 068 416 4713<br>Email: info@simplicape.com</p>
<form>
<input type="text" placeholder="Your Name">
<input type="email" placeholder="Your Email">
<textarea placeholder="Your Message"></textarea>
<button type="submit">Send Message</button>
</form>
</section>
<footer>
<p>© 2025 SimpliCape Holdings. All rights reserved.</p>
</footer>
<script>
window.addEventListener('scroll', () => {
const header = document.querySelector('header');
header.classList.toggle('scrolled', window.scrollY > 0);
});
</script>
Metadata
Metadata
Assignees
Labels
No labels