Design a website UI mockup (HTML/CSS) for a luxury car dealership showroom. The site should feel like walking into a high-end showroom — prestigious, sleek, and immersive. **Requirements:** - **Hero section** with a full-width showcase of a featured car (e.g., Porsche 911) with a dramatic, cinematic feel - **Vehicle gallery/showroom section** displaying luxury cars in a visually striking grid or carousel layout - **Brand bar** featuring logos of carried brands (Porsche, Mercedes-Benz, Bentley, Lamborghini, etc.) - **Call-to-action sections** for booking a test drive and contacting the dealership - **Color palette**: Dark/black backgrounds with gold, silver, and metallic accent colors — think luxury, shine, and sophistication - **Typography**: Elegant, modern fonts that convey premium quality - **Visual effects**: Subtle shimmer/gradient effects on gold and silver elements to create a metallic, reflective feel - Use placeholder images (describe what should go where) or solid color blocks for car images - Responsive-friendly structure, but focus on the desktop experience first - Single-page layout
Of course. Here is a single-page UI mockup for a luxury car dealership website, designed to be sleek, prestigious, and immersive.
This mockup uses HTML and embedded CSS to create a self-contained file. It incorporates a dark theme with gold and silver accents, elegant typography, and subtle visual effects to evoke a high-end showroom feel.
Key Design Elements:
- Color Palette: A sophisticated dark background (
#0a0a0a) allows the gold and silver metallic accents to stand out. - Typography:
Cormorant Garamondis used for headings to convey classic elegance, whileLatois used for body text for its modern readability. - Metallic Effects: CSS
linear-gradientis used on text and borders to simulate a metallic sheen. - Shimmer Animation: A subtle light-sweep animation is applied to the primary call-to-action button on hover, enhancing the sense of luxury and interactivity.
- Layout: The design uses Flexbox and CSS Grid for a clean, modern, and responsive structure.
Luxury Showroom UI Mockup
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Prestige Motors - Luxury Showroom</title>
<style>
/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Lato:wght@300;400;700&display=swap');
/* --- CSS Variables (Theme) --- */
:root {
--color-dark-primary: #0a0a0a;
--color-dark-secondary: #141414;
--color-light: #f5f5f5;
--color-gold: #c09f6b;
--color-silver: #c0c0c0;
--color-text-muted: #888;
--font-heading: 'Cormorant Garamond', serif;
--font-body: 'Lato', sans-serif;
--gradient-gold: linear-gradient(145deg, #d4af37, #c09f6b, #b28c4b);
--gradient-silver: linear-gradient(145deg, #e0e0e0, #c0c0c0, #a9a9a9);
}
/* --- Base & Reset Styles --- */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
font-family: var(--font-body);
background-color: var(--color-dark-primary);
color: var(--color-light);
line-height: 1.6;
}
h1, h2, h3 {
font-family: var(--font-heading);
font-weight: 700;
line-height: 1.2;
text-transform: uppercase;
letter-spacing: 1.5px;
}
h1 { font-size: 4rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
p {
font-weight: 300;
margin-bottom: 1rem;
}
a {
color: var(--color-gold);
text-decoration: none;
transition: color 0.3s ease;
}
a:hover {
color: #fff;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}
section {
padding: 6rem 0;
}
.section-title {
text-align: center;
margin-bottom: 4rem;
color: var(--color-light);
}
.section-title::after {
content: '';
display: block;
width: 80px;
height: 2px;
background: var(--gradient-gold);
margin: 1rem auto 0;
}
/* --- Button Styles --- */
.btn {
display: inline-block;
padding: 12px 30px;
font-family: var(--font-body);
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
border: 2px solid transparent;
cursor: pointer;
transition: all 0.4s ease;
position: relative;
overflow: hidden;
}
.btn-gold {
background: var(--gradient-gold);
color: var(--color-dark-primary);
border-color: var(--color-gold);
}
.btn-outline {
background: transparent;
color: var(--color-light);
border-color: var(--color-gold);
}
.btn-outline:hover {
background-color: var(--color-gold);
color: var(--color-dark-primary);
}
/* Shimmer effect for primary CTA */
.btn-gold::after {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: rgba(255, 255, 255, 0.2);
transform: rotate(45deg);
transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.btn-gold:hover::after {
transform: translate(50%, 50%) rotate(45deg);
}
/* --- Header --- */
.main-header {
position: fixed;
top: 0;
left: 0;
width: 100%;
padding: 1.5rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
z-index: 1000;
background: rgba(10, 10, 10, 0.5);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.logo {
font-family: var(--font-heading);
font-size: 1.8rem;
font-weight: 700;
letter-spacing: 2px;
color: var(--color-light);
}
.logo span {
background: var(--gradient-gold);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-fill-color: transparent;
}
.nav-links ul {
display: flex;
list-style: none;
}
.nav-links li {
margin-left: 2.5rem;
}
.nav-links a {
color: var(--color-light);
text-transform: uppercase;
font-weight: 400;
letter-spacing: 1px;
font-size: 0.9rem;
position: relative;
}
.nav-links a::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 1px;
background: var(--color-gold);
transition: width 0.3s ease;
}
.nav-links a:hover::after {
width: 100%;
}
/* --- Hero Section --- */
#hero {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: #fff;
padding: 0;
position: relative;
background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://placehold.co/1920x1080/000000/333333?text=Dramatic+Porsche+911') no-repeat center center/cover;
/* Placeholder for a dramatic, low-light shot of a Porsche 911 */
}
.hero-content {
max-width: 800px;
}
.hero-content h1 {
margin-bottom: 1rem;
text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}
.hero-content p {
font-size: 1.2rem;
margin-bottom: 2rem;
font-weight: 300;
}
/* --- Brand Bar Section --- */
#brands {
background-color: var(--color-dark-secondary);
padding: 3rem 0;
}
.brand-logos {
display: flex;
justify-content: space-around;
align-items: center;
filter: grayscale(100%) brightness(3);
opacity: 0.6;
transition: all 0.4s ease;
}
#brands:hover .brand-logos {
filter: grayscale(0) brightness(1);
opacity: 1;
}
.brand-logos span {
font-family: var(--font-heading);
font-size: 1.5rem;
letter-spacing: 2px;
/* In a real site, these would be <img> or <svg> tags */
}
/* --- Showroom Section --- */
#showroom {
background-color: var(--color-dark-primary);
}
.gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 2rem;
}
.car-card {
background-color: var(--color-dark-secondary);
overflow: hidden;
border: 1px solid #222;
transition: transform 0.4s ease, border-color 0.4s ease;
}
.car-card:hover {
transform: translateY(-10px);
border-color: var(--color-gold);
}
.car-image {
height: 250px;
background-color: #333;
background-size: cover;
background-position: center;
}
.car-info {
padding: 1.5rem;
}
.car-info h3 {
color: var(--color-light);
margin-bottom: 0.5rem;
}
.car-info p {
color: var(--color-text-muted);
font-size: 0.9rem;
margin-bottom: 0;
}
/* --- CTA Test Drive Section --- */
#cta-test-drive {
padding: 8rem 0;
text-align: center;
background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://placehold.co/1920x800/000000/333333?text=Luxury+Car+Interior') no-repeat center center/cover;
/* Placeholder for a detailed shot of a luxury car's interior cockpit */
}
#cta-test-drive h2 {
margin-bottom: 2rem;
}
/* --- Footer --- */
footer {
background-color: var(--color-dark-secondary);
padding: 4rem 0 2rem;
color: var(--color-text-muted);
}
.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-bottom: 3rem;
}
.footer-content h4 {
font-family: var(--font-heading);
color: var(--color-light);
text-transform: uppercase;
letter-spacing: 1px;
font-size: 1.1rem;
margin-bottom: 1rem;
position: relative;
}
.footer-content h4::after {
content: '';
position: absolute;
left: 0;
bottom: -5px;
height: 2px;
width: 30px;
background: var(--gradient-gold);
}
.footer-content ul {
list-style: none;
}
.footer-content li {
margin-bottom: 0.5rem;
}
.footer-content a {
color: var(--color-text-muted);
}
.footer-content a:hover {
color: var(--color-gold);
}
.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid #222;
font-size: 0.9rem;
}
</style>
</head>
<body>
<!-- === HEADER === -->
<header class="main-header">
<a href="#hero" class="logo">Prestige<span>Motors</span></a>
<nav class="nav-links">
<ul>
<li><a href="#showroom">Showroom</a></li>
<li><a href="#cta-test-drive">Test Drive</a></li>
<li><a href="#footer">Contact</a></li>
</ul>
</nav>
</header>
<main>
<!-- === HERO SECTION === -->
<section id="hero">
<div class="hero-content">
<h1>The Legend, Redefined</h1>
<p>Experience the 2024 Porsche 911. Uncompromising performance meets timeless design.</p>
<a href="#showroom" class="btn btn-gold">Explore The Collection</a>
</div>
</section>
<!-- === BRAND BAR === -->
<section id="brands">
<div class="container">
<div class="brand-logos">
<span>PORSCHE</span>
<span>MERCEDES-BENZ</span>
<span>BENTLEY</span>
<span>LAMBORGHINI</span>
<span>ROLLS-ROYCE</span>
</div>
</div>
</section>
<!-- === SHOWROOM SECTION === -->
<section id="showroom">
<div class="container">
<h2 class="section-title">Our Curated Showroom</h2>
<div class="gallery-grid">
<!-- Car 1 -->
<div class="car-card">
<div class="car-image" style="background-image: url('https://placehold.co/600x400/111111/555555?text=Bentley+Continental+GT');"></div>
<div class="car-info">
<h3>Bentley Continental GT</h3>
<p>Grand Touring, Redefined.</p>
</div>
</div>
<!-- Car 2 -->
<div class="car-card">
<div class="car-image" style="background-image: url('https://placehold.co/600x400/111111/555555?text=Lamborghini+Huracan');"></div>
<div class="car-info">
<h3>Lamborghini Huracán</h3>
<p>Instinctive Technology.</p>
</div>
</div>
<!-- Car 3 -->
<div class="car-card">
<div class="car-image" style="background-image: url('https://placehold.co/600x400/111111/555555?text=Mercedes-AMG+G63');"></div>
<div class="car-info">
<h3>Mercedes-AMG G 63</h3>
<p>Stronger Than Time.</p>
</div>
</div>
<!-- Car 4 -->
<div class="car-card">
<div class="car-image" style="background-image: url('https://placehold.co/600x400/111111/555555?text=Porsche+Taycan');"></div>
<div class="car-info">
<h3>Porsche Taycan Turbo S</h3>
<p>Soul, Electrified.</p>
</div>
</div>
<!-- Car 5 -->
<div class="car-card">
<div class="car-image" style="background-image: url('https://placehold.co/600x400/111111/555555?text=Rolls-Royce+Ghost');"></div>
<div class="car-info">
<h3>Rolls-Royce Ghost</h3>
<p>Post-Opulent Design.</p>
</div>
</div>
<!-- Car 6 -->
<div class="car-card">
<div class="car-image" style="background-image: url('https://placehold.co/600x400/111111/555555?text=Porsche+911+GT3');"></div>
<div class="car-info">
<h3>Porsche 911 GT3 RS</h3>
<p>Born on the Racetrack.</p>
</div>
</div>
</div>
</div>
</section>
<!-- === CTA TEST DRIVE SECTION === -->
<section id="cta-test-drive">
<div class="container">
<h2>Feel The Power In Your Hands</h2>
<p>Your journey into unparalleled performance begins with a test drive. <br>Schedule your private appointment today.</p>
<a href="#" class="btn btn-gold">Book A Test Drive</a>
</div>
</section>
</main>
<!-- === FOOTER === -->
<footer id="footer">
<div class="container">
<div class="footer-content">
<div class="footer-about">
<h4>Prestige<span>Motors</span></h4>
<p>The premier destination for the world's most sought-after luxury and performance vehicles.</p>
</div>
<div class="footer-contact">
<h4>Contact Us</h4>
<ul>
<li>123 Luxury Lane, Beverly Hills, CA 90210</li>
<li>(310) 555-0189</li>
<li>concierge@prestigemotors.example</li>
</ul>
</div>
<div class="footer-hours">
<h4>Showroom Hours</h4>
<ul>
<li>Monday - Friday: 9am - 7pm</li>
<li>Saturday: 10am - 6pm</li>
<li>Sunday: By Appointment</li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 Prestige Motors. All Rights Reserved.</p>
</div>
</div>
</footer>
</body>
</html>
Comments