/* Reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}


/* Topbar */

.topbar {
    text-align: center;
    font-size: 13px;
    padding: 8px;
}


/* Header */

.header {
    padding: 20px 0;
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 50px;
}

.menu {
    list-style: none;
    display: flex;
    gap: 25px;
}

.menu a {
    text-decoration: none;
    color: black;
    font-weight: 500;
}

.menu a.active {
    font-weight: 700;
}


/* Content */

.content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.content h1 {
    margin-bottom: 40px;
}


/* Product grid */

.product-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    margin-bottom: 80px;
}

.product {
    position: relative;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    background-size: cover;
    background-position: center;
    min-height: 260px;
}


/* Grote linker afbeelding */

.product.large {
    grid-row: span 2;
    background-image: url("pruimen.jpg");
}


/* Rechts boven */

.product.right.red {
    background-color: red;
}


/* Rechts onder */

.product.small {
    background-image: url("appels.jpg");
}

.product.right.small {
    background-image: url("dadels.jfif");
}


/* Tekst op afbeelding */

.product span {
    background: rgba(0, 0, 0, 0.45);
    padding: 14px 22px;
    border-radius: 10px;
    font-size: 16px;
    text-align: center;
}


/* CTA */

.cta {
    position: relative;
    background-image: url("foto2.jpg");
    background-size: cover;
    background-position: center right;
    border-radius: 30px;
    min-height: 420px;
    margin: 80px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
}

.cta-content {
    background-color: #e1251b;
    color: white;
    padding: 40px 45px;
    border-radius: 25px;
    max-width: 420px;
    margin-left: 80px;
}

.cta-content h2 {
    margin-bottom: 15px;
}

.cta-content p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-outline {
    display: inline-block;
    padding: 12px 22px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .cta {
        min-height: auto;
        padding: 40px 20px;
    }
    .cta-content {
        margin-left: 0;
        width: 100%;
    }
}


/* Responsive */

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    .product.large {
        grid-row: auto;
    }
    .header-inner {
        flex-direction: column;
        gap: 20px;
    }
    .menu {
        flex-wrap: wrap;
        justify-content: center;
    }
}