<style>
    body {
        margin: 0 auto;
        font-family: 'Roboto', sans-serif;
        max-width: 85%;
        font-size: 2.5vh;
        scroll-behavior: smooth;
        scroll-snap-type: y mandatory;
    }

    h2 {
        text-align: center;
        margin-top: 4vh;
        color: #008000;
        font-size: 1.8vw;
    }

    h3 {
        text-align: center;
        margin: 10px 0;
        font-size: 1.4vw;
    }

    /* Header */
    header {
        background-color: transparent;
        position: fixed;
        top: 0;
        padding: 20px;
        margin: 0 auto;
        display: flex;
        width: 85%;
        justify-content: center;
        align-items: center;
        z-index: 100;
        flex-direction: column;
    }

    .desktop-nav {
        display: flex;
        width: 100%;
    }

    .mobile-nav {
        display: none;
    }

    nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    nav li {
        margin-right: 30px;
        font-size: 1.5vw;
        text-align: center;
    }

    nav a {
        color: #000;
        text-decoration: none;
        font-weight: 700;
        display: flex;
        align-items: center;
    }

    nav a img {
        margin-right: 5px;
        height: 1.5vw;
        width: auto;
    }

    /* Sections */
    section {
        min-height: 100vh;
        padding-top: 60px;
        background-color: #FFB5B5;
    }

    /* Gilet */
    #gilet {
        background-image: url(../images/bg/bg-empty.png);
        background-size: cover;
        background-repeat: no-repeat;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    #gilet-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        background-color: transparent;
        padding: 20px;
        border-radius: 10px;
        margin-bottom: 0 auto;
    }

    #gilet-images {
        display: flex;
        justify-content: space-around;
        margin-bottom: 20px;
        width: 80%;
        margin: 0 auto;
        align-items: center;
    }

    #gilet-images img {
        width: 300px;
        height: auto;
        object-fit: cover;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    #info {
        width: 60%;
        font-size: 1.2vw;
        margin: 0 auto;
        background-color: #fff;
        padding: 10px;
        border-radius: 13px;
        opacity: 0.7;
    }

    #info p {
        margin: 0;
    }

    #info img {
        width: 100%;
        height: auto;
    }

    /* Muziek */
    #muziek {
        background-image: url(../images/bg/bg-muziek3.png);
        background-size: cover;
        background-repeat: no-repeat;
    }

    .song-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        margin-top: 8vh;
    }

    .audio {
        opacity: 0.7;
        width: 30%;
    }

    .song-list a {
        margin: 10px;
        text-decoration: none;
        font-size: 25px;
    }

    /* Agenda */
    #agenda {
        background-image: url(../images/bg/bg-agenda.png);
        background-size: cover;
        background-repeat: no-repeat;
        font-size: 1.4vw;
        align-items: center;
    }

    .agenda {
        margin: 4vh 2vw;
        background: #EFEFEF;
        opacity: 0.8;
        padding: 30px;
        border-radius: 20px;
        width: 86%;
        display: block;
        overflow-x: auto;
    }

    .agenda table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 20px;
        white-space: nowrap;
    }

    .agenda th,
    .agenda td {
        padding: 12px 15px;
        text-align: left;
        border-bottom: 1px solid #ddd;
    }

    .agenda th {
        background-color: #f0f0f0;
        color: #000;
    }

    .agenda tbody tr:hover {
        background-color: #f5f5f5;
    }

    /* Gallery */
    #galerij {
        background-image: url(../images/bg/bg2.png);
        text-align: center;
    }

    .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 20px;
    }

    .container div {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }

    .container img {
        width: 200px;
        height: auto;
        object-fit: cover;
        margin: 10px;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .container a {
        display: block;
    }

    /* Contact */
    #contact {
        background-image: url(../images/bg/bg-contact.png);
        background-size: cover;
        background-repeat: no-repeat;
    }

    #contact img {
        width: 15px;
        height: 15px;
        margin-top: 5px;
    }

    /*pretty photo, form and media queries as before */
    .close {
        font-weight: 700;
        font-size: 20vh;
        color: #fff;
        border: 2px black solid;
    }

    .info2 {
        display: none;
    }

    /* Media query for kleinere schermen */
    @media (max-width: 768px) {
        .desktop-nav {
            display: none;
        }

        .mobile-nav {
            display: flex;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: transparent;
            justify-content: space-around;
            padding: 10px 0;
            z-index: 1000;
        }

        .mobile-nav a img {
            width: 30px;
            height: auto;
            margin: 0;
        }

        h2 {
            font-size: 3.5em;
        }

        h3 {
            font-size: 3em;
        }

        nav li {
            font-size: 3em;
        }

        #gilet-images {
            flex-direction: column;
            align-items: center;
        }

        #gilet-images img {
            width: 100%;
            margin-bottom: 10px;
        }

        #info {
            width: 95%;
            font-size: 2.5vh;
        }

        .agenda {
            width: 95%;
            overflow-x: auto;
        }

        .agenda th,
        .agenda td {
            font-size: 2vh;
            padding: 8px;
        }
    }

    form {
        display: flex;
        flex-direction: column;
        width: 500px;
        margin: 0 auto;
    }

    input[type="text"],
    textarea {
        width: calc(100% - 10px);
        padding: 5px;
        margin-bottom: 10px;
        border: 1px solid #ccc;
        box-sizing: border-box;
    }

    textarea {
        height: 120px;
    }

    input[type="submit"] {
        background-color: #007bff;
        color: white;
        padding: 10px 15px;
        border: none;
        cursor: pointer;
        border-radius: 5px;
    }

    input[type="submit"]:hover {
        background-color: #0056b3;
    }

    label {
        margin-bottom: 5px;
    }

    .error {
        color: red;
        margin-top: 5px;
    }

    @media (max-width: 400px) {
        form {
            width: 90%;
        }
    }
</style>
