body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Zorg dat de footer altijd onderaan staat */
}

header {
    background: #005f73;
    color: white;
    padding: 1rem 0;
}

.top-div {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 1rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

main {
    flex: 1; /* Zorg dat de content ruimte inneemt */
    padding: 2rem 1rem;
}


.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsieve layout */
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #ddd;
}

.gallery-item h3 {
    margin: 0.5rem 0;
    font-size: 1.2rem;
    color: #005f73;
}

.gallery-item p {
    margin: 0 1rem 1rem;
    color: #555;
    font-size: 0.9rem;
}

footer {
    background: #333;
    color: white;
    padding: 2rem 1rem;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin: 1rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: #ccc;
}

.footer-section a {
    color: #94d2bd;
    text-decoration: none;
}

.footer-section a:hover {
    color: #ffffff;
}
.footer-bottom {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: #ccc;
    border-top: 1px solid #555;
    padding-top: 1rem;
}
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        text-align: center;
    }
}

