body {
    margin: 0;
    padding: 0;
    background-image: url('img/Achtergrond.png');
    background-size: 100vw auto;  
    background-repeat: repeat;    
    color: white;
    font-family: "Gothic A1", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
 
html {
    scroll-behavior: smooth;
}

.highlightyellow {
    color: yellow; 
}

.highlightpink{
    color: rgb(248, 178, 221);
}

.content h3{
    color: rgb(121, 228, 255);
}


a {
    text-decoration: none;
    color: white;
    transition: color 0.3s;
}

a:hover {
    color: rgb(248, 178, 221);
    transition: color 0.3s;
}

a:after{
    transition: color 0.3s;
}

/*indexpagina*/
/*video*/ 



.video-background {
    position: absolute;  
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; 
    z-index: -1;  
}


.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;  
    
}

/*headerliner*/ 

.headlinerindex {
    color: white;
    font-weight: 400;
    margin-top: 20px; /* Optioneel: ruimte boven het element */
    text-align: center;
    border-bottom: 5px solid white;
    width: 80%; /* Zorgt ervoor dat de breedte van het element 80% is */
    margin-left: auto; /* Centraal positioneren */
    margin-right: auto; /* Centraal positioneren */
}

.headlinerindex h1 {
    font-family: 'Bardtmarkerraw', Arial, sans-serif;
    font-size: 8vw;
    position: relative;
    z-index: 1;
    
}

/* nav */

.image-container {
    display: flex; 
    justify-content: center; 
    align-items: center;
    margin-top: 30px;
    gap: 20px; 
}

.image-container img {
    max-width: 250px; 
    height: 300px; 
    border: 2px solid white; 
    border-radius: 10px; 
    transition: transform 0.3s ease;
    filter: grayscale(100%);
}

.image-container img:hover {
    transform: scale(1.1); 
}

/* foto-gris */ 

.photo-grid {
    display: grid;
    grid-template-columns: repeat(6, 12.5vw);
    grid-template-rows: repeat(6);
    gap: 1vw; 
    padding: 10.5vw;
   
}


.photo-grid img {
    height: auto;
    object-fit: cover;
    display: block;
}

.photo-grid img.small {
    grid-column: span 1; /* Klein: 1 kolom breed */
    aspect-ratio: 1; /* Vierkant */
    width: 12.5vw;
    height: 12.5vw;
}

.photo-grid img.medium {
    grid-column: span 2; /* Medium: 2 kolommen breed */
    aspect-ratio: 1.5; /* Rechthoek */
    width: 26vw;
    height: 12.5vw;
}

.photo-grid img.long {
    grid-column: span 1; /* Medium: 2 kolommen breed */
    aspect-ratio: 1.5; /* Rechthoek */
    grid-row: span 2;
    width: 12.5vw;
    height: 26vw;
}

.photo-grid img.large {
    grid-column: span 2; /* Groot: 3 kolommen breed */
    grid-row: span 2;
    aspect-ratio: 2; /* Brede rechthoek */
    width: 26vw;
    height: 26vw;
}

.photo-grid img.extralarge {
    grid-column: span 3; /* Groot: 3 kolommen breed */
    grid-row: span 2;
    aspect-ratio: 2; /* Brede rechthoek */
    width: 39.5vw;
    height: 26vw;
}

.photo-grid img.extralong {
    grid-column: span 1; /* Groot: 3 kolommen breed */
    grid-row: span 3;
    aspect-ratio: 2; /* Brede rechthoek */
    width: 12.5vw;
    height: 39.5vw;
}


@font-face {
    font-family: 'Bardtmarkerraw';
    src: url('./font/Bardtmarkerraw.ttf') format('truetype');
}