/* Basis stijlen */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    background-color: #fdfaf5;
    /* Licht beige achtergrond */
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
header {
    background-color: #d2691e;
    /* Een warme 'kip' oranje/bruin */
    color: white;
    text-align: center;
    padding: 1.5rem 0;
}

header h1 {
    margin: 0 0 0.5rem 0;
    font-size: 2.8rem;
}

header p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Navigatie */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    /* Zorgt ervoor dat items doorbreken op kleine schermen */
    justify-content: center;
    gap: 1rem;
    /* Ruimte tussen de navigatie-items */
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 0.8rem;
    /* Iets minder padding voor meer items */
    border-radius: 5px;
    transition: background-color 0.2s ease-in-out;
    font-size: 0.95rem;
    /* Iets kleinere font-size voor meer items */
}

nav a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Algemene sectie styling */
section {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

section h2 {
    color: #d2691e;
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

section h3 {
    color: #333;
    font-size: 1.6rem;
    margin-top: 0;
}

/* Hero sectie */
.hero {
    text-align: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.hero img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Product Overzicht & Categorieën */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    /* Responsief grid */
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background-color: #fdfaf5;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;

    /* Stijlen voor uitlijning van prijs en knop in kleinere productkaarten */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.product-card img {
    max-width: 100%;
    height: 200px;
    /* Vaste hoogte voor afbeeldingen in de product-grid */
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.product-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.product-card p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: #555;
    flex-grow: 1;
    /* Laat de paragraaf zoveel mogelijk ruimte innemen */
}

.product-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    text-align: left;
    color: #555;
    flex-grow: 1;
    /* Zorgt dat de lijst ook de ruimte inneemt */
}

.product-card ul li {
    margin-bottom: 0.5rem;
}

.prijs {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: #28a745;
    /* Groene prijs */
    margin-top: auto;
    /* Duw de prijs naar de onderkant (boven de knop) */
    margin-bottom: 1.5rem;
}

/* CTA Knoppen */
.cta-knop {
    display: inline-block;
    background-color: #28a745;
    /* Groen */
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: background-color 0.2s ease-in-out;
}

.cta-knop.small {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    margin-top: auto;
    /* Duw de knop naar de absolute onderkant */
}

.cta-knop:hover {
    background-color: #218838;
    /* Donkerder groen */
}

/* Specifieke CTA sectie (Contact) */
.cta-section {
    background-color: #333;
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    /* H2 in contactsectie wit maken */
}

.cta-section .cta-knop {
    background-color: #d2691e;
    /* Oranje knop */
    margin-bottom: 1rem;
}

.cta-section .cta-knop:hover {
    background-color: #a05215;
}

.cta-section p a {
    color: #ffcc00;
    /* Link in contact info geel/oranje */
    text-decoration: none;
    font-weight: bold;
}

.cta-section p a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 1rem;
    color: #777;
    border-top: 1px solid #eee;
    margin-top: 3rem;
    font-size: 0.9rem;
}

/* Formulier styling */
.form-section form p {
    margin-bottom: 1rem;
}

.form-section label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #555;
}

.form-section input[type="text"],
.form-section input[type="email"],
.form-section input[type="tel"],
.form-section input[type="number"],
.form-section select,
.form-section textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    /* Zorgt dat padding binnen de breedte blijft */
    font-size: 1rem;
}

.form-section textarea {
    min-height: 100px;
    resize: vertical;
}

.form-section button[type="submit"] {
    width: auto;
    padding: 1rem 2rem;
    font-size: 1.2rem;
}


/* Aanpassing voor de full-width productkaarten in de categorieën */
.product-categorie .product-card.full-width {
    /* Herstel default flex-richting of pas aan naar voorkeur */
    display: flex;
    flex-direction: column;
    /* Houd de content onder elkaar */
    align-items: center;
    /* Centreer de content horizontaal */
    text-align: center;
    padding: 2.5rem;
    /* Zorg voor voldoende padding rond de inhoud */
}

