@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Inter:wght@400;500;600;700&family=Syne:wght@400;500;700;800&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    
    --primary-green: #72b01d;
    --dark-green: #329358;
    --dark-bg: #1c2112;
    --light-bg: #f5f0e8;
    --text-dark: #000000;
    --text-light: #ffffff;
    --border-color: #e9eae7;
    --label-color: #7a6a5c;
    /* dark */
    --dark-bg-darkmode: #262626;
    --text-dark-darkmode: #ffffff;
    --text-light-darkmode: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background-color: var(--light-bg);
    line-height: 1.6;
}

body.dark {
     font-family: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-light-darkmode);
    background-color: var(--dark-bg-darkmode);
    line-height: 1.6;
}





.navbar,
.hero-section {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

body.is-loaded .navbar,
body.is-loaded .hero-section {
    opacity: 1;
    transform: translateY(0);
}


.reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

h1,
h2,
h3 {
    font-family: 'Syne', sans-serif;
}


.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: #f8f8f8;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 2px 9px rgba(0, 0, 0, 0.18);
    padding: 14px 0;
}

body.dark .navbar {
    background-color: #424242;
     border-bottom: 1px solid #000000;
}

body.dark .logo-text {
    color: var(--text-light);
}

body.dark .nav-link {
    color: var(--text-light);
}

.nav-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 34px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 26px;
}

.nav-logo {
    font-size: 48px;
    font-weight: 400;
    line-height: 1;
    flex-shrink: 0;
    font-family: 'Syne', sans-serif;
}

.logo-text {
    color: var(--text-dark);
}

.logo-accent {
    color: var(--primary-green);
}

.nav-links {
    display: flex;
    gap: 58px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 20px;
    font-weight: 300;
    font-family: 'DM Sans', sans-serif;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-green);
}

.nav-cta {
    background-color: #2a201a;
    color: var(--text-light);
    border: none;
    padding: 16px 28px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.05;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
}

.resultText {
    color: white;
}

.nav-cta:hover {
    background-color: #3a2b22;
}

@media (max-width: 1280px) {
    .nav-logo {
        font-size: 40px;
    }

    .nav-links {
        gap: 38px;
    }

    .nav-link {
        font-size: 18px;
    }

    .nav-cta {
        font-size: 20px;
        padding: 14px 24px;
    }
}


.hero-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 60px 50px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 50px;
    width: 100%;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-title {
    font-size: 64px;
    font-weight: bold;
    line-height: 1.2;
}

.hero-title.dark {
    font-size: 64px;
    font-weight: bold;
    line-height: 1.2;
    color: var(--text-light);
}

.hero-accent {
    color: var(--primary-green);
}

.hero-subtitle {
    font-size: 24px;
    color: var(--label-color);
}

body.dark .hero-subtitle {
    color: var( --text-light);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--dark-green);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: #2a7a4a;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

body.dark .btn-outline {
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-outline:hover {
    background-color: var(--text-dark);
    color: var(--text-light);
}

.btn-contact {
    background-color: transparent;
    border: 2px solid var(--label-color);
    color: var(--label-color);
}

.btn-contact:hover {
    background-color: var(--label-color);
    color: var(--text-light);
}

.hero-image {
    flex: 1;
    overflow: hidden;
    border-radius: 20px;
    height: 300px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.info-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px 50px;
}

.info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-card {
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-card.green {
    background-color: var(--dark-green);
    color: var(--text-light);
}

.info-card.dark {
    background-color: var(--dark-bg);
    color: var(--text-light);
}

.info-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 16px;
}

.info-stat {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}


.stats-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 50px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    padding: 30px;
    text-align: center;
    border-right: 1px solid var(--border-color);
    flex: 1;
}

.stat-item:last-child {
    border-right: none;
}

.stat-value {
    font-size: 50px;
    font-weight: bold;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.stat-desc {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.4;
}

body.dark .stat-desc {
   color: var(--text-light); 
}


.carousel-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 50px;
}

.section-label {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 48px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 50px;
    font-family: 'Syne', sans-serif;
}

body.dark .section-title{
        color: var(--text-light);
}

.carousel-container {
    position: relative;
}

