Design a detailed homepage layout mockup for a luxury jewelry website targeting a wealthy, discerning audience. The design should feel modern yet timeless, exuding elegance and exclusivity. **Requirements:** - Provide the mockup as structured HTML/CSS (or a detailed wireframe description with exact layout, typography, and color specifications) - **Color palette**: Rich golds, silvers, deep blacks, and white/cream accents — think diamonds, precious metals, and sophistication - **Sections to include**: - Hero section with a bold headline and a stunning full-width jewelry image placeholder - Featured collections (e.g., Diamonds, Gold, Silver) - A "signature piece" spotlight section - Testimonials or brand story snippet - Newsletter signup with an exclusive feel - Elegant footer with navigation and social links - **Typography**: Use refined, high-end serif or modern sans-serif fonts appropriate for luxury branding - **Overall vibe**: Think Tiffany & Co., Cartier, or Bulgari — clean, spacious, premium feel with generous whitespace - The design should feel immersive and aspirational, as if browsing would be an experience in itself
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Aurum Luxe - Timeless Elegance in Jewelry</title>
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Inter:ital,wght@0,300..900;1,300..900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
:root {
--gold-primary: #D4AF37;
--gold-dark: #B8860B;
--silver: #C0C0C0;
--black: #0A0A0A;
--cream: #FDFDFD;
--white: #FFFFFF;
--gray-light: #A9A9A9;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
background: var(--black);
color: var(--cream);
line-height: 1.6;
overflow-x: hidden;
}
h1, h2, h3 {
font-family: 'Playfair Display', serif;
font-weight: 700;
}
a {
color: var(--cream);
text-decoration: none;
transition: color 0.3s ease;
}
a:hover {
color: var(--gold-primary);
}
/* Header */
header {
position: fixed;
top: 0;
width: 100%;
background: rgba(10, 10, 10, 0.95);
backdrop-filter: blur(10px);
z-index: 1000;
padding: 1rem 0;
}
nav {
max-width: 1400px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 2rem;
}
.logo {
font-family: 'Playfair Display', serif;
font-size: 1.8rem;
font-weight: 900;
color: var(--gold-primary);
}
.nav-links {
display: flex;
list-style: none;
gap: 2rem;
}
.nav-links li a {
font-weight: 400;
text-transform: uppercase;
letter-spacing: 1px;
font-size: 0.9rem;
}
.cta-btn {
background: var(--gold-primary);
color: var(--black);
padding: 0.8rem 1.5rem;
border-radius: 0;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
transition: all 0.3s ease;
}
.cta-btn:hover {
background: var(--gold-dark);
transform: translateY(-2px);
}
/* Hero */
#hero {
height: 100vh;
background: linear-gradient(rgba(10,10,10,0.4), rgba(10,10,10,0.4)), url('https://images.unsplash.com/photo-1516473798545-3aaacf3bbdf9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&w=1920&auto=format&fit=crop') center/cover;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 0 2rem;
}
#hero h1 {
font-size: clamp(3rem, 8vw, 6rem);
margin-bottom: 1rem;
letter-spacing: 2px;
}
#hero p {
font-size: 1.4rem;
font-weight: 300;
max-width: 600px;
margin-bottom: 3rem;
}
/* Sections */
section {
padding: 8rem 2rem;
max-width: 1400px;
margin: 0 auto;
}
.section-title {
text-align: center;
font-size: clamp(2.5rem, 5vw, 4rem);
margin-bottom: 4rem;
color: var(--cream);
}
/* Featured Collections */
#collections {
background: var(--black);
}
.collections-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 3rem;
}
.collection-card {
position: relative;
height: 400px;
background-size: cover;
background-position: center;
display: flex;
flex-direction: column;
justify-content: flex-end;
padding: 2rem;
border: 1px solid var(--silver);
transition: all 0.4s ease;
overflow: hidden;
}
.collection-card:hover {
transform: translateY(-10px);
border-color: var(--gold-primary);
}
.collection-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(transparent, rgba(10,10,10,0.8));
}
.collection-card h3 {
font-size: 2rem;
z-index: 1;
position: relative;
}
.collection-card p {
z-index: 1;
position: relative;
opacity: 0.9;
}
/* Images for collections (placeholders) */
#diamonds { background-image: linear-gradient(rgba(10,10,10,0.5), rgba(10,10,10,0.5)), url('https://images.unsplash.com/photo-1574179208501-42e7446b9046?w=600&auto=format&fit=crop'); }
#gold { background-image: linear-gradient(rgba(10,10,10,0.5), rgba(10,10,10,0.5)), url('https://images.unsplash.com/photo-1551028719-00167b16eac5?w=600&auto=format&fit=crop'); }
#silver { background-image: linear-gradient(rgba(10,10,10,0.5), rgba(10,10,10,0.5)), url('https://images.unsplash.com/photo-1581291518857-4e27b48ff24e?w=600&auto=format&fit=crop'); }
/* Signature Piece */
#signature {
text-align: center;
background: var(--cream);
color: var(--black);
}
#signature img {
max-width: 600px;
width: 100%;
height: auto;
margin-bottom: 2rem;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
#signature .price {
font-size: 2.5rem;
font-family: 'Playfair Display', serif;
color: var(--gold-primary);
margin-bottom: 1rem;
}
/* Brand Story / Testimonials */
#story {
background: var(--black);
}
.testimonial {
max-width: 800px;
margin: 0 auto;
text-align: center;
font-style: italic;
font-size: 1.3rem;
font-weight: 300;
}
.testimonial-author {
margin-top: 2rem;
font-weight: 600;
color: var(--silver);
font-style: normal;
}
/* Newsletter */
#newsletter {
background: var(--black);
text-align: center;
}
#newsletter h2 {
color: var(--cream);
}
.newsletter-form {
max-width: 500px;
margin: 3rem auto 0;
display: flex;
gap: 1rem;
}
.newsletter-form input {
flex: 1;
padding: 1.2rem;
background: rgba(255,255,255,0.1);
border: 1px solid var(--silver);
color: var(--cream);
font-size: 1rem;
border-radius: 0;
}
.newsletter-form input::placeholder {
color: var(--gray-light);
}
.newsletter-form button {
background: var(--gold-primary);
color: var(--black);
padding: 1.2rem 2.5rem;
border: none;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
cursor: pointer;
transition: all 0.3s ease;
}
.newsletter-form button:hover {
background: var(--gold-dark);
}
/* Footer */
footer {
background: var(--black);
padding: 4rem 2rem 2rem;
border-top: 1px solid var(--silver);
}
.footer-content {
max-width: 1400px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 3rem;
}
.footer-section h4 {
color: var(--gold-primary);
margin-bottom: 1rem;
font-family: 'Playfair Display', serif;
}
.footer-section ul {
list-style: none;
}
.footer-section ul li {
margin-bottom: 0.5rem;
}
.social-links {
display: flex;
gap: 1rem;
}
.social-links a {
font-size: 1.5rem;
color: var(--silver);
transition: color 0.3s ease;
}
.social-links a:hover {
color: var(--gold-primary);
}
.footer-bottom {
text-align: center;
margin-top: 3rem;
padding-top: 2rem;
border-top: 1px solid var(--silver);
color: var(--gray-light);
font-size: 0.9rem;
}
/* Responsive */
@media (max-width: 768px) {
nav {
padding: 0 1rem;
}
.nav-links {
display: none; /* Hamburger in production */
}
.newsletter-form {
flex-direction: column;
}
section {
padding: 4rem 1rem;
}
}
/* Smooth scroll */
html {
scroll-behavior: smooth;
}
</style>
</head>
<body>
<header>
<nav>
<div class="logo">Aurum Luxe</div>
<ul class="nav-links">
<li><a href="#collections">Collections</a></li>
<li><a href="#signature">Signature</a></li>
<li><a href="#story">Story</a></li>
<li><a href="#">Contact</a></li>
</ul>
<a href="#" class="cta-btn">Shop Now</a>
</nav>
</header>
<main>
<section id="hero">
<h1>Timeless Elegance</h1>
<p>Discover exquisite jewelry crafted for the discerning few. Where every piece tells a story of unparalleled craftsmanship.</p>
<a href="#collections" class="cta-btn">Explore Collections</a>
</section>
<section id="collections">
<h2 class="section-title">Featured Collections</h2>
<div class="collections-grid">
<div class="collection-card" id="diamonds">
<h3>Diamonds</h3>
<p>Radiant brilliance, forever flawless.</p>
</div>
<div class="collection-card" id="gold">
<h3>Gold</h3>
<p>Rich heritage, molten luxury.</p>
</div>
<div class="collection-card" id="silver">
<h3>Silver</h3>
<p>Modern poise, enduring grace.</p>
</div>
</div>
</section>
<section id="signature">
<h2 class="section-title">Signature Piece</h2>
<img src="https://images.unsplash.com/photo-1608043152266-b6b5644b99f5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&w=800&auto=format&fit=crop" alt="Signature Necklace">
<h3>The Eternal Cascade Necklace</h3>
<div class="price">$24,500</div>
<a href="#" class="cta-btn">View Details</a>
</section>
<section id="story">
<blockquote class="testimonial">
"Aurum Luxe pieces are not mere adornments; they are heirlooms that whisper legacy with every glance."
</blockquote>
<div class="testimonial-author">
— Elena Voss, Renowned Collector
</div>
</section>
<section id="newsletter">
<h2 class="section-title">Join the Elite Circle</h2>
<p style="max-width: 600px; margin: 0 auto 3rem; font-size: 1.2rem; opacity: 0.9;">Receive exclusive previews, private sales, and bespoke invitations.</p>
<form class="newsletter-form">
<input type="email" placeholder="Enter your email" required>
<button type="submit">Subscribe</button>
</form>
</section>
</main>
<footer>
<div class="footer-content">
<div class="footer-section">
<h4>Aurum Luxe</h4>
<p>Timeless jewelry for extraordinary lives.</p>
</div>
<div class="footer-section">
<h4>Quick Links</h4>
<ul>
<li><a href="#">Collections</a></li>
<li><a href="#">Signature Pieces</a></li>
<li><a href="#">Bespoke Services</a></li>
<li><a href="#">Care & Repair</a></li>
</ul>
</div>
<div class="footer-section">
<h4>Customer Care</h4>
<ul>
<li><a href="#">Contact Us</a></li>
<li><a href="#">Shipping</a></li>
<li><a href="#">Returns</a></li>
<li><a href="#">FAQ</a></li>
</ul>
</div>
<div class="footer-section">
<h4>Follow Us</h4>
<div class="social-links">
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-facebook"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-pinterest"></i></a>
</div>
</div>
</div>
<div class="footer-bottom">
© 2024 Aurum Luxe. All rights reserved. | Crafted with precision.
</div>
</footer>
</body>
</html>
Quick Notes
- Copy-paste ready: Save as
.htmland open in a browser. Uses Unsplash placeholders for stunning jewelry visuals. - Responsive: Adapts to mobile/desktop with grid/flexbox.
- Luxury Vibe: Generous whitespace, smooth transitions, fixed blurred nav, gold accents on black/cream. Fonts: Playfair Display (serif headlines), Inter (sans-serif body).
- Colors: Gold (#D4AF37/#B8860B), Silver (#C0C0C0), Black (#0A0A0A), Cream (#FDFDFD).
- Enhancements: Add JS for form submission, smooth scroll animations, or a lightbox in production. Hero image is a sparkling diamond necklace for immersion.
- Customization: Swap images/links as needed. Matches Tiffany/Cartier aesthetic—clean, aspirational, exclusive.
Comments