/* Algemene instellingen */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

/* Algemene container */
.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2em 0;
}

/* Header Darwin */
header.Darwin {
    background-color: #005a87;
    color: #ffffff;
    text-align: center;
    padding: 4em 2em;
}

header.Darwin blockquote {
    font-style: italic;
    margin-top: 1em;
    font-size: 1.2em;
}

/* Secties */
.services,
.contact {
    background-color: #ffffff;
    margin-top: 1em;
    padding: 2em 0;
}

.services ul {
    list-style-type: disc;
    padding-left: 2em;
}


.horizon-section {
    background: #aadef373;
    padding: 2em 0;
    text-align: center;
}

.kajak-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 1em;
}

/* Klaver4Agile afbeelding */
.Klaver4Agile-image {
    max-width: 20%;
    height: auto;
    border-radius: 8px;
    object-fit: scale-down;
    float: right;
}

/* Site header */
.site-header {
    background-color: #f8f8f8;
    border-bottom: 1px solid #ddd;
    padding: 10px 20px;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Logo */
.logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
}

/* Hamburger menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 25px;
    justify-content: space-between;
}

.menu-toggle span {
    height: 3px;
    background-color: #333;
    border-radius: 2px;
}

/* Menu */
.menu {
    display: flex;
}

.menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu li a {
    text-decoration: none;
    color: #333;
    padding: 10px 15px;
    transition: background-color 0.3s;
}

.menu li a:hover {
    background-color: #eee;
    border-radius: 4px;
}

/* Footer */
footer {
    background-color: #eee;
    text-align: center;
    padding: 1em;
    font-size: 0.9em;
    color: #777;
}

/* Tablet */
@media (max-width: 1024px) {
    .container {
        width: 95%;
    }
    .Klaver4Agile-image {
        max-width: 30%;
    }
}

/* Mobiel */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    .menu {
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: #f8f8f8;
        flex-direction: column;
        width: 200px;
        display: none;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        border-radius: 5px;
    }
    .menu ul {
        flex-direction: column;
    }
    .menu.show {
        display: flex;
    }
    .Klaver4Agile-image {
        max-width: 40%;
        float: none;
        margin: 0 auto;
    }
}

/* Extra klein scherm */
@media (max-width: 480px) {
    header.Darwin {
        padding: 2em 1em;
    }
    .logo {
        font-size: 1.2em;
    }
    .kajak-image {
        margin-bottom: 10px;
    }
}

/* Printvriendelijke stijl */
@media print {
    body {
        background: #ffffff;
        color: #000000;
        font-size: 12pt;
    }
    header.Darwin, .site-header, .menu-toggle, .menu, footer {
        display: none;
    }
    .container {
        width: 100%;
        padding: 0;
    }
    .kajak-image, .Klaver4Agile-image {
        max-width: 100%;
        height: auto;
        float: none;
        margin: 0 0 1em 0;
    }
    a {
        color: #000000;
        text-decoration: underline;
    }
}