/* =========================
RESET / BODY
========================= */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f6f8;
    color: #222;
}

/* =========================
HEADER
========================= */
.header {
    background: white;
    border-bottom: 1px solid #eee;
}

.header-inner {
    max-width: 1100px;
    margin: auto;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
}

.menu a {
    margin-left: 15px;
    text-decoration: none;
    color: #333;
}

/* =========================
HERO
========================= */
.hero {
    background: #111;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.hero-content {
    max-width: 600px;
    margin: auto;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    background: #d40000;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
}

/* =========================
HOMEPAGE CARDS (GEEN SLIDER)
========================= */
.slider {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 20px;
}

.card {
    min-width: 260px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: black;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    flex-shrink: 0;
}

.card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

/* =========================
AUTO DETAIL PAGINA
========================= */
.car-container {
    max-width: 1100px;
    margin: 40px auto;
    display: flex;
    gap: 40px;
    padding: 20px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .car-container {
        flex-direction: column;
    }
}

/* 👉 GEWOON NORMALE FOTO'S (GEEN SLIDER) */
.car-gallery img{
    width:100%;
    border-radius:10px;
    margin-bottom:10px;
}

/* =========================
KNOPPEN
========================= */
.btn-main {
    background: #d40000;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 6px;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 6px;
}

/* =========================
GRID / CARS PAGINA
========================= */
.cars-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    max-width: 1300px;
    margin: auto;
    padding: 30px 20px;
}

.filters-sidebar {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
}

.cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

/* =========================
CAR CARD
========================= */
.car-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: #222;
    box-shadow: 0 10px 25px rgba(0,0,0,0.07);
}

.car-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.car-info {
    padding: 15px;
}

.price {
    color: #d40000;
    font-weight: bold;
}

/* =========================
MOBILE MENU (ONGEWIJZIGD)
========================= */

.mobile-menu{
    position:fixed;
    top:0;
    left:-100%;
    width:75%;
    height:100%;
    background:#fff;
}

.mobile-menu.active{
    left:0;
}
``