.carousel-content {
    overflow: hidden;
    border-radius: 40px;
    min-height: 390px;
    max-height: 410px;
    background: linear-gradient(90deg, #dbe6f5 0%, #dbe6f5 50%, #13200f 50%, #13200f 100%);
    display: flex;
    align-items: stretch;
}

.carousel-slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    display: grid;
    width: 100%;
    min-height: 390px;
    max-height: 410px;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    opacity: 0;
    transform: translateX(26px) scale(0.985);
    transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    z-index: 0;
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
    z-index: 1;
}

.slide-image {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0 18px;
}

.slide-image img,
.slide-image video {
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 0;
    display: block;
}

.carousel-slide[data-slide="0"] .slide-image img {
    width: auto;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
}

.slide-content {
    padding: 86px 78px 56px 34px;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 14px;
    overflow: hidden;
}

.slide-label {
    font-size: 34px;
    color: var(--primary-green);
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    line-height: 1;
}

.slide-title {
    font-size: 52px;
    font-weight: 600;
    line-height: 1.05;
    font-family: 'Syne', sans-serif;
}

.slide-text {
    font-size: 18px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', sans-serif;
    max-width: 620px;
}


.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 88px;
    height: 88px;
    border-radius: 50%;
    border: none;
    background: #c8c8c8;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background-color 0.2s ease;
}

.carousel-btn:hover {
    background: #b8b8b8;
}

.carousel-btn svg {
    width: 48px;
    height: 48px;
    fill: none;
    stroke: #111;
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.carousel-btn-prev {
    left: 14px;
}

.carousel-btn-next {
    right: 14px;
}


.accordion-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 50px;
}

.accordion-wrapper {
    margin-top: 30px;
}

.accordion-tabs {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.accordion-tab {
    display: grid;
    grid-template-columns: 56px 1fr;
    column-gap: 30px;
    border-bottom: 2px solid var(--border-color);
    padding: 30px 0;
}

.accordion-tab:first-child {
    border-top: 2px solid var(--border-color);
}

.tab-number {
    grid-column: 1;
    grid-row: 1;
    font-size: 24px;
    font-weight: 800;
    font-family: 'Syne', sans-serif;
    color: var(--primary-green);
    margin-top: 6px;
}

.tab-header {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    position: relative;
    justify-content: space-between;
}



.tab-title {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-green);
    flex: 1;
    margin: 0;
    font-family: 'Syne', sans-serif;
}

.tab-category {
    background-color: rgba(114, 176, 29, 0.28);
    color: var(--primary-green);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    font-family: 'DM Sans', sans-serif;
}

.tab-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    border-radius: 50%;
}

.tab-toggle:hover {
    transform: rotate(90deg);
}

.tab-toggle .icon {
    display: block;
    width: 40px;
    height: 40px;
    color: var(--primary-green);
    transition: transform 0.3s ease;
}

.tab-toggle.active .icon {
    transform: rotate(45deg);
}