.product-categorie .product-card.full-width img {
    width: 100%;
    /* Zorg dat de afbeelding de volle breedte inneemt */
    height: auto;
    /* Belangrijk: hoogte automatisch aanpassen om verhouding te behouden */
    max-height: 400px;
    /* Optioneel: Maximale hoogte om te voorkomen dat ze te groot worden op desktops */
    object-fit: contain;
    /* Gebruik 'contain' om de hele afbeelding zichtbaar te maken, zonder bijsnijden */
    border-radius: 8px;
    margin-bottom: 2rem;
    /* Ruimte onder de afbeelding */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    /* Een subtiele schaduw */
}

.product-categorie .product-card.full-width h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.product-categorie .product-card.full-width p {
    font-size: 1.1rem;
    max-width: 700px;
    /* Max-breedte voor leesbaarheid van lange teksten */
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
    flex-grow: 0;
    /* Belangrijk: voorkom dat deze p-tag alle ruimte opvult */
}

.product-categorie .product-card.full-width ul {
    list-style: none;
    /* Geen standaard bullet points */
    padding: 0;
    margin: 1.5rem auto;
    max-width: 700px;
    /* Consistent met de paragraaf breedte */
    text-align: left;
    /* Lijst items links uitlijnen */
    flex-grow: 0;
    /* Belangrijk: voorkom dat deze ul-tag alle ruimte opvult */
}

.product-categorie .product-card.full-width ul li {
    background-color: #e6f7e9;
    /* Lichte achtergrond voor lijst-items */
    padding: 0.5rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 4px;
    display: flex;
    /* Flex om icoon en tekst uit te lijnen */
    align-items: center;
}

.product-categorie .product-card.full-width ul li::before {
    content: '✔️';
    /* Vinkje als bullet point */
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.product-categorie .product-card.full-width .prijs {
    font-size: 2.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    color: #d2691e;
    /* Oranje voor de prijs */
}

.product-categorie .product-card.full-width .cta-knop {
    padding: 1rem 2.5rem;
    font-size: 1.3rem;
    background-color: #28a745;
    margin-top: 0;
    /* Reset de margin-top: auto van de small knop */
}

.product-categorie .product-card.full-width .cta-knop:hover {
    background-color: #218838;
}


/* Responsiviteit - Kleine aanpassingen voor mobiel */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.2rem;
    }

    nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    nav a {
        padding: 0.7rem;
        width: 80%;
        margin: 0 auto;
        display: block;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    /* Zorg ervoor dat de full-width kaarten op mobiel goed schalen */
    .product-categorie .product-card.full-width {
        padding: 1.5rem;
    }

    .product-categorie .product-card.full-width img {
        max-height: 250px;
        /* Iets kleiner op mobiel */
        margin-bottom: 1.5rem;
    }

    .product-categorie .product-card.full-width h3 {
        font-size: 1.6rem;
    }

    .product-categorie .product-card.full-width p,
    .product-categorie .product-card.full-width ul {
        font-size: 1rem;
        max-width: 100%;
        /* Volledige breedte op mobiel */
    }

    .product-categorie .product-card.full-width .prijs {
        font-size: 2rem;
    }

    .product-categorie .product-card.full-width .cta-knop {
        padding: 0.8rem 1.8rem;
        font-size: 1.1rem;
        max-width: 100%;
    }
}

/* =================================
   Formulier Styling
   ================================= */

.form-section {
    background-color: #fdfaf5;
    /* Zelfde als body voor een zachte look */
    border: 1px solid #eee;
}

.form-section h2 {
    color: #333;
    /* Donkere titel voor leesbaarheid */
}

.form-section form {
    max-width: 700px;
    margin: 2rem auto 0 auto;
    text-align: left;
}

.form-section form p {
    margin-bottom: 1.5rem;
}

.form-section label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #555;
}

.form-section input[type="text"],
.form-section input[type="email"],
.form-section input[type="number"],
.form-section select,
.form-section textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    /* Zorgt dat padding binnen de breedte blijft */
    font-size: 1rem;
    background-color: #fff;
}

.form-section textarea {
    min-height: 120px;
    resize: vertical;
}

.form-section button[type="submit"] {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    background-color: #28a745;
    border: none;
    cursor: pointer;
}

.form-section button[type="submit"]:hover {
    background-color: #218838;
}