/* ============================================ */
/* PAGE BACKGROUND - VEHICLES (C7C1B6)          */
/* ============================================ */

html, body {
    background: #c7c1b6 !important;
    background-color: #c7c1b6 !important;
}

/* Header + footer + nav match background */
header, footer, nav, .admin-menu, .top-menu, .col1-menu {
    background: #c7c1b6 !important;
}

header a, footer a, nav a {
    color: #1a1a1a !important;
}

/* ============================================ */
/* MAIN CONTAINER                               */
/* ============================================ */

.vehicles-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    background: transparent !important;
}

/* ============================================ */
/* PAGE HEADER                                  */
/* ============================================ */

.page-header {
    text-align: center;
    margin-bottom: 2rem;
}

.page-header h1 {
    font-family: 'Abril Fatface', serif;
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.page-header .subtitle {
    color: #333333;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

/* ============================================ */
/* A–Z MANUFACTURER INDEX                       */
/* ============================================ */

.alpha-menu {
    text-align: center;
    margin: 2rem 0;
    letter-spacing: 0.12em;
}

.alpha-menu a {
    margin: 0 0.4rem;
    color: #4a463f;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    text-decoration: none;
}

.alpha-menu a:hover {
    color: #ff9900;
}

/* ============================================ */
/* MANUFACTURER GRID                            */
/* ============================================ */

.manufacturer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.4rem;
}

.manufacturer-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.4rem;
    border: 1px solid #dcd7cf;
    text-align: center;
}

.manufacturer-card a {
    font-family: 'Abril Fatface', serif;
    font-size: 1.4rem;
    color: #4a463f;
    text-decoration: none;
}

.manufacturer-card a:hover {
    color: #ff9900;
}

/* ============================================ */
/* VEHICLE LIST (on manufacturer page)          */
/* ============================================ */

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.6rem;
    margin-top: 2rem;
}

.vehicle-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.4rem;
    border: 1px solid #dcd7cf;
}

.vehicle-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.vehicle-card h3 {
    font-family: 'Abril Fatface', serif;
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
    color: #4a463f;
}

.vehicle-card p {
    font-family: 'Georgia', serif;
    font-size: 0.9rem;
    color: #444444;
    margin-bottom: 0.4rem;
}

/* ============================================ */
/* NO RESULTS                                   */
/* ============================================ */

.no-results {
    text-align: center;
    padding: 3rem;
    background: #ffffff;
    border-radius: 12px;
    color: #666666;
}

/* ============================================ */
/* RESPONSIVE                                   */
/* ============================================ */

@media (max-width: 768px) {

    .vehicles-container {
        padding: 1rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .manufacturer-grid,
    .vehicle-grid {
        grid-template-columns: 1fr;
    }
}