/* Algemene stijl */
html, body {
    height: 100%; /* Ensure the body takes up the full height of the viewport */
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
    font-family: Arial, sans-serif; /* Restoring the font to Arial */
    display: flex;
    flex-direction: column; /* Stack the elements vertically */
    text-align: center; /* Center text in the body by default */
	background:#e3e3e3;

}

main {
	background:white;
	min-width:250px;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    flex-grow: 1;
    padding-top: 40px;
	min-width: 600px;
}
/* Bannerstijl */
.banner {
    position: relative;
    width: 100%;
    height: 150px;
    background: url(heldenhof.png) no-repeat center center / cover;
    display: flex
;
    align-items: center;
    justify-content: center;
    display: flex
;
    flex-direction: column;
    justify-content: flex-end;
    /* height: 100%; */
}

.banner-content {
    background: #0047ab;
    color: white;
    font-weight: bold;
    text-align: center;
    padding: 10px 20px;
    border: 5px solid white;
    border-radius: 5px;
    font-size: 1em;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
    /* opacity: 90%; */
    margin-bottom: -34px;
}

.banner-content h1 {
    margin: 0;
    font-size: 2em; /* Adjusted text size for smaller banner */
    letter-spacing: 1px;
}

/* Headerstijl */
header {
    background: #0047ab;
    color: #fff;
    padding: 20px 0;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

/* Main content stijl */


main h2 {
    color: #333; /* Neutrale donkergrijze kleur */
    font-size: 2em;
}

/* Specifieke regel voor de hoofdpagina */
body.homepage main h2 {
    text-align: center !important; /* Correct placement of !important */
}

/* Overige tekst */
p {
    margin-bottom: 1em;
}

a {
    color: #1e90ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Lijst met straatnaamborden */
.street-links {
    list-style: none;
    padding: 0;
    margin: 20px auto;
    max-width: 600px;
    text-align: center;
}

.street-links li {
    margin: 15px 0;
}

.street-links a {
    text-decoration: none;
    color: white;
    background: #0047ab; /* Blauw zoals straatnaamborden */
    padding: 15px 30px;
    border: 3px solid white;
    display: inline-block;
    font-size: 1.5em;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 5px; /* Lichte afronding voor straatnaambordstijl */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Diepte-effect */
    transition: transform 0.2s ease, background-color 0.3s;
}

.street-links a:hover {
    background: #00317d; /* Donkerdere tint blauw bij hover */
    transform: scale(1.05); /* Lichte vergroting bij hover */
}

/* Footerstijl */
footer {
    background: #35424a;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
    font-size: 0.9em;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .banner-content {
        font-size: 1em;
        padding: 10px 20px;
    }

    main {
        padding: 15px;
		padding-top:40px;
		min-width: 300px;
    }

    header h1 {
        font-size: 2em;
    }

    .street-links a {
        font-size: 1.2em;
        padding: 10px 20px;
    }
}
