/*
Theme Name: WholeWin Auto
Theme URI: https://wholewin-auto.com/
Author: Accio Work
Description: A luxury WordPress theme for China's premium vehicle export business. Features a dark champagne gold aesthetic and modular vehicle specifications.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: wholewin-auto
*/

:root {
    --bg: #080706;
    --surface: #151310;
    --surface-warm: #241e14;
    --fg: #fff8ea;
    --fg-muted: #9f927c;
    --accent: #c6a15b;
    --accent-on: #080706;
    --border: #3a3020;
    --border-soft: #282217;
    --shadow-lift: 0 30px 90px rgba(0,0,0,0.5);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg);
    color: var(--fg);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .font-display {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Luxury Utils */
.glass {
    background: rgba(21, 19, 16, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-soft);
}

.gold-btn {
    background: var(--accent);
    color: var(--accent-on);
    padding: 14px 32px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: transform 0.3s ease;
}

.gold-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.luxury-card {
    background: var(--surface);
    border: 1px solid var(--border-soft);
    padding: 32px;
    transition: all 0.3s ease;
}

.luxury-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-lift);
}

/* Vehicle Grid */
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
}

.vehicle-card img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}
