body {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'CoFo Sans', sans-serif;
    background-color: #FFF;
}


body, html {
    margin: 0;
    padding: 0;
    min-height: 90vh; /* Zorg ervoor dat de pagina minimaal de hoogte van het scherm heeft */
    display: flex;
    flex-direction: column;
}


header {
    display: flex;
    position: fixed;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 20px 1rem 30px;
    background-color: black;
    color: #fff;
    top: 0;
    width: 100%;
    z-index: 15;
}

.logo a {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    font-family: Ubuntu;
    font-size: 1.75em;
}



body {
    margin-top: 6.5rem;
}



.logo1 {
    margin: 0 auto;               /* Zorgt ervoor dat logo1 in het midden staat */
    display: flex;
    justify-content: center;       /* Zorgt dat de inhoud van logo1 in het midden wordt uitgelijnd */
    align-items: center;
}

.logo1 a {
    display: block;
    width: 120px;                  /* Standaard breedte voor grotere schermen */
    height: auto;
    text-align: center;
}

.logo1 a img {
    max-width: 100%;
    height: auto;
    display: block;
}

.logo2 a {
    display: block;
    width: auto;
    height: 57.41px;
    text-align: center;
}
  
.logo2 a img {
    max-height: 100%;
    height: auto;
    display: block;
}


.logo2 {
    margin: 0 auto;
}



main.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
}

/* Stijl voor de foto-links */
.image-links {
    width: 70vw;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.image-link img {
    width: 100%;              /* Zorg dat de afbeelding de volledige breedte vult */
    height: calc(70vw / 5);    /* Bereken de hoogte om de 5:1 verhouding te behouden */
    object-fit: cover;         /* Zorg dat de afbeelding goed geschaald wordt zonder te vervormen */
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.image-link img:hover {
    transform: scale(1.05);    /* Lichte zoom-in bij hover */
}


.image-links a:last-of-type {
    margin-bottom: 2rem;
}


.image-link img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}





.voorwaardenTekst {
    text-align: center;
    padding: 1rem 0 1.5rem 0;
}

.voorwaardenTekst a {
    font-style: italic;
    color: black;
    text-decoration: none;
    color: black;
    font-weight: 500;
}

.voorwaardenTekst a:hover {
    text-decoration: underline;  /* Onderstreping bij hover */
}



/* Media query voor grotere schermen */
@media (min-width: 768px) {
    header {
        justify-content: space-between;
    }
}

/* Media query voor kleinere schermen */
@media (max-width: 767px) {

    
    .image-links {
        width: 80vw;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }    


}

@media only screen and (max-width: 750px) {
    .containerInfo {
        width: 90%;
    }
    
    .logo2 a {
        height: 7vw; /* Pas de hoogte aan voor een kleiner logo */
    }

    .logo1 a {
        width: 17vw;               /* Verklein de breedte voor kleinere schermen */
        height: auto;
    }

    .logo2, .logo1 {
        display: flex;
    }
    .containerInfo {
        width: 95%;
    }
}



@media only screen and (max-width: 450px) {
    .logo2, .logo1 {
        display: flex;
    }
    .logo2 a {
        height: 31px;
    }

    .logo1 a {
        width: 76px;
        height: auto;
    }
}





@media (max-width: 1200px) {
    .image-link:nth-of-type(1) img {
        content: url("../images/LICHT 2-1.png");
    }
    .image-link:nth-of-type(2) img {
        content: url("../images/LICHTSETS 2-1.png");
    }
    .image-link:nth-of-type(3) img {
        content: url("../images/SPEAKERSETS 2-1.png");
    }
    .image-link:nth-of-type(4) img {
        content: url("../images/SFX 2-1.png");
    }
    .image-link:nth-of-type(5) img {
        content: url("../images/TRUSS 2-1.png");
    }
}


