/* Algemene styling */
body {
    background-color: black;
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Pagina container */
.page-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    background-color: #faf7d6;
    background-image: url("../img/achtergrond.png");
    background-size: 100% auto;
    background-repeat: repeat-y;
    background-position: top center;
    color: #000;
}

/* Header */
.header {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    align-items: center;
    padding: 20px;

    background-color: white;   /* witte achtergrond */
    background-image: none;    /* geen achtergrondplaatje */
    position: relative;
    z-index: 2;                /* zorgt dat hij boven de achtergrond staat */
	border-bottom: 4px solid red;
}


/* Home logo */
.homelogo img {
    width: 50px;
    height: auto;
}

/* Naam/logo */
.logo {
    text-align: left;
}

.naam {
    width: 300px;
    height: auto;
}

/* Menu */
.menu {
    text-align: right;
	
}

.menu a {
    margin-left: 20px;
    text-decoration: none;
    color: red;
    font-weight: bold;
}

.menu a:hover {
    text-decoration: underline;
}

/* Content */
.content {
    padding: 40px;
    min-height: 200vh;
}

.footer {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.85); /* lichte, zachte witte laag */
    border-top: 2px solid #e5e5e5;               /* subtiele lijn zoals in musea */
    margin-top: 80px;
}

.footer-inner {
    max-width: 1440px;
    margin: 0 auto;
    text-align: center;
    color: #333;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-name {
    font-weight: bold;
    letter-spacing: 0.5px;
}

.footer-links a {
    color: #a00; /* zelfde rood als je menu */
    text-decoration: none;
    font-weight: bold;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
    .footer {
        padding: 25px 10px;
    }
    .footer-inner {
        font-size: 0.85rem;
    }
}