.tab-content {
    grid-column: 2;
    grid-row: 2;
    display: block;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

.tab-content.active {
    opacity: 1;
}

.content-body {
    padding: 20px 0 20px 0;
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 16px;
}

body.dark .content-body{
    color: var(--text-light);
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

.content-body p {
    margin-bottom: 15px;
}

.content-body strong {
    color: var(--primary-green);
    font-weight: 600;
}

.content-body ul {
    margin: 15px 0 15px 20px;
    padding-left: 0;
}

.content-body li {
    margin-bottom: 10px;
    list-style-position: inside;
}


.about-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 50px;
}

.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.about-card {
    padding: 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.about-card p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.about-card-green {
    background-color: var(--dark-green);
    color: var(--text-light);
}

.about-card-dark {
    background-color: var(--dark-bg);
    color: var(--text-light);
}

.about-text {
    font-size: 16px;
    color: var(--text-dark);
    margin: 30px 0;
    line-height: 1.8;
}

body.dark .about-text {
  color: var(--text-light);
}

.light-darkmodetoggle{
 background-color: transparent;
    color: black;
    border: solid 3px black;
    padding: 10px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.05;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
    height: 50px;
    width: 50px;
}

.light-darkmodetoggle.dark{
     color: white;
 border: none;
 background-color: black;
}

.bronnenlijst {
    max-width: 1440px;
    margin: 60px auto 0;
    padding: 40px 50px;
    border-top: 1px solid var(--border-color);
    background-color: rgba(114, 176, 29, 0.08);
}

.bronnenlijst p {
    font-size: 14px;
    font-weight: 600;
    color: var(--label-color);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'DM Sans', sans-serif;
}

.stat-item a {
    display:flex;
    align-items: center;
    justify-content: center;
    margin-right: 24px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--label-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.bronnenlijst a:hover {
    color: var(--primary-green);
    border-bottom-color: var(--primary-green);
}

body.dark .bronnenlijst {
    background-color: rgba(114, 176, 29, 0.12);
    border-top-color: rgba(255, 255, 255, 0.1);
}

body.dark .bronnenlijst p {
    color: rgba(255, 255, 255, 0.7);
}

body.dark .bronnenlijst a {
    color: rgba(255, 255, 255, 0.7);
}

body.dark .bronnenlijst a:hover {
    color: var(--primary-green);
}


@media (max-width: 1024px) {
    .nav-container {
        padding: 0 30px;
    }

    .hero-container {
        flex-direction: column;
        gap: 30px;
    }

    .hero-title {
        font-size: 48px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

     .bronnenlijst {
        padding: 30px 30px;
    }

    .stat-item:nth-child(2n) {
        border-right: none;
    }

    .stat-item:nth-child(n+3) {
        border-top: 1px solid var(--border-color);
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

    .about-cards {
        grid-template-columns: 1fr;
    }

    .carousel-content {
        min-height: 350px;
        max-height: 370px;
    }

    .carousel-slide {
        min-height: 350px;
        max-height: 370px;
    }

    .slide-image {
        padding: 0 12px;
    }

    .slide-image img {
        height: 100%;
        border-radius: 0;
    }

    .slide-content {
        padding: 56px 56px 36px 24px;
    }

    .slide-label {
        font-size: 26px;
    }

    .slide-title {
        font-size: 38px;
    }

    .slide-text {
        font-size: 15px;
    }

    .carousel-btn {
        width: 60px;
        height: 60px;
    }

    .carousel-btn svg {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }

    .nav-links {
        gap: 15px;
        justify-content: flex-start;
    }

    .hero-section {
        padding: 40px 30px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border: none;
        border-bottom: 1px solid var(--border-color);
    }

    .carousel-content {
        min-height: 480px;
        max-height: 520px;
        background: linear-gradient(180deg, #dbe6f5 0%, #dbe6f5 50%, #13200f 50%, #13200f 100%);
    }

    .carousel-slide {
        min-height: 480px;
        max-height: 520px;
        grid-template-columns: 1fr;
    }

    .slide-image {
        padding: 0 10px;
        min-height: 250px;
    }

    .slide-image img,
        .slide-image video {
            width: 100%;
            max-width: none;
            height: 100%;
            object-fit: contain;
            object-position: center;
            display: block;
        }

    .slide-content {
        padding: 24px 34px 34px;
        gap: 10px;
    }

    .slide-label {
        font-size: 20px;
    }

    .slide-title {
        font-size: 42px;
    }

    .slide-text {
        font-size: 16px;
    }

    .carousel-btn {
        width: 56px;
        height: 56px;
    }

    .carousel-btn svg {
        width: 32px;
        height: 32px;
    }

    .carousel-btn-prev {
        left: 10px;
    }

    .carousel-btn-next {
        right: 10px;
    }

    .tab-title {
        font-size: 20px;
    }

    .tab-category {
        font-size: 14px;
        padding: 8px 16px;
    }

    .accordion-tab {
        grid-template-columns: 42px 1fr;
        column-gap: 15px;
        padding: 20px 0;
    }

    .tab-number {
        margin-top: 4px;
    }

    .content-body {
        padding: 15px 0;
        font-size: 14px;
    }

      .bronnenlijst {
        padding: 24px 20px;
    }

    .bronnenlijst a {
        margin-right: 16px;
        font-size: 13px;
        display: block;
        margin-bottom: 8px;
    }
}

