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

body {
    font-family: 'Roboto', sans-serif;
    /*background-color: #f0f2f5;*/
    background-color: #ffea00;
    color: #333;
    min-height: 100vh;
}

/* De wrapper die de 3 kolommen naast elkaar zet */
.page-wrapper {
    display: flex;
    justify-content: center;
    align-items: center; /* Centreert alles verticaal */
    gap: 40px;
    padding: 40px 20px;
    max-width: 1600px;
    margin: 0 auto;
    min-height: 100vh;
}

/* De zij-afbeeldingen */
/* De zij-afbeeldingen met gelijke afmetingen */
.side-image-container {
    flex: 0 0 350px; /* Forceer de container op 250px breedte */
    display: flex;
    justify-content: center;
}

.side-image {
    width: 350px;      /* De gewenste breedte */
    height: 450px;     /* De gewenste hoogte (pas dit aan naar smaak) */
    
    object-fit: cover; /* DIT IS DE KEY: zorgt dat de foto het kader vult zonder vervorming */
    object-position: center; /* Zorgt dat het midden van de foto zichtbaar blijft */
    
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    border: 4px solid white;
}

/* De middelste kolom met tekst */
.center-column {
    flex: 0 1 800px; /* De tekstkolom is max 800px breed */
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
}

.main-content {
    text-align: center;
}

#logo {
    max-width: 300px;
    margin-bottom: 30px;
}

/* Tekst styling */
.container {
    text-align: left;
    margin-bottom: 30px;
}

h2 {
    color: #c50407;
    border-bottom: 2px solid #c50407;
    padding-bottom: 5px;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

p {
    margin-bottom: 12px;
    line-height: 1.6;
}

.hours {
    background: #f9f9f9;
    padding: 15px;
    border-left: 4px solid #c50407;
    font-style: italic;
}

/* Contact onderaan */
.contact {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

.adres_balk {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.contact a {
    color: #c50407;
    text-decoration: none;
    font-weight: bold;
}

.contact a:hover {
    text-decoration: underline;
}

/* Responsive: Op mobiel zetten we alles onder elkaar */
@media (max-width: 1000px) {
    .page-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .side-image-container {
        flex: none;
        width: 100%;
        max-width: 500px;
    }

    .center-column {
        order: -1; /* Zet de tekst boven de afbeeldingen op mobiel */
        padding: 20px;
    }
}

/* Styling voor de assortiment lijst */
.container ul {
    list-style: none; /* Verwijder standaard puntjes */
    padding-left: 5px;
    display: grid;
    /* Zet de lijst in 2 kolommen op grotere schermen */
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.container li {
    position: relative;
    padding-left: 30px;
    padding-top: 8px;
    padding-bottom: 8px;
    background: #ffffff;
    border-radius: 5px;
    transition: transform 0.2s ease;
    display: flex;
    align-items: center;
}

/* Custom "bullet" - een blauw vinkje of blokje */
.container li::before {
    content: "✓"; /* Je kunt ook een blokje gebruiken: "■" */
    position: absolute;
    left: 0;
    color: #c50407; /* De blauwe kleur van je logo/huisstijl */
    font-weight: bold;
    font-size: 1.2rem;
}

/* Subtiel effect bij hover */
.container li:hover {
    transform: translateX(5px);
    color: #c50407;
}

/* De laatste regel (Tractie accu's) mag over de hele breedte */
.container li:last-child {
    grid-column: 1 / -1;
    border-top: 1px dashed #ddd;
    margin-top: 10px;
    padding-top: 15px;
}

/* Mobiel: gewoon 1 kolom */
@media (max-width: 600px) {
    .container ul {
        grid-template-columns: 1fr;
    }
}