html{
    font-size: 16px;
}
body{
    font-family:Arial, Helvetica, sans-serif;
    padding: 0px;
    margin: 0px;
    background-color: #fcf2f2;
}

h1 {
    text-align: center;
    margin: 1.25rem 0; 
}
/* hamburger */
#hamburger{
    display: none;
}

.topnav{
   background-color: #030864;
    padding: 0.75rem;
    display: flex;
    
    align-items: center;
}

.topnav a{
    color: #f2f2f2;
    text-decoration: none;
    margin-right: 20px;
}
.topnav a.active {
    color: #4da6ff;
    font-weight: bold;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.topnav a:hover{
    text-decoration: underline;

}

#hamburger.icon{
    
    font-size: 18px;
    background: none;
    border: 1px solid #f2f2f2;
    padding: 4px 8px;
    color: #f2f2f2;
    cursor: pointer;
}

/* het menu-gedeelte dat we willen tonen/verbergen*/
#menuitems {
    display:block;
    /*start zichtbaar*/
    margin-top: 8px;
}


/* optioneel: andere stijl als de hamburger 'open' is*/
#hamburger.icon.open {
   background-color: #f2f2f2; 
   color: #333;
}

/* pagina 1*/
.content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
}

.tekst {
    width: 55%;
    line-height: 1.6;
    border: 1px solid black;
}

.afbeelding1 {
    width: 35%;
    max-width: 400px;
}
.tekst p {
    margin-bottom: 15px;
}

.content {
    gap: 20px;
}

.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 15px;
    background-color: #030864;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.btn:hover {
    background-color: #4da6ff;
}

.afbeelding1:hover {
    transform: scale(1.03);
    transition: 0.3s;
}
/* pagina 2*/
.overzicht {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.kolom {
    width: 30%;
    border: 2px solid black;
    padding: 15px;
    background-color: #f5f5f5;

}
.kolom p {
    line-height: 1.6;
    margin-bottom: 10px;
}

/* hover effect */
.kolom:hover {
    transform: scale(1.02);
    transition: 0.2s;
}

.kolom h2 {
    margin-bottom: 10px;
}



.kolom ul {
    padding-left: 20px;
}

.kolom li {
    margin-bottom: 8px;
    
}
/* pagina 3 */
.praktisch {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.links, .rechts {
    width: 25%;
}

.midden {
    width: 40%;
    text-align: center;
}

.box {
    border: 1px solid #999;
    padding: 10px;
    margin-bottom: 20px;
    background-color: #f5f5f5; 
    border-radius: 8px;
}

.box:hover {
    transform: scale(1.02);
    transition: 0.2s;
}

.praktisch {
    gap: 20px;
}

.kaart {
    width: 100%;
    max-width: 500px;
    height: 400px;
    border: 1px solid #999;
}
/*pagina 4 */
.onder {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.faq {
    width: 55%;
   
}

.foto {
    width: 35%;
}

.foto img {
    width: 100%;
    border-radius: 8px;
}
.kolom img {
    width: 100%;
    max-height: 150px;   
    object-fit: cover;   
    border-radius: 6px;
    margin-bottom: 10px;
}
/* pagina 5 */
.reviews {
    display: flex;
    justify-content: space-between;
    padding: 20px; 
    gap: 20px;
    
}


.review-card:hover {
    transform: scale(1.02);
    transition: 0.2s;
}



.review-card {
    width: 30%;
    border: 1px solid #999;
    padding: 10px;
    background-color: #bfb9b9;
    border-radius: 8px;
}

.review-header {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.review-header img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 1px solid #999;
}

.score {
    margin: 10px 0;
}

.review-text {
    font-style: italic;
}



/* voor mobiel */
@media screen and (max-width:600px) {
 #hamburger {
        display: block;
    }
    #menuitems {
        display: none;
    }
    .topnav.show #menuitems {
        display: block;
    }
    #menuitems a {
        display: block;
        margin: 5px 0;
    }

    /* ── Pagina 1 - Homepage ── */
    .content {
        flex-direction: column;
    }
    .tekst, .afbeelding1 {
        width: 100%;
    }
    .afbeelding1 {
        margin-top: 15px;
    }

    /* ── Pagina 2 - Overzichtspagina ── */
    .overzicht {
        flex-direction: column;
    }
    .kolom {
        width: 100%;
        margin-bottom: 20px;
    }

    /* ── Pagina 3 - Praktische informatie ── */
    .praktisch {
        flex-direction: column;
    }
    .links, .rechts, .midden {
        width: 100%;
    }
    .midden {
        order: 4;
    }
    .kaart {
        width: 100%;
        height: auto;
    }

    /* ── Pagina 4 - Activiteitenplanning ── */
    .onder {
        flex-direction: column;
    }
    .faq, .foto {
        width: 100%;
    }
    .foto {
        margin-top: 20px;
    }
    .kolom img{
        max-height: 120px;
    }

    /* ── Pagina 5- Reviews ── */
    .reviews {
        flex-direction: column;
    }
    .review-card {
        width: 100%;
        margin-bottom: 20px;
    }
}
/* voor tablet*/
@media screen and (min-width: 601px) and (max-width: 1024px) {
   #hamburger {
            display: block;
        }
        /* op kleine scherm: menu eerst verbergen */
        #menuitems {
            display: none;
        }
        /* als de nav de class 'show' heeft toon menu weer */
        .topnav.show #menuitems {
            display: block;
        }
        /* op kleine scherm: menu-items onder elkaar */
        #menuitems a {
            display: block;
            margin: 5px 0;
        }
        .topnav a {
        margin-right: 10px;
        font-size: 14px;
    }

    /* Pagina 1 layout */
    .content {
        flex-direction: row;         
        align-items: flex-start;
        padding: 15px;
        gap: 16px;
    }
    .tekst {
        width: 55%;
    }
    .afbeelding1 {
        width: 38%;
        max-width: 100%;
    }

    /* Pagina 2 - overzicht */
    .overzicht {
        flex-direction: column;
    }
    .kolom {
        width: 100%;
        margin-bottom: 20px;
    }
     /* Pagina 3 - praktisch */
    .praktisch {
        flex-direction: column; 
    }

    .links, .midden, .rechts {
        width: 100%;
    }


    .kaart {
        max-width: 500px;
        
        height: auto;
    }
    
 /* Pagina 4 - activiteiten */
main {
    display: block; 
}

    .overzicht {
    flex-direction: column;
    width: 100%;
    }

    .onder {
    width: 100%;
    padding-left: 0;
    }
    .kolom {
        width: 100%;
        margin-bottom: 15px;
    }
    .faq {
        width: 100%;
    }
    .foto {
        width: 100%;
        margin-top: 15px;
    }
    .foto img {
        width: 100%;
    }
    .kolom img {
        max-height: 140px;
    }
    /* Pagine 5 - reviews */
    .reviews {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .review-card {
        width: 45%;
        margin-bottom: 0;
    }
}

