Luxury Car Dealership Showroom Website UI Mockup - Porsche & Premium Brands

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

0
·Anthropic·79.9s·6:06 AM·#1

Luxury Car Dealership Showroom Website

Here's a complete, single-page luxury car dealership website with a cinematic, high-end aesthetic:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Elite Motors - Luxury Car Dealership</title>
    <link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Montserrat:wght@300;400;500;600&display=swap" rel="stylesheet">
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --gold: #D4AF37;
            --silver: #C0C0C0;
            --dark-bg: #0a0a0a;
            --card-bg: #1a1a1a;
            --text-light: #f5f5f5;
            --text-muted: #b0b0b0;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--gold) 0%, #f4d03f 50%, var(--gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 2px;
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 400;
            font-size: 0.95rem;
            letter-spacing: 1px;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--gold);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 1200px;
            padding: 0 2rem;
        }

        .hero-image {
            width: 80%;
            max-width: 900px;
            height: 400px;
            margin: 0 auto 2rem;
            background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
        }

        .hero-image::after {
            content: 'PORSCHE 911 TURBO S';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: rgba(212, 175, 55, 0.3);
            letter-spacing: 3px;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--gold) 0%, #f4d03f 50%, var(--gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .hero p {
            font-size: 1.3rem;
            color: var(--text-muted);
            margin-bottom: 2rem;
            letter-spacing: 2px;
            font-weight: 300;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 3rem;
            background: linear-gradient(135deg, var(--gold) 0%, #f4d03f 100%);
            color: var(--dark-bg);
            text-decoration: none;
            font-weight: 600;
            letter-spacing: 2px;
            border-radius: 50px;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
        }

        /* Brand Bar */
        .brand-bar {
            padding: 4rem 5%;
            background: var(--card-bg);
            border-top: 1px solid rgba(212, 175, 55, 0.2);
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        }

        .brand-bar h2 {
            text-align: center;
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            margin-bottom: 3rem;
            color: var(--gold);
            letter-spacing: 2px;
        }

        .brands {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
            align-items: center;
        }

        .brand-logo {
            height: 80px;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(192, 192, 192, 0.3);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            color: var(--silver);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .brand-logo::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(192, 192, 192, 0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.5s;
        }

        .brand-logo:hover {
            border-color: var(--gold);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
        }

        .brand-logo:hover::before {
            top: 100%;
            left: 100%;
        }

        /* Showroom Section */
        .showroom {
            padding: 6rem 5%;
            background: var(--dark-bg);
        }

        .showroom-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .showroom-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--silver) 0%, #ffffff 50%, var(--silver) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .showroom-header p {
            font-size: 1.1rem;
            color: var(--text-muted);
            letter-spacing: 1px;
        }

        .vehicle-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .vehicle-card {
            background: var(--card-bg);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s;
            border: 1px solid rgba(192, 192, 192, 0.2);
            position: relative;
        }

        .vehicle-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0) 0%, rgba(212, 175, 55, 0.1) 100%);
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
        }

        .vehicle-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
            border-color: var(--gold);
        }

        .vehicle-card:hover::before {
            opacity: 1;
        }

        .vehicle-image {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: rgba(192, 192, 192, 0.3);
            position: relative;
            overflow: hidden;
        }

        .vehicle-image::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100px;
            height: 100px;
            border: 3px solid rgba(212, 175, 55, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
        }

        .vehicle-info {
            padding: 2rem;
        }

        .vehicle-info h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            margin-bottom: 0.5rem;
            color: var(--gold);
        }

        .vehicle-info .model {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 1rem;
        }

        .specs {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .spec-item {
            display: flex;
            flex-direction: column;
        }

        .spec-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--silver);
        }

        .price {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--gold);
            margin-bottom: 1rem;
        }

        .view-details {
            display: inline-block;
            padding: 0.75rem 2rem;
            background: transparent;
            color: var(--gold);
            border: 2px solid var(--gold);
            text-decoration: none;
            font-weight: 500;
            letter-spacing: 1px;
            border-radius: 50px;
            transition: all 0.3s;
        }

        .view-details:hover {
            background: var(--gold);
            color: var(--dark-bg);
        }

        /* CTA Section */
        .cta-section {
            padding: 6rem 5%;
            background: linear-gradient(135deg, var(--card-bg) 0%, #0a0a0a 100%);
            border-top: 1px solid rgba(212, 175, 55, 0.2);
        }

        .cta-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .cta-card {
            background: var(--card-bg);
            padding: 3rem;
            border-radius: 15px;
            text-align: center;
            border: 1px solid rgba(192, 192, 192, 0.2);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .cta-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
            transition: left 0.5s;
        }

        .cta-card:hover::before {
            left: 100%;
        }

        .cta-card:hover {
            border-color: var(--gold);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
        }

        .cta-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, var(--gold) 0%, #f4d03f 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }

        .cta-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--silver);
        }

        .cta-card p {
            color: var(--text-muted);
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .cta-card .cta-button {
            display: inline-block;
        }

        /* Footer */
        footer {
            background: var(--card-bg);
            padding: 3rem 5%;
            text-align: center;
            border-top: 1px solid rgba(212, 175, 55, 0.2);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        .footer-links a:hover {
            color: var(--gold);
        }

        .copyright {
            color: var(--text-muted);
            font-size: 0.85rem;
            letter-spacing: 1px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .nav-links {
                gap: 1.5rem;
                font-size: 0.85rem;
            }

            .logo {
                font-size: 1.4rem;
            }

            .vehicle-grid {
                grid-template-columns: 1fr;
            }

            .showroom-header h2 {
                font-size: 2rem;
            }
        }
    </style>
</head>
<body>
    <!-- Navigation -->
    <nav>
        <div class="logo">ELITE MOTORS</div>
        <ul class="nav-links">
            <li><a href="#showroom">SHOWROOM</a></li>
            <li><a href="#brands">BRANDS</a></li>
            <li><a href="#contact">CONTACT</a></li>
            <li><a href="#test-drive">TEST DRIVE</a></li>
        </ul>
    </nav>

    <!-- Hero Section -->
    <section class="hero">
        <div class="hero-content">
            <div class="hero-image">
                <!-- Placeholder for hero car image: Full-width dramatic shot of Porsche 911 Turbo S, cinematic lighting, dark background -->
            </div>
            <h1>LEGENDARY PERFORMANCE</h1>
            <p>EXPERIENCE THE PINNACLE OF AUTOMOTIVE EXCELLENCE</p>
            <a href="#showroom" class="cta-button">EXPLORE COLLECTION</a>
        </div>
    </section>

    <!-- Brand Bar -->
    <section class="brand-bar" id="brands">
        <h2>REPRESENTING THE WORLD'S FINEST</h2>
        <div class="brands">
            <div class="brand-logo">PORSCHE</div>
            <div class="brand-logo">MERCEDES</div>
            <div class="brand-logo">BENTLEY</div>
            <div class="brand-logo">LAMBORGHINI</div>
            <div class="brand-logo">FERRARI</div>
            <div class="brand-logo">ASTON MARTIN</div>
        </div>
    </section>

    <!-- Showroom Section -->
    <section class="showroom" id="showroom">
        <div class="showroom-header">
            <h2>CURATED COLLECTION</h2>
            <p>Discover our handpicked selection of the world's most prestigious automobiles</p>
        </div>

        <div class="vehicle-grid">
            <!-- Vehicle Card 1 -->
            <div class="vehicle-card">
                <div class="vehicle-image">PORSCHE 911</div>
                <div class="vehicle-info">
                    <h3>Porsche</h3>
                    <div class="model">911 Turbo S</div>
                    <div class="specs">
                        <div class="spec-item">
                            <span class="spec-label">Power</span>
                            <span>640 HP</span>
                        </div>
                        <div class="spec-item">
                            <span class="spec-label">0-60 MPH</span>
                            <span>2.6s</span>
                        </div>
                        <div class="spec-item">
                            <span class="spec-label">Year</span>
                            <span>2024</span>
                        </div>
                    </div>
                    <div class="price">$230,400</div>
                    <a href="#" class="view-details">VIEW DETAILS</a>
                </div>
            </div>

            <!-- Vehicle Card 2 -->
            <div class="vehicle-card">
                <div class="vehicle-image">LAMBORGHINI</div>
                <div class="vehicle-info">
                    <h3>Lamborghini</h3>
                    <div class="model">Huracán EVO</div>
                    <div class="specs">
                        <div class="spec-item">
                            <span class="spec-label">Power</span>
                            <span>630 HP</span>
                        </div>
                        <div class="spec-item">
                            <span class="spec-label">0-60 MPH</span>
                            <span>2.9s</span>
                        </div>
                        <div class="spec-item">
                            <span class="spec-label">Year</span>
                            <span>2024</span>
                        </div>
                    </div>
                    <div class="price">$274,390</div>
                    <a href="#" class="view-details">VIEW DETAILS</a>
                </div>
            </div>

            <!-- Vehicle Card 3 -->
            <div class="vehicle-card">
                <div class="vehicle-image">MERCEDES</div>
                <div class="vehicle-info">
                    <h3>Mercedes-Benz</h3>
                    <div class="model">AMG GT R</div>
                    <div class="specs">
                        <div class="spec-item">
                            <span class="spec-label">Power</span>
                            <span>577 HP</span>
                        </div>
                        <div class="spec-item">
                            <span class="spec-label">0-60 MPH</span>
                            <span>3.5s</span>
                        </div>
                        <div class="spec-item">
                            <span class="spec-label">Year</span>
                            <span>2024</span>
                        </div>
                    </div>
                    <div class="price">$198,500</div>
                    <a href="#" class="view-details">VIEW DETAILS</a>
                </div>
            </div>

            <!-- Vehicle Card 4 -->
            <div class="vehicle-card">
                <div class="vehicle-image">BENTLEY</div>
                <div class="vehicle-info">
                    <h3>Bentley</h3>
                    <div class="model">Continental GT</div>
                    <div class="specs">
                        <div class="spec-item">
                            <span class="spec-label">Power</span>
                            <span>650 HP</span>
                        </div>
                        <div class="spec-item">
                            <span class="spec-label">0-60 MPH</span>
                            <span>3.6s</span>
                        </div>
                        <div class="spec-item">
                            <span class="spec-label">Year</span>
                            <span>2024</span>
                        </div>
                    </div>
                    <div class="price">$245,000</div>
                    <a href="#" class="view-details">VIEW DETAILS</a>
                </div>
            </div>

            <!-- Vehicle Card 5 -->
            <div class="vehicle-card">
                <div class="vehicle-image">ASTON MARTIN</div>
                <div class="vehicle-info">
                    <h3>Aston Martin</h3>
                    <div class="model">DB12</div>
                    <div class="specs">
                        <div class="spec-item">
                            <span class="spec-label">Power</span>
                            <span>671 HP</span>
                        </div>
                        <div class="spec-item">
                            <span class="spec-label">0-60 MPH</span>
                            <span>3.5s</span>
                        </div>
                        <div class="spec-item">
                            <span class="spec-label">Year</span>
                            <span>2024</span>
                        </div>
                    </div>
                    <div class="price">$248,000</div>
                    <a href="#" class="view-details">VIEW DETAILS</a>
                </div>
            </div>

            <!-- Vehicle Card 6 -->
            <div class="vehicle-card">
                <div class="vehicle-image">FERRARI</div>
                <div class="vehicle-info">
                    <h3>Ferrari</h3>
                    <div class="model">F8 Tributo</div>
                    <div class="specs">
                        <div class="spec-item">
                            <span class="spec-label">Power</span>
                            <span>710 HP</span>
                        </div>
                        <div class="spec-item">
                            <span class="spec-label">0-60 MPH</span>
                            <span>2.9s</span>
                        </div>
                        <div class="spec-item">
                            <span class="spec-label">Year</span>
                            <span>2024</span>
                        </div>
                    </div>
                    <div class="price">$283,950</div>
                    <a href="#" class="view-details">VIEW DETAILS</a>
                </div>
            </div>
        </div>
    </section>

    <!-- CTA Section -->
    <section class="cta-section" id="contact">
        <div class="cta-grid">
            <div class="cta-card" id="test-drive">
                <div class="cta-icon">🏁</div>
                <h3>Book a Test Drive</h3>
                <p>Experience the thrill firsthand. Schedule your exclusive test drive with one of our automotive specialists.</p>
                <a href="#" class="cta-button">RESERVE NOW</a>
            </div>

            <div class="cta-card">
                <div class="cta-icon">💼</div>
                <h3>Speak to a Specialist</h3>
                <p>Our luxury automotive consultants are ready to guide you through your dream car selection process.</p>
                <a href="#" class="cta-button">CONTACT US</a>
            </div>

            <div class="cta-card">
                <div class="cta-icon"></div>
                <h3>Private Viewing</h3>
                <p>Schedule an exclusive, private showroom experience tailored to your preferences and schedule.</p>
                <a href="#" class="cta-button">SCHEDULE</a>
            </div>
        </div>
    </section>

    <!-- Footer -->
    <footer>
        <div class="footer-content">
            <div class="footer-links">
                <a href="#">About Us</a>
                <a href="#">Financing</a>
                <a href="#">Trade-In</a>
                <a href="#">Service</a>
                <a href="#">Careers</a>
                <a href="#">Privacy Policy</a>
            </div>
            <div class="copyright">
                © 2024 Elite Motors. All Rights Reserved. | Luxury Automotive Excellence Since 1995
            </div>
        </div>
    </footer>
</body>
</html>

Key Design Features

Visual Effects:

  • Shimmer animations on gold gradient text for metallic shine
  • Hover glide effects that sweep across elements
  • Smooth transforms on cards and buttons for premium feel
  • Layered gradients creating depth and sophistication

Color Implementation:

  • Dark backgrounds (#0a0a0a, #1a1a1a) for luxury showroom atmosphere
  • Gold accents (#D4AF37) with gradient effects for prestige
  • Silver highlights (#C0C0C0) for metallic contrast
  • Subtle transparency and blurs for glass-morphism effects

Typography:

  • Playfair Display for elegant headlines (serif luxury aesthetic)
  • Montserrat for clean body text (modern readability)
  • Letter-spacing for premium, spaced-out look
  • Gradient text fills for metallic shimmer

Layout Highlights:

  • Fixed navigation with backdrop blur
  • Full-viewport hero with dramatic showcase
  • 6-card vehicle grid with hover animations
  • Responsive brand bar with 6 luxury marques
  • 3-column CTA section for engagement
  • Clean footer with links and branding

The design captures the essence of walking into a high-end dealership—dark, sophisticated, with carefully placed gold accents that draw the eye to key elements. Every interaction feels polished and intentional.

Comments