/* Color Scheme */
:root {
    --background-color: #FFF8F0; /* crème */
    --header-footer-color: #D76C4A; /* terracotta */
    --button-link-color: #E0B251; /* okergeel */
    --accent-color: #3D5A40; /* dennengroen */
    --text-color: #333333;
    --white: #FFFFFF;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: var(--header-footer-color);
    height: 100px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.logo span {
    color: var(--button-link-color);
}

nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.menu li {
    margin: 0 20px;
}

.menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.menu a:hover {
    color: var(--button-link-color);
}

.menu a.active {
    color: var(--button-link-color);
    font-weight: bold;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
    margin: 0 20px;
}

.dropbtn {
    background-color: var(--button-link-color);
    color: var(--white);
    padding: 10px 15px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 250px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 4px;
    overflow: hidden;
    left: 50%;
    transform: translateX(-50%);
}

.dropdown-content a {
    color: var(--text-color);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.dropdown-content a:hover {
    background-color: var(--background-color);
    color: var(--accent-color);
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Search Bar Styles */
.search-container {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.search-bar {
    display: flex;
    align-items: center;
}

.search-bar input[type="text"] {
    padding: 10px;
    border: none;
    border-radius: 4px 0 0 4px;
    width: 200px;
}

.search-bar button {
    background-color: var(--button-link-color);
    color: var(--white);
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    transition: background-color 0.3s ease;
}

.search-bar button:hover {
    background-color: var(--accent-color);
}

/* Hero Section Styles */
.hero {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Section Styles */
.content-section {
    padding: 40px 0;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.content-section.active {
    display: block;
    opacity: 1;
}

.content-section h2 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 28px;
}

.content-section p {
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Sidebar Styles */
.sidebar {
    background-color: var(--header-footer-color);
    padding: 20px;
    border-radius: 4px;
    color: var(--white);
    display: block;
}

.sidebar h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.sidebar h4 {
    margin: 15px 0 10px;
    font-size: 16px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.sidebar ul li {
    margin-bottom: 8px;
}

.sidebar label {
    margin-left: 5px;
    cursor: pointer;
}

.price-range {
    margin-bottom: 20px;
}

.price-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
}

.filter-button {
    background-color: var(--button-link-color);
    color: var(--white);
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.filter-button:hover {
    background-color: var(--accent-color);
}

.search-results .sidebar {
    display: block;
}

/* Footer Styles */
footer {
    background-color: var(--header-footer-color);
    color: var(--white);
    padding: 20px 0;
    margin-top: auto;
    height: 120px;
    width: 100%;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--button-link-color);
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--button-link-color);
}

/* FAQ Styles */
.faq-item {
    margin-bottom: 20px;
}

.faq-item h3 {
    color: var(--accent-color);
    margin-bottom: 10px;
}

/* Sponsoring Styles */
.sponsoring-list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.sponsoring-list li {
    margin-bottom: 10px;
}

/* Adverteerders Styles */
.adverteerders-list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

/* Layout for search results page */
.search-results-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.search-info {
    background-color: var(--white);
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.search-results-placeholder {
    background-color: var(--white);
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.search-results-content {
    flex: 1;
}

.search-filters {
    padding: 15px;
    background-color: var(--white);
    border-radius: 4px;
    margin-bottom: 20px;
}

/* Main content area */
main {
    flex: 1;
    padding: 1px 0;
}

/* Two-column layout for search results page */
.two-column-layout {
    display: flex;
    gap: 20px;
}

.main-content {
    flex: 3;
}

.sidebar {
    flex: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .header-container {
        flex-wrap: wrap;
    }
    
    .logo {
        margin-right: 40px;
    }
    
    .menu {
        margin-right: 40px;
    }
    
    .dropdown {
        margin-right: 40px;
    }
    
    .search-bar input[type="text"] {
        width: 150px;
    }
}

@media (max-width: 768px) {
    .two-column-layout {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
    }
}

@media (max-width: 600px) {
    header {
        height: auto;
        padding: 15px 0;
    }
    
    .header-container {
        flex-direction: column;
        padding: 10px;
    }
    
    nav {
        flex-direction: column;
        justify-content: center;
        margin: 10px 0;
    }
    
    .menu {
        flex-wrap: wrap;
        justify-content: center;
        margin: 10px 0;
    }
    
    .menu li {
        margin: 5px 10px;
    }
    
    .dropdown {
        margin: 10px 0;
    }
    
    .search-container {
        width: 100%;
        margin: 10px 0;
    }
    
    .search-bar {
        width: 100%;
    }
    
    .search-bar input[type="text"] {
        width: 100%;
    }
    
    .sidebar {
        display: none;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        margin-bottom: 15px;
    }
    
    .footer-links a {
        display: block;
        margin-bottom: 5px;
    }
}