/* Huisstijl Ceremoniespelers
    Donkergroen: #5f6f52
    Lichtgroen: #a9b388
    Gebroken wit: #fefcdf
    Licht bruin: #b99470
    Licht paars: #9b9cb0
    Donker paars: #6d5e98
    
*/

/* style.css */

body {
    font-family: Arial, sans-serif;
    font-size: 14px;
    letter-spacing: 0.5px;
    margin: 0;
    padding: 0;
    background-color: #9b9cb0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    width: 100%;
    height: 220px; /* Adjust the height as needed */
    background-image: url('siteheader2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.footer {
    width: 100%;
    margin: 20px;
    margin-bottom: 0px;
    padding: 40px;
    background: #363636;
    color: #f8f8f8;
    text-align: center;
    box-sizing: border-box;
    border: 0px solid #fff;
	z-index: -1;
}
.footer-link {
    color: #f8f8f8;
    text-decoration: none; /* Optional: Remove underline */
}

.footer-link:hover {
    text-decoration: underline; /* Optional: Underline on hover */
}

header h1 {
    position: relative;
    /* z-index: 2; Remove z-index */
    color: #fefcdf;
    text-shadow: 2px 2px 4px #363636;
    letter-spacing: -2px;
    background-size: contain;
    padding-left: 0px;
    display: inline-block;
    height: 100px;
    line-height: 100px;
}

.content-wrapper {
    margin-top: 220px; /* Adjust margin top to push content below the header */
    width: 100%;
    max-width: 1200px;
}

main {
    margin-top: 230px; /* Adjust margin top to push content below the header */
    display: flex;
    width: 100%;
    margin: 0 auto;
    flex-wrap: wrap;
}

section {
    width: 48%; 
    box-sizing: border-box;
    vertical-align: top;
    margin: 10px;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    display: inline-block;
}
.section footer {
    background-color: #f8f8f8;
    padding: 0px;
    border-top: 2px solid #363636;
    margin-top: auto; /* Align footer to the bottom of the section */
	position: relative; /* Position the footer absolutely */
	align-self: flex-end;
	width: 100%;
}
h2 {
	margin-top: 10px;
    letter-spacing: -3px;
    font-size: 36px;
	align-self: flex-start;

}


img {
    max-width: 100%;
    height: auto;
    border-radius: 40px;
    margin-top: 0;
}

a {
    color: #363636;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

audio {
    width: 100%;
    margin-top: 0;
}

ol {
    background-color: #f8f8f8; 
    padding: 20px; 
    border-radius: 5px; 
	max-height: 200px; /* Set maximum height */
    overflow-y: auto; /* Enable vertical scrolling */
}
.afscheid {
    background-color: #f8f8f8; 
    padding: 20px; 
    border-radius: 5px; 
	max-height: 350px; /* Set maximum height */
    overflow-y: auto; /* Enable vertical scrolling */
}
li {
    margin-bottom: 5px;
	margin-left: 10px;
}


hr {
    border: 1px solid #363636;
}

button {
	font-family: Arial, sans-serif;
    font-size: 14px;
    background-color: #363636;
    color: #f8f8f8;
    padding: 10px 20px; 
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease; /* Add smooth transition */
}

button:hover {
    background-color: #555; 
}
section.speellijst {
	position: relative;
    border: 0 solid #363636;
    border-radius: 5px;
    padding: 20px;
	background-image: url('sheetmusic.jpg');
	background-size: cover; 
    background-repeat: no-repeat;
	background-position: bottom;
    background-color: #ccc;
    color: #000000;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    width: 48%;
    box-sizing: border-box;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}
section.speellijst::after {
    content: "";
    position: absolute;
	border-radius: 5px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(254, 252, 223, 0.5); /* Color with 50% transparency */
	z-index: 1; /* Position the overlay behind the content */
}