
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    background-color: #f4f4f4;
    color: #222;
    line-height: 1.7;
    padding-top: 90px;
}


header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}

header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1f4d2c;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

nav a {
    text-decoration: none;
    color: #2f6b3f;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
}

nav a:hover,
nav a:focus {
    background-color: #d8f2e0;
    color: #1f4d2c;
}

nav a.active {
    background-color: #2f6b3f;
    color: #fff;
}


main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px;
}

section {
    margin-bottom: 40px;
}

h2 {
    color: #1f4d2c;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

h3 {
    color: #2f6b3f;
    margin-bottom: 10px;
}



figure {
    margin-bottom: 20px;
}

figure img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

figcaption {
    margin-top: 6px;
    font-size: 0.9rem;
    color: #555;
}


.pootjes-lijst {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.pootjes-lijst li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.pootjes-lijst li::before {
    content: "\f1b0";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #2f6b3f;
    font-size: 3rem;
}


form {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

form label {
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

form input,
form textarea,
form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
}

form button[type="submit"] {
    background-color: #2f6b3f;
    color: #fff;
    padding: 12px 22px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

form button[type="submit"]:hover {
    background-color: #1f4d2c;/
}

form button[type="reset"] {
    background-color: #75ac84;
    color: #fff;
    padding: 12px 22px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

form button[type="reset"]:hover {
    background-color: #5c966d;/
}



footer {
    background-color: #1f4d2c;
    color: #eee;
    padding: 25px;
    margin-top: 50px;
}

footer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
}


@media (max-width: 900px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 600px) {
    nav ul {
        flex-direction: column;
        gap: 8px;
    }

    body {
        padding-top: 120px;
    }
}