.bodyhome {
    background-color: black;
    font-family: Futura, serif;
    margin: 0;
    padding: 0;
}

header {
    width: 100%;
    position: fixed;
    background-color: white;
    margin: 0;
    z-index: 1000;
    border: 3px solid black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 1);
}

.knoppen {
    display: flex;
    justify-content: flex-end;
}

.knop {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.3rem;
    color: black;
    padding: 10px;
    margin: 1px 50px;
    text-decoration: none;
    border: 3px solid black;
    border-radius: 16px;
    transition: 0.3s;
}

.knop:hover {
    background-color: lightskyblue;
    padding: 12px;
    transition: 0.3s;
}

.navbar {
    display: none;
}

main {
    padding-top: 100px
}

.home1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.home1 img {
    max-width: 100%;
}

.home2 {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background-color: #000;
    color: white;
    padding: 60px 10%;
    font-family: 'Poppins', sans-serif;
    gap: 60px;
}


.home2 img {
    width: 450px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.text-container {
    max-width: 600px;
}

.text-container h1 {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.text-container h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 40px;
}

.text-container p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.boek {
    margin: 40px 0;
}

.boek a {
    background-color: white;
    color: black;
    border: none;
    padding: 10px;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s;
}

.boek a:hover {
    background-color: lightskyblue;
    padding: 20px;
    transition: 0.3s;

}

.signature {
    margin-top: 20px;
    font-style: italic;
}

.home3 h2,
.home3 h3 {
    margin: 0;
    padding: 0;
}

.home3 {
    background-color: white;
    color: black;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 100px;
    font-family: 'Poppins', sans-serif;
    flex-direction: column;

}

.box {
    margin: 30px;
}

.mix {
    display: flex;

}

.home3 iframe {
    width: 100%;
    height: 300px;
}

.row1,
.row2 {
    display: flex;
    flex-direction: row;
}

.home4 {
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 50px;
}

.home4 h3,
.home4 h2 {
    margin: 10px;
    padding: 0
}

.home4 img {
    margin: 30px
}


.tabel {
    width: 700px;
    table-layout: fixed;
    border: 3px solid white;
    border-collapse: collapse;
    margin: 20px;
}

tr:nth-child(even) {
    background-color: #202020;
}

tr:nth-child(odd) {
    background-color: #101010;
}

table tr:hover {
    background-color: #707070;
}

.tabel th,
.tabel td {
    border: 3px solid white;
    text-align: center;
    padding: 8px;
}

.tabel td {
    font-style: italic
}

thead th {
    font-size: 20px;
}

tbody th {
    font-size: 15px;
}


tbody td {
    color: #D90000;
}

.verleden td {
    color: green;
}

th {
    background-color: #404040
}

footer {
    display: flex;
    justify-content: center;
    padding: 100px;
    background-color: #E7E3DC;
    color: black;
}


/*Galerij*/

.bodygalerij {
    margin: 0;
    background-color: white;
    font-family: Futura, serif;
}


.tfoto {
    display: flex;
    background-color: white;
    color: black;
    justify-content: center;
}

.tfoto h2 {
    padding: 0;
    margin: 20px;
    font-size: 2.5rem;
    font-family: Futura, serif;
    font-style: italic;
    margin-bottom: 30px;
    margin-top: 30px;
}

.tfoto h3 {
    padding: 20px;
    margin: 15px;
    font-family: futura, serif;
    margin-bottom: 30px;
    margin-top: 30px;
}

.fotos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.foto img {
    margin: 10px;
    width: 300px;
    object-fit: cover;
    height: 300px;
}

.vfoto {
    display: none; /* verberg standaard */
    position: fixed; /* overlay over alles */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* donkere achtergrond */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Wanneer de vfoto actief is via :target */
.vfoto:target {
    display: flex; /* toon overlay */
}

/* Stijl voor de grote afbeelding */
.vfoto img {
    max-width: 100%; /* niet te groot */
    max-height: 700px;
    box-shadow: 0 0 20px black;
    border: 3px solid white;
}

/* Optioneel: cursor pointer bij thumbnail */
.foto img {
    width: 300px;
    cursor: pointer;
    transition: transform 0.3s;
    box-shadow: 0 0 5px black;
    border-radius: 16px;
}

.foto img:hover {
    transform: scale(1.05);
}

.bodycontact {
    margin: 0;
    font-family: Futura, serif;
}

.zin1 {
    margin: 10px 0 10px 100px;
}

.contact {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.formulier {
    display: flex;
    flex-direction: column;
    margin: 20px;
    margin-top: -10px;

}

.formulier form {
    display: flex;
    flex-direction: column;
    margin: 20px;
    margin-top: 40px;
}

.input {
    padding: 10px 50px 10px 10px;
    margin-bottom: 10px;
}

.info {
    padding: 10px 400px 10px 10px;
}

.button {
    margin: 30px 0;
}

.volgmij {

    margin: 100px;
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    margin-top: -30px;
}

.social img {
    width: 40px;
    margin: 10px;
    height: auto;
    transition: 0.3s;
}

.social img:hover {
    scale: 1.3;
    transition: 0.3s;
    filter: brightness(0) saturate(100%) invert(35%) sepia(96%) saturate(5860%) hue-rotate(0deg) brightness(93%) contrast(110%);
}


@media (max-width: 1000px) {
    .bodyhome {
        background-color: black;
        font-family: Futura, serif;
        margin: 0;
        padding: 0;
    }

    header {
        width: 100%;
        position: fixed;
        background-color: white;
        margin: 0;
        z-index: 1000;
        border: 3px solid black;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 30px 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 1);
    }

    .knoppen {
        display: flex;
        justify-content: flex-end;
    }

    .knop {
        font-weight: bold;
        text-transform: uppercase;
        font-size: 2rem;
        color: black;
        padding: 10px;
        margin: 1px 30px;
        text-decoration: none;
        border: 3px solid black;
        border-radius: 16px;
        transition: 0.3s;
    }

    .knop:hover {
        background-color: lightskyblue;
        padding: 12px;
        transition: 0.3s;
    }

    .navbar {
        display: none;
    }

    main {
        padding-top: 150px
    }

    .home1 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .home1 img {
        max-width: 100%;
    }

    .home2 {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        background-color: #000;
        color: white;
        padding: 60px 10%;
        font-family: 'Poppins', sans-serif;
        gap: 60px;
    }


    .home2 img {
        display: none;
    }

    .text-container {
        max-width: 800px;
    }

    .text-container h1 {
        font-size: 2.4rem;
        font-weight: 800;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 20px;
    }

    .text-container h2 {
        font-size: 2rem;
        font-weight: 700;
        margin-top: 40px;
    }

    .text-container h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-top: 40px;
    }

    .text-container p {
        font-size: 1.5rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .boek {
        margin: 40px 0;
    }

    .boek a {
        background-color: white;
        color: black;
        border: none;
        padding: 10px;
        font-size: 1.5rem;
        border-radius: 8px;
        cursor: pointer;
        text-decoration: none;
        transition: 0.3s;
    }

    .boek a:hover {
        background-color: lightskyblue;
        padding: 20px;
        transition: 0.3s;

    }

    .signature {
        margin-top: 20px;
        font-style: italic;
    }

    .home3 h2,
    .home3 h3 {
        margin: 0;
        padding: 0;
    }

    .home3 {
        background-color: white;
        color: black;
        display: flex;
        text-align: center;
        align-items: center;
        justify-content: center;
        padding: 100px;
        font-family: 'Poppins', sans-serif;
        flex-direction: column;
        font-size: 1.5rem;

    }


    .mix {
        display: flex;
    }


    .box {
        margin: 50px;
    }

    .home3 iframe {
        width: 100%;
        height: 300px;
    }

    .row1,
    .row2 {
        display: flex;
        flex-direction: column;
    }

    .home4 {
        background-color: black;
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
        padding: 50px;
    }

    .home4 h3,
    .home4 h2 {
        margin: 10px;
        padding: 0
    }

    .home4 img {
        margin: 30px
    }


    .tabel {
        width: 700px;
        table-layout: fixed;
        border: 3px solid white;
        border-collapse: collapse;
        margin: 20px;
    }

    tr:nth-child(even) {
        background-color: #202020;
    }

    tr:nth-child(odd) {
        background-color: #101010;
    }

    table tr:hover {
        background-color: #707070;
    }

    .tabel th,
    .tabel td {
        border: 3px solid white;
        text-align: center;
        padding: 8px;
    }

    .tabel td {
        font-style: italic
    }

    thead th {
        font-size: 20px;
    }

    tbody th {
        font-size: 15px;
    }


    tbody td {
        color: #D90000;
    }

    .verleden td {
        color: green;
    }

    th {
        background-color: #404040
    }

    footer {
        display: flex;
        justify-content: center;
        padding: 100px;
        background-color: #E7E3DC;
        color: black;
    }


    /*Galerij*/
    .bodygalerij {
        margin: 0;
        background-color: white;
        font-family: Futura, serif;
    }


    .tfoto {
        display: flex;
        background-color: white;
        color: black;
        justify-content: center;
    }

    .tfoto h2 {
        padding: 0;
        margin: 20px;
        font-size: 2.5rem;
        font-family: Futura, serif;
        font-style: italic;
        margin-bottom: 30px;
        margin-top: 30px;
    }

    .tfoto h3 {
        padding: 20px;
        margin: 15px;
        font-family: futura, serif;
        margin-bottom: 30px;
        margin-top: 30px;
    }

    .fotos {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        margin-bottom: 50px;
    }

    .foto img {
        margin: 10px;
        width: 300px;
        object-fit: cover;
        height: 300px;
    }

    .vfoto {
        display: none; /* verberg standaard */
        position: fixed; /* overlay over alles */
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8); /* donkere achtergrond */
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }

    /* Wanneer de vfoto actief is via :target */
    .vfoto:target {
        display: flex; /* toon overlay */
    }

    /* Stijl voor de grote afbeelding */
    .vfoto img {
        max-width: 100%; /* niet te groot */
        max-height: 700px;
        box-shadow: 0 0 20px black;
        border: 3px solid white;
    }

    /* Optioneel: cursor pointer bij thumbnail */
    .foto img {
        width: 300px;
        cursor: pointer;
        transition: transform 0.3s;
        box-shadow: 0 0 5px black;
        border-radius: 16px;
    }

    .foto img:hover {
        transform: scale(1.05);
    }

    .bodycontact {
        margin: 0;
        font-family: Futura, serif;
    }

    .zin1 {
        margin: 100px 0 10px 100px;
        font-size: 1.5rem;
    }

    .contact {
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }

    .formulier {
        display: flex;
        flex-direction: column;
        margin: 20px;
        margin-top: 40px;
        font-size: 2rem;

    }

    .formulier form {
        display: flex;
        flex-direction: column;
        margin: 20px;
        margin-top: 40px;
    }

    .input {
        padding: 10px 50px 10px 10px;
        margin-bottom: 10px;
        font-size: 1.5rem;
    }

    .info {
        padding: 100px 100px 10px 40px;
        font-size: 1.5rem;
    }

    .button {
        margin: 30px 0;
    }

    .volgmij {

        margin: 100px;
        display: flex;
        align-items: center;
        text-align: center;
        flex-direction: column;
        margin-top: 300px;
    }

    .social img {
        width: 40px;
        margin: 10px;
        height: auto;
        transition: 0.3s;
    }

    .social img:hover {
        scale: 1.3;
        transition: 0.3s;
        filter: brightness(0) saturate(100%) invert(35%) sepia(96%) saturate(5860%) hue-rotate(0deg) brightness(93%) contrast(110%);
    }

}
