/* Algemene Stijlen met Modern Groenachtig Palet */
:root {
    /* Licht Thema Palet */
    --primary-color: #2d4a2f;
    /* Diep bosgroen */
    --secondary-color: #5a8f7b;
    /* Rustgevend alpengroen */
    --accent-color: #c89f9c;
    /* Aards roze accent */
    --background-color: #f4f4f2;
    /* Zacht gebroken wit */
    --background-alternate: #eaf0e9;
    /* Licht alpengroen */
    --background-contact: #daded4;
    /* Gedempt aardegroen */
    --text-color: #333333;
    /* Donkergrijs */
    --card-background: #ffffff;
    /* Wit */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--background-color);
    margin: 0;
    line-height: 1.6;
    transition: background-color 0.3s, color 0.3s;
}

/* Donker Thema Palet */
.dark-theme {
    --primary-color: #a3b18a;
    --secondary-color: #588157;
    --accent-color: #dda15e;
    --background-color: #1e3522;
    --background-alternate: #243c26;
    --background-contact: #2a402c;
    --text-color: #e8e8e3;
    --card-background: #2a402c;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Moderne Link Stijlen */
a {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease-in-out;
}

a:hover {
    color: var(--primary-color);
}

p a,
.pricing-info a {
    text-decoration: none;
    background: linear-gradient(var(--secondary-color), var(--secondary-color)) bottom / 0 2px no-repeat;
    transition: background-size 0.3s ease-in-out, color 0.3s ease-in-out;
}

.dark-theme p a,
.dark-theme .pricing-info a {
    background: linear-gradient(var(--primary-color), var(--primary-color)) bottom / 0 2px no-repeat;
}

p a:hover,
.pricing-info a:hover {
    background-size: 100% 2px;
}

/* Header */
header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    color: white;
    display: flex;
    flex-direction: column;
}

.navbar {
    background: transparent;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.dark-theme .navbar.scrolled {
    background-color: rgba(30, 53, 34, 0.9);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-links a,
.navbar.scrolled .nav-toggle,
.navbar.scrolled .theme-switcher {
    color: var(--primary-color);
}

.dark-theme .navbar.scrolled .logo,
.dark-theme .navbar.scrolled .nav-links a,
.dark-theme .navbar.scrolled .nav-toggle,
.dark-theme .navbar.scrolled .theme-switcher {
    color: var(--text-color);
}

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

.nav-links li {
    margin-left: 25px;
}

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

.nav-links a:hover {
    color: var(--secondary-color);
}

.dark-theme .navbar.scrolled .nav-links a:hover {
    color: var(--secondary-color);
}

.nav-toggle,
.theme-switcher {
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.theme-switcher {
    display: block;
    margin-left: 20px;
}

/* Hero Sectie */
.hero {
    text-align: center;
    margin: auto;
}

.hero-flag {
    max-height: 50px;
    margin-bottom: 1rem;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    background: var(--secondary-color);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    color: white;
}

/* Secties */
section {
    padding: 80px 0;
    transition: background-color 0.3s;
}

section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.dark-theme section h2 {
    color: var(--text-color);
}

/* Sectie-specifieke achtergrondkleuren */
#lenk p {
    max-width: 800px;
    margin: 0 auto 30px auto;
    text-align: center;
}

.lenk-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
}

#lenk{
    background-color: var(--background-color);
}

#chalet{
    background-color: var(--background-alternate);
}

#upper-house {
    background-color: var(--background-color);
}

#lower-house {
    background-color: var(--background-alternate);
}

#activities {
    background-color: var(--background-color);
}

#events {
    background-color: var(--background-alternate);
}

#pricing{
    background-color: var(--background-color);
}

#contact {
    background-color: var(--background-contact);
}

/* Chalet Sectie */
.chalet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.grid-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ========== Styling voor Faciliteiten Grid ========== */

.facilities-grid {
    list-style: none;
    padding: 25px 0 0 0; /* Ruimte boven de lijst */
    margin-top: 25px; /* Ruimte tussen tekst en lijst */
    border-top: 1px solid #e0e0e0; /* Subtiele scheidingslijn */
    display: grid;
    grid-template-columns: repeat(2, auto); /* Kolommen zo breed als de inhoud */
    justify-content: center; /* Centreert de kolommen in de beschikbare ruimte */
    gap: 20px 40px; /* Verticale en horizontale ruimte tussen items */
}

