/* style.css - Luxe Goud & Smaragdgroen Thema */
:root {
    --primary-dark: #132a13; /* Diep smaragd/zwartgroen */
    --primary-light: #2c4c2c; /* Rijk bosgroen */
    --accent-gold: #d4af37; /* Champagne Goud */
    --accent-hover: #b5952f; /* Iets donkerder goud voor hover */
    --text-main: #2b2b2b; /* Zacht houtskool grijs voor leesbaarheid */
    --text-light: #a3b1a3; /* Zacht groengrijs voor subtitels */
    --bg-light: #fdfbf7; /* Warme parelmoer/crème achtergrond */
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Open Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--primary-dark); font-weight: 700; }
a { text-decoration: none; color: inherit; }

/* --- Utility Classes --- */
.bg-light { background-color: var(--white); } /* Afwisseling met de crème basis */
.bg-dark { background-color: var(--primary-dark); color: var(--white); }
.bg-dark h2, .bg-dark h3 { color: var(--accent-gold); }
.text-center { text-align: center; }

/* --- Navigatie --- */
header {
    background-color: var(--primary-dark);
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.logo { color: var(--accent-gold); font-size: 2.2rem; font-weight: bold; font-family: var(--font-heading); letter-spacing: 1px; }
nav ul { list-style: none; display: flex; gap: 2rem; align-items: center; }
nav ul li a { color: var(--white); font-weight: 400; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; transition: color 0.3s; }
nav ul li a:hover { color: var(--accent-gold); }
.btn-nav { background-color: var(--accent-gold); color: var(--primary-dark) !important; padding: 0.6rem 1.8rem; border-radius: 3px; font-weight: 600 !important; }

/* --- Hero Banner --- */
.hero {
    min-height: 85vh;
    background-color: var(--primary-dark);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
}
.hero::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(19,42,19,0.2), rgba(19,42,19,0.2)); z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero h1 { color: var(--accent-gold); font-size: 2.5rem; margin-bottom: 1.5rem; line-height: 1.2; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.hero p { color: var(--white); font-size: 1rem; margin-bottom: 1.5rem; font-weight: 300; }
.cta-buttons { display: flex; gap: 1.5rem; justify-content: center; }

/* Knoppen (Luxe, rechthoekiger met lichte afronding in plaats van ronde pillen) */
.btn-primary, .btn-secondary {
    padding: 1rem 2.5rem; border-radius: 4px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease; border: none; display: inline-block; text-transform: uppercase; letter-spacing: 1px;
}
.btn-primary { background-color: var(--accent-gold); color: var(--primary-dark); box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2); }
.btn-primary:hover { background-color: var(--white); transform: translateY(-2px); }
.btn-secondary { background-color: transparent; border: 1px solid var(--accent-gold); color: var(--accent-gold); }
.btn-secondary:hover { background-color: var(--accent-gold); color: var(--primary-dark); }

/* --- Algemene Sectie Opmaak --- */
.section-padding { padding: 6rem 5%; }
.section-title { font-size: 2rem; margin-bottom: 1.5rem; position: relative; padding-bottom: 15px; }
.section-title::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 3px; background-color: var(--accent-gold); }
.text-left .section-title::after { left: 0; transform: none; }
.section-subtitle { max-width: 800px; margin: 0 auto 4rem auto; font-size: 1rem; color: #555; }

/* --- Split Layout --- */
.split-layout { display: flex; align-items: center; gap: 4rem; }
.split-layout.reverse { flex-direction: row-reverse; }
.split-text { flex: 1; }
.split-text h2 { font-size: 2.0rem; margin-bottom: 1.5rem; }
.split-text p { font-size: 1.0rem; margin-bottom: 1.5rem; color: #444; }
.split-image { flex: 1; position: relative; }
.split-image::before { content: ''; position: absolute; top: -20px; left: -20px; right: 20px; bottom: 20px; border: 2px solid var(--accent-gold); z-index: 0; border-radius: 4px; }
.split-image img { width: 100%; border-radius: 4px; position: relative; z-index: 1; object-fit: cover; box-shadow: 0 15px 30px rgba(0,0,0,0.15); }

/* --- Grids --- */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }

/* --- Icon Cards --- */
.icon-card { background: var(--white); padding: 2rem 2.5rem; border-radius: 4px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.04); border-bottom: 3px solid transparent; transition: all 0.3s; }
.icon-card:hover { transform: translateY(-10px); border-bottom: 3px solid var(--accent-gold); }
.icon-number { color: var(--accent-gold); font-family: var(--font-heading); font-size: 2rem; margin-bottom: 1rem; line-height: 1; }
.icon-card h3 { font-size: 1.4rem; margin-bottom: 1rem; }

/* --- Image Cards --- */
.img-card { background: var(--white); border-radius: 4px; overflow: hidden; box-shadow: 0 10px 20px rgba(0,0,0,0.06); }
.img-card img { width: 100%; height: 320px; object-fit: cover; transition: transform 0.6s ease; filter: grayscale(20%); }
.img-card:hover img { transform: scale(1.05); filter: grayscale(0%); }
.img-card-body { padding: 2rem; text-align: center; }
.img-card-body h3 { font-size: 1.0rem; margin-bottom: 0.5rem; }

/* --- FAQ Sectie --- */
.faq-item { background: var(--bg-light); margin-bottom: 1.5rem; padding: 1.5rem 2rem; border-radius: 4px; border-left: 4px solid var(--accent-gold); box-shadow: 0 2px 10px rgba(0,0,0,0.02); }
.faq-item h4 { font-size: 1.0rem; margin-bottom: 0.8rem; color: var(--primary-dark); font-family: var(--font-body); font-weight: 600; }
.faq-item p { color: #555; font-size: 1.05rem; margin: 0; }

/* --- Footer --- */
footer { background-color: #0b170b; color: var(--white); text-align: center; padding: 4rem 5% 2rem 5%; }
footer p { opacity: 0.5; font-size: 0.9rem; margin-top: 2rem; }

/* --- Mobiele Responsiviteit --- */
@media (max-width: 992px) {
    .split-layout, .split-layout.reverse { flex-direction: column; }
    .split-image::before { display: none; } /* Verwijder gouden rand op mobiel voor strakkere look */
    .hero h1 { font-size: 2rem; }
    .section-title { font-size: 2.2rem; }
}
@media (max-width: 768px) {
    nav ul { display: none; }
    .cta-buttons { flex-direction: column; }
    .btn-primary, .btn-secondary { width: 100%; }
    .hero { min-height: 70vh; }
}