341 lines
13 KiB
HTML
341 lines
13 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>The Vertice - Template Preview</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700;800&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
|
|
<style>
|
|
:root {
|
|
--color-dark: #111111;
|
|
--color-light: #FFFFFF;
|
|
--color-accent-green: #0A6847;
|
|
--color-grey-bg: #F0F0F0;
|
|
--color-text-dark: #222222;
|
|
--color-text-light: #EFEFEF;
|
|
--color-text-muted: #888888;
|
|
--color-border: #DDDDDD;
|
|
--font-main: 'Inter', sans-serif;
|
|
}
|
|
|
|
body {
|
|
font-family: var(--font-main);
|
|
background-color: #d8d8d8;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: 20px;
|
|
margin: 0;
|
|
}
|
|
|
|
.brochure-page {
|
|
width: 400px;
|
|
height: 500px;
|
|
background-color: var(--color-light);
|
|
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
|
|
.cover-page {
|
|
background-image: url('https://plus.unsplash.com/premium_photo-1677474827617-6a7269f97574?q=80&w=687&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
|
|
background-size: cover;
|
|
background-position: center;
|
|
color: var(--color-light);
|
|
justify-content: center;
|
|
align-items: center;
|
|
text-align: center;
|
|
position: relative;
|
|
flex: 1;
|
|
}
|
|
.cover-overlay {
|
|
position: absolute; top: 0; left: 0; width: 100%; height: 100%;
|
|
background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3));
|
|
}
|
|
.cover-content {
|
|
position: relative; z-index: 2; padding: 40px;
|
|
}
|
|
.cover-content .subtitle {
|
|
font-size: 0.9rem;
|
|
font-weight: 500;
|
|
letter-spacing: 3px;
|
|
text-transform: uppercase;
|
|
color: rgba(255, 255, 255, 0.8);
|
|
}
|
|
.cover-content .main-title {
|
|
font-size: 4rem;
|
|
font-weight: 800;
|
|
line-height: 1.1;
|
|
margin: 8px 0 15px 0;
|
|
text-shadow: 0 4px 10px rgba(0,0,0,0.3);
|
|
}
|
|
.cover-content .address {
|
|
font-size: 1rem;
|
|
font-weight: 400;
|
|
border-top: 1px solid var(--color-accent-green);
|
|
display: inline-block;
|
|
padding-top: 15px;
|
|
}
|
|
.cover-footer {
|
|
position: absolute;
|
|
bottom: 30px;
|
|
left: 30px; right: 30px;
|
|
z-index: 2;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
font-size: 0.8rem;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.page-container {
|
|
padding: 50px;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
box-sizing: border-box;
|
|
}
|
|
.page-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: baseline;
|
|
border-bottom: 1px solid var(--color-border);
|
|
margin-bottom: 15px;
|
|
}
|
|
.page-title {
|
|
font-size: 2rem;
|
|
font-weight: 800;
|
|
color: var(--color-dark);
|
|
}
|
|
.page-title span {
|
|
color: var(--color-accent-green);
|
|
}
|
|
.page-subtitle {
|
|
font-size: 0.9rem;
|
|
font-weight: 500;
|
|
color: var(--color-text-muted);
|
|
}
|
|
.page-footer-bar {
|
|
margin-top: auto;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding-top: 15px;
|
|
border-top: 1px solid var(--color-border);
|
|
font-size: 0.8rem;
|
|
font-weight: 500;
|
|
color: var(--color-text-muted);
|
|
}
|
|
.page-footer-bar .property-name {
|
|
color: var(--color-dark);
|
|
}
|
|
.section-title {
|
|
font-size: 1.2rem;
|
|
font-weight: 700;
|
|
color: var(--color-dark);
|
|
margin-bottom: 20px;
|
|
margin-top: 0;
|
|
}
|
|
.detail-item {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
font-size: 0.8rem;
|
|
padding: 8px 0;
|
|
border-bottom: 1px solid var(--color-border);
|
|
}
|
|
.detail-item .label { color: var(--color-text-muted); }
|
|
.detail-item .value { color: var(--color-text-dark); font-weight: 600; text-align: right; }
|
|
|
|
.vision-grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 40px;
|
|
flex-grow: 1;
|
|
margin-bottom: 15px;
|
|
}
|
|
.vision-image {
|
|
background-image: url('https://images.unsplash.com/photo-1626704359446-0de90350b4e7?q=80&w=736&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
|
|
background-size: cover;
|
|
background-position: center;
|
|
}
|
|
.vision-text h3 {
|
|
font-size: 1.5rem;
|
|
font-weight: 700;
|
|
color: var(--color-dark);
|
|
margin-bottom: 15px;
|
|
}
|
|
.vision-text p {
|
|
font-size: 0.9rem;
|
|
line-height: 1.7;
|
|
color: var(--color-text-muted);
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.gallery-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
grid-template-rows: 150px 150px 150px;
|
|
gap: 15px;
|
|
flex-grow: 1;
|
|
padding-top: 5px;
|
|
}
|
|
.gallery-item {
|
|
background-size: cover;
|
|
background-position: center;
|
|
position: relative;
|
|
display: flex;
|
|
align-items: flex-end;
|
|
color: var(--color-light);
|
|
padding: 12px;
|
|
}
|
|
.gallery-item::after {
|
|
content: ''; position: absolute; top:0; left: 0; width: 100%; height: 100%;
|
|
background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
|
|
}
|
|
.gallery-item span { font-weight: 600; z-index: 2; font-size: 0.8rem; }
|
|
.g-item-1 { grid-column: 1 / 3; grid-row: 1 / 2; background-image: url('https://images.unsplash.com/photo-1616046229478-9901c5536a45?ixlib=rb-4.0.3&q=85&fm=jpg&crop=entropy&cs=srgb&w=800'); }
|
|
.g-item-2 { grid-column: 3 / 4; grid-row: 1 / 3; background-image: url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?ixlib=rb-4.0.3&q=85&fm=jpg&crop=entropy&cs=srgb&w=800'); }
|
|
.g-item-3 { grid-column: 1 / 2; grid-row: 2 / 4; background-image: url('https://images.unsplash.com/photo-1600121848594-d8644e57abab?ixlib=rb-4.0.3&q=85&fm=jpg&crop=entropy&cs=srgb&w=800'); }
|
|
.g-item-4 { grid-column: 2 / 3; grid-row: 2 / 3; background-image: url('https://images.unsplash.com/photo-1595526114035-0d45ed16433d?ixlib=rb-4.0.3&q=85&fm=jpg&crop=entropy&cs=srgb&w=800'); }
|
|
.g-item-5 { grid-column: 2 / 4; grid-row: 3 / 4; background-image: url('https://images.unsplash.com/photo-1512918728675-ed5a71a580a9?ixlib=rb-4.0.3&q=85&fm=jpg&crop=entropy&cs=srgb&w=800'); }
|
|
|
|
.amenities-intro {
|
|
font-size: 0.9rem;
|
|
line-height: 1.7;
|
|
color: var(--color-text-muted);
|
|
margin: 8px 0 15px 0;
|
|
}
|
|
.page4-grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1.2fr;
|
|
gap: 40px;
|
|
flex-grow: 1;
|
|
margin-bottom: 20px;
|
|
}
|
|
.page4-image {
|
|
background-image: url('https://plus.unsplash.com/premium_photo-1675745330187-a6f001a21abe?q=80&w=687&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
|
|
background-size: cover;
|
|
background-position: center;
|
|
min-height: 100%;
|
|
border: 4px solid var(--color-accent-green);
|
|
}
|
|
.page4-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
}
|
|
.amenities-list-p4 {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0 0 20px 0;
|
|
column-count: 1;
|
|
column-gap: 20px;
|
|
}
|
|
.amenities-list-p4 li {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
margin-bottom: 12px;
|
|
font-weight: 500;
|
|
font-size: 0.8rem;
|
|
-webkit-column-break-inside: avoid;
|
|
page-break-inside: avoid;
|
|
break-inside: avoid;
|
|
}
|
|
.amenities-list-p4 i {
|
|
font-size: 0.8rem;
|
|
color: var(--color-accent-green);
|
|
margin-right: 10px;
|
|
width: 15px;
|
|
margin-top: 2px;
|
|
}
|
|
|
|
.back-button {
|
|
position: fixed;
|
|
top: 20px;
|
|
left: 20px;
|
|
background: rgba(255,255,255,0.9);
|
|
color: #333;
|
|
padding: 10px 20px;
|
|
border-radius: 25px;
|
|
text-decoration: none;
|
|
font-weight: 500;
|
|
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
|
|
backdrop-filter: blur(10px);
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.back-button:hover {
|
|
background: white;
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 6px 20px rgba(0,0,0,0.15);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<a href="template-preview.html" class="back-button">
|
|
<i class="fa-solid fa-arrow-left"></i> Back to Templates
|
|
</a>
|
|
|
|
<div class="brochure-page cover-page">
|
|
<div class="cover-overlay"></div>
|
|
<div class="cover-content">
|
|
<div class="subtitle">An Urban Oasis</div>
|
|
<h1 class="main-title">THE VERTICE</h1>
|
|
<div class="address">18 Skyline Avenue, Metropolis Centre, MC 90210</div>
|
|
</div>
|
|
<div class="cover-footer">
|
|
<span>Residences Starting from $1,200,000</span>
|
|
<span>Ref ID: VP-2025-001</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="brochure-page">
|
|
<div class="page-container">
|
|
<header class="page-header">
|
|
<h1 class="page-title">Elevated <span>Living</span></h1>
|
|
<span class="page-subtitle">Discover Your Sanctuary in the Sky</span>
|
|
</header>
|
|
<main class="vision-grid">
|
|
<div class="vision-text">
|
|
<h3>Where Design Meets Desire.</h3>
|
|
<p>The Vertice is not just a building; it's a bold statement on modern urban living. Conceived for the discerning individual, it offers a unique blend of architectural prowess, bespoke interiors, and an unparalleled lifestyle experience right in the heart of the city.</p>
|
|
<p>Every residence is a testament to quality, featuring panoramic city views from floor-to-ceiling windows, intelligent home systems, and finishes selected from the finest materials around the globe. This is more than a home; it's a new perspective.</p>
|
|
</div>
|
|
<div class="vision-image"></div>
|
|
</main>
|
|
<footer class="page-footer-bar">
|
|
<span class="property-name">THE VERTICE</span>
|
|
<span>Page 02 / 06</span>
|
|
</footer>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="brochure-page">
|
|
<div class="page-container">
|
|
<header class="page-header">
|
|
<h1 class="page-title">Exquisite <span>Interiors</span></h1>
|
|
<span class="page-subtitle">A Canvas for Your Life</span>
|
|
</header>
|
|
<main class="gallery-grid">
|
|
<div class="gallery-item g-item-1"><span>Open-Concept Living Space</span></div>
|
|
<div class="gallery-item g-item-2"><span>Master Bedroom Suite</span></div>
|
|
<div class="gallery-item g-item-3"><span>Gourmet Chef's Kitchen</span></div>
|
|
<div class="gallery-item g-item-4"><span>Spa-Inspired Bathroom</span></div>
|
|
<div class="gallery-item g-item-5"><span>Private Balcony Views</span></div>
|
|
</main>
|
|
<footer class="page-footer-bar">
|
|
<span class="property-name">THE VERTICE</span>
|
|
<span>Page 03 / 06</span>
|
|
</footer>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</body>
|
|
</html>
|
|
|