:root {
    --primary-color: #fec000;
    --text-color: #000000;
    --background-light: #f8f9fa;
    --border-radius: 5px;
    --accent-color: #ff6b00;
    --secondary-color: #e9ecef;
    --shadow-color: rgba(0,0,0,0.1);
}

.titel {
    font-family: 'Anton', sans-serif;
    font-weight: lighter;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 2em;
    margin-bottom: 0px;
    text-align: center;
}

.galerijen {
    display: grid;
    gap: 2%;
    margin: 0 auto;
    max-width: 60%;
}

.galerij {
    transition: all 0.3s ease;
    overflow: hidden;
}

.galerij:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px var(--shadow-color);
}

.galerij img {
    width: 100%;
    height: auto;
    display: block;
}

.zoekHier {
    text-align: center;
    font-size: 1.2em;
}

.link {
    color: var(--accent-color);
    text-decoration: underline;
    font-weight: bold;
    transition: all 0.3s ease;
}

.link:hover {
    color: var(--primary-color);
}

.fotograaf {
    text-align: center;
    font-style: italic;
    font-size: 1.3rem; 
    max-width: 60%;
    margin: 0 auto;
}

.fotograaf h1 {
    font-size: 1.5rem; 
}

.fotograaf h2 {
    font-size: 1.5rem; 
}


.linkFotograaf {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.linkFotograaf:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Media Queries */
@media (max-width: 1024px) {
    .titel {
        font-size: 1.3em;
    }
    
    .fotograaf p {
        font-size: 0.8em;
    }

    .fotograaf h1 {
        font-size: 1.1em;
    }
	
	    .fotograaf h2 {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .titel p {
        font-size: 2em;
    }

    .galerijen {
        grid-template-columns: 1fr !important;
        gap: 15px;
        max-width: 40% !important;
    }

    .fotograaf h1 {
        font-size: 20px;
    }

    .fotograaf h2 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .titel {
        font-size: 1em;
    }

    body {
        max-width: 100%;
        padding: 10px;
    }

    .galerijen {
        grid-template-columns: 1fr !important;
        gap: 20px;
        max-width: 50% !important;
    }

    .zoekHier {
        font-size: 1em;
        max-width: 90%;
        margin: 0 auto;
    }
    
    .titel p {
        font-size: 2.5em;
        max-width: 80%;
        margin: 0 auto;
    }

    .fotograaf {
        max-width: 90%;
    }

    .fotograaf p {
        font-size: 0.7em;
    }

    .fotograaf h1 {
        font-size: 0.8em;
        margin-top: -10px;
    }

    .fotograaf h2 {
        font-size: 0.8em;
        margin-top: -10px;
    }
}