/* --- Reset & Variabelen --- */
:root {
    --primary-color: #3A4D39; /* Vintage olijfgroen */
    --accent-color: #D4A373;  /* Warm hout/goud */
    --bg-color: #FDFBF7;      /* Zacht crème wit */
    --text-color: #333333;
    --light-bg: #F0EFEB;
    --font-heading: 'Lora', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Navigatie --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--bg-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.nav-links { display: flex; gap: 2rem; }
.nav-links a {
    font-weight: 500;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--accent-color); }

/* Burger Menu (Mobiel) */
.burger { display: none; cursor: pointer; }
.burger div {
    width: 25px; height: 3px; background-color: var(--primary-color);
    margin: 5px; transition: all 0.3s ease;
}

/* --- Hero Sectie --- */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1555041469-a586c61ea9bc?auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero h1 { color: white; font-size: 3rem; margin-bottom: 0.5rem; }
.hero p { font-size: 1.2rem; margin-bottom: 2rem; }

/* Knoppen */
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn {
    padding: 12px 24px;
    border-radius: 2px;
    font-weight: 600;
    transition: transform 0.2s;
}
.btn:hover { transform: translateY(-3px); }

.primary { background-color: var(--accent-color); color: white; }
.secondary { background-color: white; color: var(--primary-color); }

/* --- Secties Algemeen --- */
.section { padding: 4rem 5%; text-align: center; }
.bg-light { background-color: var(--light-bg); }
.container { max-width: 1100px; margin: 0 auto; }
.intro-text { max-width: 700px; margin: 0 auto; font-size: 1.1rem; }

/* --- Galerij --- */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
    transition: opacity 0.3s;
}
.gallery-item img:hover { opacity: 0.9; }

/* Social Bar */
.social-bar { margin-top: 3rem; }
.social-bar .icons { font-size: 2rem; margin-top: 1rem; }
.social-bar i { margin: 0 10px; color: var(--primary-color); transition: color 0.3s; }
.social-bar i:hover { color: var(--accent-color); }

/* --- Footer --- */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 5% 1rem;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: left;
}
.footer-section h3 { color: var(--accent-color); font-size: 1.2rem; }
.copyright {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.8rem;
    opacity: 0.7;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
}

/* --- Mobiel Responsive --- */
@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 8vh;
        background-color: var(--bg-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    }
    .nav-links li { opacity: 0; margin-top: 20px;}
    .burger { display: block; }
    .hero h1 { font-size: 2rem; }
    
    .nav-active { transform: translateX(0%); }
    
    @keyframes navLinkFade {
        from { opacity: 0; transform: translateX(50px); }
        to { opacity: 1; transform: translateX(0px); }
    }
}