/* Algemene stijl en oranje huisstijl */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: transparent;
    color: #333;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

#season-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-position: center;
    transition: background-image 1s ease-in-out;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ff6600; /* Oranje huisstijl kleur */
    padding: 10px 30px;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

#logo {
    height: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffcc66;
}

main {
    padding: 20px 40px;
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 40px;
}

h1, h2, h3 {
    color: #ff6600;
}

#search-bar {
    margin-top: 15px;
}

#site-search {
    padding: 8px;
    font-size: 1rem;
    width: 250px;
    border: 2px solid #ff6600;
    border-radius: 5px 0 0 5px;
    outline: none;
}

#site-search:focus {
    border-color: #cc5200;
}

#search-bar button {
    padding: 9px 15px;
    border: none;
    background-color: #ff6600;
    color: white;
    font-weight: 700;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

#search-bar button:hover {
    background-color: #cc5200;
}

#news-items, #calendar, #clubblad-editions, #wanderings-album, #other-activities-album, #feedback-list, #poll-results {
    margin-top: 10px;
    padding: 10px;
    background: #fff9f0;
    border: 1px solid #ff9900;
    border-radius: 6px;
    min-height: 80px;
}

.album {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.album img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.3s;
}

.album img:hover {
    transform: scale(1.1);
}

form {
    margin-top: 10px;
}

input[type=text], input[type=email], input[type=number], input[type=tel], textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 12px;
    border: 1px solid #ff6600;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1rem;
}

button[type=submit], button {
    background-color: #ff6600;
    border: none;
    padding: 10px 20px;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button[type=submit]:hover, button:hover {
    background-color: #cc5200;
}

footer {
    background-color: #ff6600;
    color: white;
    padding: 15px 30px;
    text-align: center;
    font-size: 0.9rem;
    position: relative;
}

#contact-info p {
    margin: 4px 0;
}

#visitor-counter {
    font-weight: bold;
    margin-bottom: 6px;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        flex-wrap: wrap;
    }

    nav ul li {
        margin: 5px 10px 5px 0;
    }

    main {
        padding: 10px 15px;
        margin-top: 10px;
    }

    #site-search {
        width: 100%;
        margin-bottom: 8px;
    }
}
