/* =========================
   RESET & BASIS
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #ffffff;
    color: #000;
}


/* =========================
   CONTAINER
========================= */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* =========================
   TOPBAR
========================= */

.topbar {
    text-align: center;
    font-size: 13px;
    padding: 10px 0;
}


/* =========================
   HEADER (zoals PDF)
========================= */

.header {
    padding: 30px 0 70px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 55px;
}

.menu {
    list-style: none;
    display: flex;
    gap: 35px;
}

.menu a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 500;
}

.menu a.active {
    font-weight: 700;
}


/* =========================
   HERO
========================= */

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.hero-text h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-text p {
    max-width: 420px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 14px 26px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
}

.btn.primary {
    background: #7BC043;
    color: #fff;
}

.btn.outline {
    border: 2px solid #7BC043;
    color: #7BC043;
}

.hero-image img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    clip-path: ellipse(70% 60% at 60% 50%);
}


/* =========================
   PRODUCTEN GRID
========================= */

.product-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 260px 260px;
    gap: 30px;
    margin-bottom: 120px;
}

.product {
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    background-size: cover;
    background-position: center;
}

.product.large {
    grid-row: span 2;
    background-image: url("pruimen.jpg");
}

.product.red {
    background-color: #e2231a;
}

.product.small {
    background-image: url("appels.jpg");
}

.product span {
    background: rgba(0, 0, 0, 0.45);
    padding: 12px 20px;
    border-radius: 12px;
}


/* =========================
   CTA (foto 2 – klikbaar)
========================= */

.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);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    background: #e2231a;
    color: #fff;
    padding: 40px 45px;
    border-radius: 25px;
    max-width: 420px;
    margin-left: 80px;
}

.cta-content h2 {
    font-size: 26px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-outline {
    display: inline-block;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 32px;
}

.btn-outline:hover {
    background: #fff;
    color: #e2231a;
}


/* =========================
   OVER ALL-FRUIT
========================= */


/* ===== OVER ALL-FRUIT SECTIE ===== */

.about {
    padding: 120px 0;
    background: #fff;
}

.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 40px 1fr;
    gap: 60px;
    align-items: flex-start;
}


/* GROENE LIJN */

.about-inner::before {
    content: "";
    grid-column: 2;
    background-color: #8cbc2c;
    width: 2px;
}


/* LINKS: TEKST */

.about-text {
    grid-column: 1;
}


/* RECHTS: FOTO’S */

.about-images {
    grid-column: 3;
    display: flex;
    flex-direction: column;
    gap: 24px;
}


/* FOTO’S */

.about-images img {
    width: 100%;
    border-radius: 22px;
    object-fit: cover;
}


/* =========================
   FOOTER
========================= */

.footer-wave {
    background: #8cbc2c;
    padding: 220px 0 120px;
    clip-path: ellipse(100% 80% at 50% 100%);
}

.footer-content {
    display: flex;
    justify-content: center;
    gap: 120px;
    color: #fff;
    text-align: center;
}

.footer-copy {
    margin-top: 80px;
    text-align: center;
    font-size: 13px;
    color: #555;
}

.footer-copy a {
    color: #555;
    text-decoration: underline;
}

.about {
    padding: 120px 0;
}

.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    /* tekst | lijn | foto's */
    gap: 40px;
    align-items: start;
}


/* GROENE VERTICALE LIJN */

.about-inner::before {
    content: "";
    grid-column: 2;
    width: 2px;
    height: 100%;
    background-color: #8cbc2c;
    justify-self: center;
}

.about {
    padding: 120px 0;
}

.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    /* tekst | lijn | foto */
    gap: 60px;
    align-items: start;
    position: relative;
}


/* GROENE VERTICALE LIJN */

.about-inner::before {
    content: "";
    grid-column: 2;
    width: 2px;
    height: 100%;
    background-color: #8cbc2c;
    justify-self: center;
}


/* TEKST */

.about-text {
    grid-column: 1;
}


/* CTA onder About */

.about-cta {
    margin-top: -120px;
    /* <-- hoger zetten (meer = nog hoger) */
    text-align: center;
    padding-bottom: 120px;
}


/* Tekst "met de kracht van All-Fruit." */

.about-cta-text {
    font-size: 28px;
    /* <-- groter */
    font-weight: 500;
    margin-bottom: 24px;
}


/* Knop */

.about-cta-btn {
    display: inline-block;
    padding: 14px 28px;
    border: 2px solid red;
    color: red;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.2s ease;
}

.about-cta-btn:hover {
    background: red;
    color: white;
}


/* FOTO'S */

.about-images {
    grid-column: 3;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-images img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .product-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .product.large {
        grid-row: auto;
    }
    .cta {
        padding: 40px 20px;
    }
    .cta-content {
        margin-left: 0;
        width: 100%;
    }
    .about-inner {
        grid-template-columns: 1fr;
    }
    .about-inner::before {
        display: none;
    }
    .header-inner {
        flex-direction: column;
        gap: 20px;
    }
    .menu {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* Container iets luchtiger */
    .container {
        padding: 0 20px;
    }
    /* ===== HEADER ===== */
    .header-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .menu {
        flex-direction: column;
        gap: 15px;
    }
    /* ===== HERO ===== */
    .hero {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 80px;
    }
    .hero-text h1 {
        font-size: 34px;
    }
    .hero-text p {
        max-width: 100%;
    }
    .buttons {
        flex-direction: column;
    }
    /* ===== PRODUCT GRID ===== */
    .product-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .product.large {
        grid-row: span 1;
    }
    .product {
        min-height: 260px;
    }
    /* ===== CTA ===== */
    .cta {
        min-height: auto;
        padding: 60px 20px;
        background-position: center;
        margin: 60px 0;
    }
    .cta-content {
        margin: 0 auto;
        max-width: 100%;
        padding: 30px;
        text-align: center;
    }
    .cta-content h2 {
        font-size: 22px;
    }
    .btn-outline {
        font-size: 18px;
        padding: 12px 20px;
    }
    /* ===== ABOUT ===== */
    .about {
        padding: 80px 20px;
    }
    .about-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-inner::before {
        display: none;
    }
    .about-cta {
        margin-top: 60px;
        padding-bottom: 80px;
    }
    .about-cta-text {
        font-size: 20px;
        text-align: center;
    }
    .about-images {
        gap: 16px;
    }
}