/* =========================================================
   HUISSTIJL + RESET
   ========================================================= */
:root {
    --color-primary: #A3D78A;
    --color-primary-dark: #6E9E5B;
    --color-accent: #FFC300;
    --color-secondary: #FF7043;
    --color-tertiary-accent: #C1E59F;

    --color-soft-bg: #F7F9F9;
    --color-light-bg: #F0F5EB;
    --color-text-main: #1F2933;
    --color-text-muted: #6B7280;
    --color-white: #FFFFFF;

    --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
    --radius-lg: 20px;
    --radius-md: 12px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--color-text-main);
    line-height: 1.6;
    background-color: var(--color-soft-bg);
}

a {
    color: var(--color-primary-dark);
    text-decoration: none;
    transition: color 0.2s;
}
a:hover { color: var(--color-primary); }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--color-primary-dark);
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    }

.container-centered {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* =========================================================
   HEADER
   ========================================================= */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(247, 249, 249, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(163, 215, 138, 0.2);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.logo-text .title {
    font-size: 1.4rem;
    font-weight: 700;
}
.logo-text .subtitle {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

nav a {
    margin-left: 25px;
    font-weight: 600;
    color: var(--color-text-main);
    padding-bottom: 3px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}
nav a:hover {
    color: var(--color-primary-dark);
    border-bottom-color: var(--color-accent);
}

.nav-cta {
    background: var(--color-accent);
    color: var(--color-text-main) !important;
    padding: 8px 18px;
    border-radius: var(--radius-md);
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(255,195,0,0.4);
}
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255,195,0,0.6);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ========= HERO ========= */

.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
    color: white;
}

/* Foto */
.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url('images/LG4_ProjectInternet.webp');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    /* groene overlay
        background: rgba(25, 60, 40, 0.60);
    */
    /* gele overlay
        background: rgba(255, 180, 60, 0.40);
    */
    background: rgba(230, 70, 120, 0.45);

    z-index: 2;
    }

/* Tekst */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
}

.hero h1,
.hero .lead,
.hero .eyebrow {
    color: white !important;
    text-shadow: 0 2px 6px rgba(0,0,0,0.35);
}

.hero-subtitle {
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.35);
}

/* HERO spacing verbeteren */
.hero h1 {
    margin-bottom: 28px;
}

.hero .lead {
    margin-bottom: 42px;
}

.hero-cta-row {
    display: flex;
    gap: 16px;
}

/* Mobiel */
@media(max-width: 900px) {
    .hero {
        text-align: center;
        justify-content: center;
    }
}

/* Banner */
.opendeur-banner {
    position: relative;
    z-index: 10;
    background: var(--color-accent);
    padding: 10px 0;
    margin-top: -40px;
}
.opendeur-banner p {
    font-size: 1.3rem;
}
@media (max-width: 600px) {
    .opendeur-banner p {
        font-size: 1.15rem;
    }
}
/* CTA knoppen */
.btn {
    padding: 12px 25px;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    color: white;
}
.btn-secondary {
    background: white;
    color: var(--color-primary-dark);
    border: 2px solid var(--color-primary-dark);
}


/* =========================================================
   SECTIONS / CARDS / GRIDS
   ========================================================= */
.section-padded { padding: 60px 0; }
.section-light { background: var(--color-light-bg); }

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.card-grid-2,
.card-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 30px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(15,23,42,0.15);
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.tag {
    background-color: var(--color-tertiary-accent);
    color: var(--color-primary-dark);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
}

.info-card ul {
    list-style: none;
    padding-left: 0;
}

.info-card li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.info-card li::before {
    content: '🌿';
    position: absolute;
    left: 0;
    font-size: 1rem;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact-form {
    display: grid;
    gap: 15px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-text-muted);
    background-color: var(--color-soft-bg);
}
.contact-details {
    display: grid;
    gap: 20px;
}

.detail-item {
    padding: 15px;
    border-left: 4px solid var(--color-accent); /* Geel accent */
    background-color: var(--color-light-bg);
    border-radius: var(--radius-md);
}

.detail-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-secondary); /* Oranje voor label */
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}
/* =========================================================
   FOOTER
   ========================================================= */
footer {
    background: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 30px 0;
    font-size: 0.9rem;
}

footer .container.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Linker en rechter kant */
.footer-left,
.footer-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Tekst in footer */
footer p {
    margin: 0;
    line-height: 1.4;
}

/* =============================
   SOCIAL ICONS
   ============================= */

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transition: background 0.2s ease, transform 0.2s ease;
}

.social-links svg {
    width: 18px;
    height: 18px;
    fill: white;
}

/* Hover animatie */
.social-links a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* =============================
   MOBIEL
   ============================= */

@media (max-width: 650px) {
    footer .container.footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .footer-left,
    .footer-right {
        flex-direction: column;
        gap: 10px;
    }
}
/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 700px) {
    nav { display: none; }
    .nav-toggle { display: block; }

    header.nav-open nav {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 20px;
        background: white;
        padding: 15px;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-soft);
    }
}
/* RESET badge → verwijdert alle oude styling */
.opendeur-banner .badge {
    all: unset;
    display: inline-block;
    padding: 6px 12px;
    border-radius: 10px;
    font-weight: 700;
    line-height: 1;
}
.opendeur-banner .badge {
    background: var(--color-primary-dark);
    color: white;
    padding: 6px 12px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.20);
}

/* =============================
   VISION CARDS
   ============================= */

.vision-card {
    background: white;
    padding: 35px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(15,23,42,0.18);
}

.vision-card h3 {
    margin-top: 15px;
    color: var(--color-primary-dark);
    font-weight: 700;
}

.vision-card p {
    margin-top: 10px;
    color: var(--color-text-muted);
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: var(--color-light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 10px auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

