/* ========== BASIS ========== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffe5e5;
    color: #222;
    line-height: 1.6;
}

/* ========== HEADER / NAVBAR ========== */
header {
    background-color: #ff9999;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    position: relative; /* voor logo “bleeding” */
}

/* LOGO */
header img {
    height: 140px;        /* iets groter */
    position: absolute;   /* logo tegen linkerkant/top */
    left: 10px;           /* marge van linkerkant */
    top: 10px;            /* marge van bovenkant */
    border-radius: 18px;  /* afgeronde randen */
}

/* NAV */
nav {
    display: flex;
    gap: 100px;
    align-items: center;
    justify-content: center;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.8;
}

/* ========== CONTAINER ========== */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* ========== TITELS ========== */
h1, h2 {
    text-align: center;
    color: #b71c1c;
    margin-bottom: 40px;
    font-weight: 700;
}

/* ========== VOORPAGINA INTRO ========== */
.intro {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

/* KRISTIEN FOTO — alleen voor index.html */
.intro img {
    width: 100%;
    max-width: 320px;
    border-radius: 18px;   /* afgeronde randen */
    justify-self: center;
}

/* TEKSTKAART */
.card {
    background-color: #fff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.card p {
    font-size: 16px;
    margin-bottom: 18px;
}

/* PRIJS */
.price-highlight {
    text-align: center;
    background-color: #ffd6d6;
    padding: 30px;
    border-radius: 18px;
    font-size: 18px;
}

/* MAP */
iframe {
    width: 100%;
    height: 360px;
    border: none;
    border-radius: 18px;
    margin-top: 20px;
}

/* FOOTER */
footer {
    background-color: #ff9999;
    color: white;
    text-align: center;
    padding: 25px 20px;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 800px) {
    /* HEADER / NAV */
    header {
        flex-direction: column;
        gap: 15px;
    }

    header img {
        position: static;  /* logo normaal op mobiel */
        height: 55px;      /* kleinere grootte op mobiel */
        margin-left: 0;
        transform: none;
        border-radius: 18px; /* afgeronde randen mobiel */
    }

    nav {
        gap: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* VOORPAGINA INTRO */
    .intro {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .intro img {
        justify-self: center;
    }
}