.dark-theme .facilities-grid {
    border-top-color: #4a627a; /* Lijnkleur voor donker thema */
}

.facility-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: var(--text-color);
}

.facility-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    width: 30px; /* Zorgt voor nette uitlijning */
    text-align: center;
    margin-right: 12px;
}

/* Activiteiten Sectie */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.activity-item {
    text-align: center;
}

.activity-item img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.activity-link {
    display: block;
    text-decoration: none;
    color: inherit;
    font-weight: 400;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.activity-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.activity-link img {
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Evenementen Sectie */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.event-item {
    background: var(--card-background);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.event-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.event-link {
    text-decoration: none;
    color: inherit;
    font-weight: 400;
    display: block;
    padding: 20px;
}

.event-item h3 {
    color: var(--primary-color);
    margin-top: 0;
}

.dark-theme .event-item h3 {
    color: var(--text-color);
}

.event-item img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Kaart Sectie */
.map-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.map-section h2 {
    margin-bottom: 10px;
}

.map-section p {
    margin-bottom: 30px;
    color: #666;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* Info Text Vak Secties */
.info-text-vak {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.info-text-vak p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 0;
}

/* ========== Styling voor Prijzen Sectie ========== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.pricing-item {
    background-color: var(--card-background);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.pricing-item h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 10px;
}

.dark-theme .pricing-item h3 {
    color: var(--text-color);
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.pricing-features i {
    color: var(--secondary-color);
    width: 25px;
    margin-right: 10px;
    text-align: center;
}

.disclaimer {
    text-align: center;
    font-style: italic;
    opacity: 0.8;
    margin-top: 30px;
}

/* ========== Aangepaste Styling voor Contact Sectie ========== */
#contact {
    background-color: var(--background-contact);
}

.contact-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

#contact-form {
    max-width: 700px;
    margin: 0 auto;
}


/* Contact Sectie */
.contact-flex {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.pricing-info,
#contact-form {
    flex: 1;
}

#contact-form {
    display: flex;
    flex-direction: column;
}

#contact-form input,
#contact-form textarea {
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: var(--font-body);
    background-color: var(--card-background);
    color: var(--text-color);
    transition: background-color 0.3s, color 0.3s;
    width: 100%;
    box-sizing: border-box;
}

.dark-theme #contact-form input,
.dark-theme #contact-form textarea {
    background-color: #f0f0f0 !important;
    color: #333333 !important;
    border-color: #555 !important;
}

.submit-button {
    background: var(--accent-color);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.3s;
}

.submit-button:hover {
    background: #b38a87;
    transform: translateY(-2px);
}

.dark-theme .submit-button:hover {
    background: #bc9048;
}

/* Footer */
footer {
    background: #1d2a20;
    color: #e8e8e3;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    max-height: 50px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.footer-contact p {
    margin: 5px 0;
}

.footer-bottom {
    border-top: 1px solid #4a627a;
    padding-top: 20px;
    opacity: 0.7;
}

/* Scroll Animaties */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Ontwerp */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding-left: 25px;
        padding-right: 25px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 65px;
        left: 0;
        background-color: rgba(255, 255, 255, 0.95);
    }

    .dark-theme .nav-links {
        background-color: rgba(30, 53, 34, 0.95);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        text-align: center;
        margin: 0;
    }

    .nav-links a {
        color: var(--primary-color);
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .dark-theme .nav-links a {
        color: var(--text-color);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-toggle {
        display: block;
    }

    .navbar.scrolled .nav-toggle {
        color: var(--primary-color);
    }

    .dark-theme .navbar.scrolled .nav-toggle {
        color: var(--text-color);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

    .footer-content,
    .footer-contact {
        flex-direction: column;
        gap: 20px;
    }

    .event-link {
        padding: 15px;
    }
}

/* ========== Styling voor de Lightbox ========== */
.lightbox-trigger {
    cursor: zoom-in;
    transition: 0.3s;
}

.lightbox-trigger:hover {
    opacity: 0.7;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: auto;
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 85vh;
  animation-name: zoom;
  animation-duration: 0.4s;
  border-radius: 5px;
}

@keyframes zoom {
  from {transform: scale(0.5)}
  to {transform: scale(1)}
}

.close-lightbox {
  position: absolute;
  top: 25px;
  right: 45px;
  color: #fff;
  font-size: 50px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.close-lightbox:hover,
.close-lightbox:focus {
  color: #bbb;
  text-decoration: none;
}