Real / index.html
ltom2120's picture
Create index.html
a77f9fe verified
Raw
History Blame Contribute Delete
9.89 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Apex Horizon | Premium Luxury Real Estate</title>
<!-- Premium Google Fonts Integration -->
<link rel="preconnect" href="https://googleapis.com">
<link rel="preconnect" href="https://gstatic.com" crossorigin>
<link href="https://googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
:root {
--bg-color: #faf9f6; /* Premium alabaster warm white */
--card-bg: #ffffff;
--primary-luxury: #1a2421; /* Deep high-end editorial green-black */
--gold-accent: #c5a880; /* Refined champagne gold */
--gold-hover: #b3956d;
--text-main: #2b3331;
--text-muted: #6e7875;
--border-color: #e5e2dc;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background-color: var(--bg-color);
color: var(--text-main);
font-family: 'Plus Jakarta Sans', sans-serif;
line-height: 1.7;
letter-spacing: -0.01em;
}
h1, h2, h3, h4, .logo {
font-family: 'Cormorant Garamond', serif;
font-weight: 500;
color: var(--primary-luxury);
}
/* Luxury Minimalist Navbar */
nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1.8rem 8%;
background-color: rgba(250, 249, 246, 0.85);
position: sticky;
top: 0;
z-index: 100;
border-bottom: 1px solid var(--border-color);
backdrop-filter: blur(20px);
}
.logo {
font-size: 2rem;
font-weight: 600;
letter-spacing: 0.05em;
text-transform: uppercase;
text-decoration: none;
color: var(--primary-luxury);
}
.logo span {
color: var(--gold-accent);
font-family: 'Plus Jakarta Sans', sans-serif;
font-size: 0.8rem;
vertical-align: super;
margin-left: 2px;
}
.nav-links a {
color: var(--primary-luxury);
text-decoration: none;
margin-left: 3rem;
font-weight: 500;
font-size: 0.95rem;
letter-spacing: 0.05em;
text-transform: uppercase;
transition: color 0.3s;
}
.nav-links a:hover {
color: var(--gold-accent);
}
/* High-End Architecture Hero Section */
.hero {
position: relative;
min-height: 85vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: 4rem 8%;
background: linear-gradient(rgba(26, 36, 33, 0.4), rgba(26, 36, 33, 0.2)),
url('https://unsplash.com') center/cover no-repeat fixed;
}
.hero-content {
background-color: rgba(255, 255, 255, 0.92);
padding: 4.5rem 4rem;
max-width: 850px;
border-radius: 4px;
box-shadow: 0 30px 60px rgba(26, 36, 33, 0.08);
border: 1px solid rgba(197, 168, 128, 0.3);
}
.hero h1 {
font-size: 4rem;
line-height: 1.1;
margin-bottom: 1.5rem;
}
.hero p {
color: var(--text-muted);
font-size: 1.2rem;
max-width: 600px;
margin: 0 auto 2.5rem auto;
font-weight: 300;
}
.cta-btn {
background-color: var(--primary-luxury);
color: #ffffff;
text-decoration: none;
padding: 1.1rem 2.8rem;
border-radius: 0px; /* Sophisticated sharp edges */
font-weight: 600;
font-size: 0.9rem;
letter-spacing: 0.15em;
text-transform: uppercase;
transition: all 0.3s ease;
border: 1px solid var(--primary-luxury);
display: inline-block;
}
.cta-btn:hover {
background-color: transparent;
color: var(--primary-luxury);
border: 1px solid var(--primary-luxury);
}
/* Relationship Boutique Section */
.philosophy {
padding: 8rem 8%;
background-color: #ffffff;
text-align: center;
border-bottom: 1px solid var(--border-color);
}
.section-tag {
color: var(--gold-accent);
text-transform: uppercase;
font-weight: 600;
font-size: 0.85rem;
letter-spacing: 0.2rem;
margin-bottom: 1rem;
display: block;
}
.philosophy h2 {
font-size: 3.2rem;
margin-bottom: 2rem;
line-height: 1.2;
}
.philosophy p {
max-width: 750px;
margin: 0 auto 5rem auto;
font-size: 1.25rem;
color: var(--text-muted);
font-family: 'Cormorant Garamond', serif;
font-style: italic;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 3.5rem;
max-width: 1200px;
margin: 0 auto;
}
.feature-card {
padding: 3rem 2rem;
background-color: var(--bg-color);
border-radius: 0px;
border-top: 2px solid var(--gold-accent);
transition: transform 0.4s ease;
}
.feature-card:hover {
transform: translateY(-5px);
}
.feature-card h3 {
margin-bottom: 1rem;
font-size: 1.6rem;
letter-spacing: 0.02em;
}
.feature-card p {
font-family: 'Plus Jakarta Sans', sans-serif;
font-style: normal;
font-size: 0.95rem;
color: var(--text-muted);
line-height: 1.6;
margin-bottom: 0;
}
/* Team / Workers Section */
.team-section {
padding: 8rem 8%;
background-color: var(--bg-color);
border-bottom: 1px solid var(--border-color);
}
.team-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 3rem;
max-width: 1200px;
margin: 4rem auto 0 auto;
}
.team-card {
background-color: var(--card-bg);
border: 1px solid var(--border-color);
overflow: hidden;
transition: border-color 0.3s ease;
display: flex;
flex-direction: column;
}
.team-card:hover {
border-color: var(--gold-accent);
}
.team-img-wrapper {
width: 100%;
height: 340px;
overflow: hidden;
}
.team-img {
width: 100%;
height: 100%;
object-fit: cover;
filter: grayscale(20%);
transition: transform 0.4s ease;
}
.team-card:hover .team-img {
transform: scale(1.03);
filter: grayscale(0%);
}
.team-info {
padding: 2rem;
flex-grow: 1;
display: flex;
flex-direction: column;
}
.team-info h4 {
font-size: 1.7rem;
margin-bottom: 0.25rem;
}
.team-role {
font-size: 0.8rem;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--gold-accent);
font-weight: 600;
margin-bottom: 1rem;
}
.team-bio {
font-size: 0.95rem;
color: var(--text-muted);
line-height: 1.6;
margin-bottom: 1.5rem;
}
.team-contact {
border-top: 1px solid var(--border-color);
padding-top: 1.2rem;
margin-top: auto;
font-size: 0.85rem;
}
.team-contact a {
color: var(--primary-luxury);
text-decoration: none;
display: block;
margin-bottom: 0.4rem;
transition: color 0.2s;
}
.team-contact a:hover {
color: var(--gold-accent);
}
.team-contact span {
color: var(--gold-accent);
margin-right: 6px;
}
/* Premium Curated Properties Grid */
.listings-container {
padding: 8rem 8%;
background-color: #ffffff;
border-bottom: 1px solid var(--border-color);
}
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
gap: 3rem;
margin-top: 4rem;
}
.card {
background-color: var(--card-bg);
border-radius: 0px;
overflow: hidden;
border: 1px solid var(--border-color);
transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.card:hover {
transform: translateY(-8px);
box-shadow: 0 20px 40px rgba(26, 36, 33, 0.04);
border-color: var(--gold-accent);
}
.img-wrapper {
overflow: hidden;
position: relative;
}
.card-img {
width: 100%;
height: 280px;
object-fit: cover;