:root {
    /* --- HERZIEN KLEURENPALET --- */
    --primary-color: #007bff; /* Professioneel blauw */
    --primary-color-light: #e6f2ff; /* Lichtblauw voor achtergronden */
    --secondary-color: #e83e8c; /* Vriendelijk roze accent */
    --background-color: #f8f9fa;
    --text-color: #343a40;
    --text-color-light: #6c757d; /* Lichter grijs voor subtiele tekst */
    --card-bg-color: #ffffff;
    /* --- HIER IS DE WIJZIGING --- */
    --font-family: 'Nunito', sans-serif;
}

body {
    font-family: var(--font-family);
    margin: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.7;
}

/* --- NAVIGATIE STIJLEN --- */
.main-nav {
    background-color: #fff;
    padding: 0.5rem 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-content { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; }
.logo img { height: 130px; width: auto; }
.main-nav ul { list-style: none; display: flex; align-items: center; gap: 1.5rem; margin: 0; padding: 0; }
.main-nav a { text-decoration: none; color: var(--text-color); font-weight: 500; transition: color 0.3s ease; }
.main-nav a:not(.logo):not(.nav-button):hover { color: var(--primary-color); }
.nav-button {
    background-color: var(--secondary-color);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: background-color 0.3s ease;
}
.nav-button:hover { background-color: #d63384; color: white !important; }

/* --- HEADER STIJLEN --- */
header {
    background: linear-gradient(135deg, var(--primary-color), #6610f2);
    color: white;
    text-align: center;
    padding: 4rem 1rem;
}
header h1 { margin: 0; font-size: 2.8rem; font-weight: 700; }
header p { margin: 0.5rem 0 0; font-size: 1.2rem; opacity: 0.9; }

main { max-width: 1200px; margin: 0 auto; padding: 2.5rem; }

/* --- FILTERBALK STIJLEN --- */
.filter-bar { background-color: var(--card-bg-color); padding: 2rem; border-radius: 12px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06); margin-bottom: 2.5rem; }
.filter-bar h2 { margin-top: 0; text-align: center; margin-bottom: 2rem; font-size: 1.8rem; font-weight: 700; }
#filter-form { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem 2rem; align-items: end; }
.form-group { display: flex; flex-direction: column; }
.form-group label { font-weight: 600; margin-bottom: 0.5rem; }
.form-group select, .form-group input { width: 100%; padding: 0.75rem; border: 1px solid #ced4da; border-radius: 8px; font-family: var(--font-family); font-size: 1rem; box-sizing: border-box; }
.form-group-checkboxes { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group-checkboxes > label { font-weight: 600; margin-bottom: 0.25rem; }
.checkbox-container { display: flex; flex-direction: column; gap: 0.5rem; padding-top: 0.25rem; }
.checkbox-wrapper { display: flex; align-items: center; }
.checkbox-wrapper input { margin-right: 0.75rem; width: auto; min-width: auto; }
.checkbox-wrapper label { font-weight: 400; margin: 0; }

/* --- FEESTJES KAARTEN STIJLEN --- */
#listings-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; }
.listing-card {
    background-color: var(--card-bg-color);
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.listing-card:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12); }
.listing-card.featured { border: 2px solid var(--secondary-color); position: relative; }
.featured-badge { position: absolute; top: 10px; right: -1px; background-color: var(--secondary-color); color: white; padding: 5px 15px; font-size: 0.9rem; font-weight: 600; border-top-left-radius: 10px; border-bottom-left-radius: 10px; box-shadow: -2px 2px 5px rgba(0,0,0,0.2); }
.listing-card img { width: 100%; height: 200px; object-fit: cover; }
.card-content { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }
.card-body { flex-grow: 1; }
.card-content h3 { margin-top: 0; margin-bottom: 0.75rem; color: var(--primary-color); font-weight: 700; }
.card-info { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; color: var(--text-color-light); font-weight: 600; }
.card-info .category {
    background-color: var(--primary-color-light);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}
.card-content p { margin-bottom: 1.5rem; color: var(--text-color-light); }
.card-button {
    display: block;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 0.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}
.card-button:hover { background-color: #0056b3; }
#no-results { text-align: center; font-size: 1.2rem; padding: 3rem; width: 100%; grid-column: 1 / -1; }

/* --- DETAILPAGINA STIJLEN --- */
#details-container { max-width: 900px; margin: 2rem auto; padding: 2.5rem; background-color: var(--card-bg-color); border-radius: 12px; box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08); }
.details-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .details-grid { grid-template-columns: 1fr 1fr; } }
.details-image img { width: 100%; border-radius: 12px; object-fit: cover; }
.details-content h1 { font-size: 2.5rem; color: var(--primary-color); margin-top: 0; font-weight: 700; }
.practical-info { margin-top: 1.5rem; padding: 1.5rem; background-color: #f8f9fa; border-radius: 8px; border-left: 5px solid var(--secondary-color); }
.practical-info ul { list-style: none; padding: 0; margin: 0; }
.practical-info li { margin-bottom: 0.75rem; font-size: 1.1rem; }
.practical-info li strong { color: var(--text-color); }
.booking-button { display: block; width: fit-content; margin: 1.5rem auto 0; background: linear-gradient(135deg, var(--secondary-color), #d63384); color: white; padding: 1rem 2rem; border-radius: 8px; text-decoration: none; font-size: 1.2rem; font-weight: 700; text-align: center; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.booking-button:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(232, 62, 140, 0.4); }
.loading-message { text-align: center; font-size: 1.2rem; padding: 2rem; }
.specials-info { margin-top: 1.5rem; }
.specials-info h3 { margin-bottom: 0.5rem; }
.specials-info ul { list-style: none; padding: 0; margin: 0; }
.specials-info li { color: #28a745; font-weight: 600; margin-bottom: 0.5rem; }

/* --- AANMELDFORMULIER STIJLEN --- */
.form-container { max-width: 800px; margin: 2rem auto; padding: 2.5rem; background-color: var(--card-bg-color); border-radius: 12px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07); }
.form-container h1 { text-align: center; margin-bottom: 1rem; }
.form-container p { text-align: center; max-width: 600px; margin: 0 auto 1.5rem; line-height: 1.6; }
.form-container hr { border: none; border-top: 1px solid #eee; margin: 2rem 0; }
.form-container h3 { margin-bottom: 1.5rem; color: var(--primary-color); }
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.form-container textarea { width: 100%; padding: 0.75rem; border: 1px solid #ced4da; border-radius: 8px; font-family: var(--font-family); font-size: 1rem; box-sizing: border-box; resize: vertical; }
.submit-button { display: block; width: 100%; margin-top: 2rem; background: var(--primary-color); color: white; padding: 1rem; border: none; border-radius: 8px; font-size: 1.2rem; font-weight: 700; cursor: pointer; transition: background-color 0.3s ease; }
.submit-button:hover { background-color: #0056b3; }

/* --- FOOTER STIJLEN --- */
footer { text-align: center; padding: 2rem; margin-top: 2rem; background-color: #343a40; color: white; }

/* --- RESPONSIVE FIX VOOR MOBIELE NAVIGATIE --- */
@media (max-width: 768px) {
    .main-nav { padding: 0.5rem 1rem; }
    .nav-content { justify-content: space-between; }
    .logo img { height: 100px; }
    .nav-home-link { display: none; }
}

.breadcrumbs {
    margin-bottom: 1.5rem;
    color: var(--text-color-light);
}
.breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none;
}
.breadcrumbs a:hover {
    text-decoration: underline;
}

.details-header-block {
    margin-bottom: 2rem;
}
.details-header-block h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}
.details-header-block .description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}
.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}
.thumbnail-images {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
}
.thumbnail-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    background-color: var(--card-bg-color);
    border-radius: 12px;
    margin-bottom: 2.5rem;
}
.info-block h2 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
}
.opening-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}
.opening-hours li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding: 0.5rem 0;
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}
.pros-cons-block {
    background-color: var(--card-bg-color);
    padding: 2rem;
    border-radius: 12px;
}
.pros-cons-block h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
}
.pros-cons-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--text-color-light);
}
.pros-cons-block li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.icon-check {
    color: #28a745;
    font-weight: bold;
}
.icon-cross {
    color: #dc3545;
    font-weight: bold;
}

.reviews-section {
    padding: 2rem;
    background-color: var(--card-bg-color);
    border-radius: 12px;
}
.reviews-section h2 {
    font-size: 1.8rem;
    text-align: center;
    margin-top: 0;
    margin-bottom: 2rem;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.review-card {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}
.review-stars {
    color: #ffc107;
    margin-bottom: 1rem;
}
.review-card p {
    font-style: italic;
    color: var(--text-color-light);
}
.review-author {
    font-weight: bold;
    color: var(--text-color);
}