/* 
Name: M.Deniz
Date: 23-09-2025
*/

/* Algemene styling */
/* Algemene link styling */

a {
    color: rgb(255, 255, 255);
    text-decoration: none;
}

a:hover {
    color: rgb(255, 255, 255);
    text-decoration: underline;
}

/* Titels */
h1 {
    color: rgb(0, 0, 0);
}

/* styling navigation bar */
header {
    background-color: rgb(9, 9, 103);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

nav ul {
    list-style-type: none;
    display: flex; /* zorgt ervoor dat items naast elkaar komen */
}

nav li {
    margin-left: 20px;
}

/* styling cards grid */
.menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 20px 0;
    padding: 0 20px;
}

.card {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 12px rgba(0,0,0,0.2);
}

.card img {
    width: 80px;
    height: auto;
    margin-bottom: 15px;
}

.card h3 {
    margin: 10px 0;
    color: rgb(9, 9, 103);
}

.card p {
    font-size: 0.9rem;
    color: #333;
}

/* Footer */
footer {
    margin-top: 40px;
    background-color: rgb(9, 9, 103);
    color: white;
    text-align: center;
    padding: 15px;
}

/* Maak de volledige card klikbaar als link */
.card {
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
}

.card h3 {
	color: var(--text);
}



.geschiedenis .image-gallery 
{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.geschiedenis figure 
{
    max-width: 300px;
    text-align: center;
}

.geschiedenis img 
{
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.geschiedenis img:hover 
{
    transform: scale(1.05);
}

.geschiedenis figcaption 
{
    font-size: 0.9rem;
    color: #555;
    margin-top: 8px;
}
