@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --slhd-primary: rgb(29, 56, 122);
    --slhd-secondary: rgb(0, 144, 214);
    --slhd-yellow: rgb(253, 195, 0);
    --slhd-orange1: rgb(243, 145, 0);
    --slhd-orange2: rgb(249, 176, 0);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--slhd-primary);
    overflow-x: hidden;
    padding-left: 0;
    padding-right: 0;
    padding-top: 140px;
    margin: 0;
}

/* BLUE VERTICAL STRIPES - Full page background */
.blue-stripes-vertical {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -20;
    background: repeating-linear-gradient(
        to bottom,
        rgb(31, 44, 201) 0px,
        rgb(31, 44, 201) 30px,
        rgb(29, 56, 122) 30px,
        rgb(29, 56, 122) 60px,
        rgb(0, 71, 149) 60px,
        rgb(0, 71, 149) 90px,
        rgb(0, 144, 214) 90px,
        rgb(0, 144, 214) 120px,
        rgb(0, 71, 149) 120px,
        rgb(0, 71, 149) 150px,
        rgb(29, 56, 122) 150px,
        rgb(29, 56, 122) 180px
    );
    pointer-events: none;
}

/* Left and right blue vertical bars - SEPARATE ELEMENTS */
.blue-bar-left,
.blue-bar-right {
    position: fixed;
    top: 0;
    width: 25px;
    height: 100%;
    z-index: 999;
    background: repeating-linear-gradient(
        to bottom,
        rgb(31, 44, 201) 0px,
        rgb(31, 44, 201) 30px,
        rgb(29, 56, 122) 30px,
        rgb(29, 56, 122) 60px,
        rgb(0, 71, 149) 60px,
        rgb(0, 71, 149) 90px,
        rgb(0, 144, 214) 90px,
        rgb(0, 144, 214) 120px,
        rgb(0, 71, 149) 120px,
        rgb(0, 71, 149) 150px,
        rgb(29, 56, 122) 150px,
        rgb(29, 56, 122) 180px
    );
    pointer-events: none;
}

.blue-bar-left {
    left: 0;
}

.blue-bar-right {
    right: 0;
}

/* WARNING BAR */
.warning-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 25px;
    background-color: rgb(253, 195, 0);
    color: rgb(29, 56, 122);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    line-height: 1.2;
    padding: 0 40px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.warning-bar-content {
    text-align: center;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.warning-bar a {
    color: rgb(29, 56, 122);
    text-decoration: underline;
    font-weight: 600;
}

.warning-bar a:hover {
    color: rgb(0, 144, 214);
}

/* Container spacing to respect blue bars */
.container,
.container-fluid {
    padding-left: 40px; /* 25px bar + 15px spacing */
    padding-right: 40px;
}

/* Content wrapper for all page content */
.content-wrapper {
    margin-top: 0;
    position: relative;
    z-index: 10;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    margin: 0;
    z-index: 1030;
    background-color: var(--slhd-primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    min-height: 140px;
    padding: 0;
}

.navbar .container-fluid {
    max-width: 100%;
    padding: 10px 40px;
}

.navbar-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 120px;
}

.navbar-animation-section {
    flex: 0 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
}

.navbar-animation {
    width: 300px;
    height: 100%;
    display: flex;
    align-items: center;
}

.navbar-animation img {
    max-height: 80%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.navbar-animation img.static-logo {
    max-height: 20vh;
}

.navbar-menu-section {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Hide the checkbox */
#menu-toggle {
    display: none;
}

/* Hamburger icon */
.navbar-toggler {
    display: none;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 0;
    padding: 8px 12px;
    cursor: pointer;
    z-index: 1031;
}

.navbar-toggler-icon {
    background-image: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
}

.navbar-toggler-icon .line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    transition: all 0.3s ease;
}

/* Rotate hamburger into X when checked */
#menu-toggle:checked ~ .navbar-menu-section .navbar-toggler .navbar-toggler-icon .line:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

#menu-toggle:checked ~ .navbar-menu-section .navbar-toggler .navbar-toggler-icon .line:nth-child(2) {
    opacity: 0;
}

#menu-toggle:checked ~ .navbar-menu-section .navbar-toggler .navbar-toggler-icon .line:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

.navbar-collapse {
    display: flex;
    justify-content: flex-end;
}

.navbar-nav {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.navbar-nav .nav-item {
    margin: 0 3px;
}

.navbar-nav .nav-link {
    color: white !important;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: lowercase;
    padding: 8px 16px !important;
    border-radius: 0;
    transition: all 0.3s ease;
    background-color: transparent;
    text-decoration: none;
    display: block;
}

/* Hover effect */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-item.active .nav-link {
    background-color: var(--slhd-yellow) !important;
    color: var(--slhd-primary) !important;
}

@media (max-width: 991px) {
    .navbar-content-wrapper {
        min-height: 80px;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
    }
    
    .navbar-animation-section {
        flex: 0 0 auto;
        width: auto !important;
        display: flex !important;
    }
    
    .navbar-menu-section {
        flex: 0 0 auto;
        width: auto !important;
        display: flex !important;
        margin-left: auto;
    }
    
    .navbar-toggler {
        display: block;
    }
    
    .navbar-collapse {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        max-width: none;
        height: calc(100vh - 80px);
        background-color: var(--slhd-primary);
        transition: left 0.3s ease;
        overflow-y: auto;
        box-shadow: 2px 0 8px rgba(0,0,0,0.3);
        padding: 20px 0;
    }
    
    #menu-toggle:checked ~ .navbar-menu-section .navbar-collapse {
        left: 0px;
    }
    
    .navbar-nav {
        flex-direction: column !important;
        align-items: flex-start !important;
        width: 100%;
    }
    
    .navbar-nav .nav-item {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-nav .nav-link {
        padding: 15px 20px !important;
        width: 100%;
    }
    
    .navbar-animation img.static-logo {
        max-height: 10vh;
    }
}

.dropdown-menu {
    background: white;
    border: none;
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin-top: 0;
    padding: 10px 0;
}

.dropdown-item {
    color: var(--slhd-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--slhd-yellow);
    color: var(--slhd-primary);
}

/* Mobile toggle */
.navbar-toggler {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 0;
    padding: 8px 12px;
}

.navbar-toggler-icon {
    background-image: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
}

.navbar-toggler-icon .line {
    background-color: white;
    height: 3px;
    width: 100%;
    border-radius: 0;
}

/* HERO SECTION */
.header_banner {
    position: relative;
    width: 100vw;
    margin: 0;
    margin-top: -140px;
    padding-top: 140px;
    height: 626px;
    background-image: url('/img/images/bg_home6.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header_banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.banner_home {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 150px;
}

.banner_home_slogan {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 5rem;
    font-weight: 400;
    letter-spacing: -2px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

/* TEASER SECTION - Full width but respecting blue bars */
.teaser_home {
    position: relative;
    z-index: 10;
    margin: 0;
    padding-left: 25px; /* Width of blue bar */
    padding-right: 25px; /* Width of blue bar */
}

.teaser_home .container-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.teaser_home .row {
    margin: 0;
}

.teaser_home .col-lg-4 {
    padding: 0;
}

.teaser_home_event {
    width: 100%;
    min-height: 400px;
    padding: 20px 45px 0px;
    text-align: left;
}

/* Three different orange colors for each teaser */
.teaser_1-carousel {
    background-color: var(--slhd-yellow); /* rgb(253, 195, 0) */
}

.teaser_2-carousel {
    background-color: var(--slhd-orange2); /* rgb(249, 176, 0) */
}

.teaser_3-carousel {
    background-color: var(--slhd-orange1); /* rgb(243, 145, 0) */
}

.teaser_home_event_header {
    margin-bottom: 20px;
    padding-top: 0px;
}

.teaser_titel {
    color: var(--slhd-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 1.875rem;
    font-weight: 400;
    letter-spacing: -2px;
    margin: 0;
}

.teaser_home_event_body {
    color: var(--slhd-primary);
    font-size: 1rem;
    line-height: 1.6;
}

.teaser_home_event_body p {
    margin-bottom: 10px;
}

.home_teaser_link {
    color: var(--slhd-secondary);
    font-size: 0.875rem;
    text-decoration: none;
    font-weight: 500;
}

.home_teaser_link:hover {
    color: var(--slhd-yellow);
    text-decoration: underline;
}

/* INSTAGRAM SECTION */
.bg_white {
    background-color: white;
    padding: 40px 0;
}

/* CONTENT SECTIONS */
.bg_gray {
    background-color: var(--slhd-primary);
    color: var(--slhd-yellow);
    padding: 60px 0;
}

/* Content sections for template pages */
.content-section {
    position: relative;
    z-index: 10;
}

.content-wrapper > .content-section:first-child,
.content-section:first-of-type {
    margin-top: 0;
    padding-top: 80px;
}

.content-section.bg-light {
    background-color: #EBEBEB;
    padding: 60px 0;
}

.content-section.bg-light:first-child,
.content-wrapper > .content-section.bg-light:first-child {
    padding-top: 140px;
}

.content-section.bg-light .content_titel {
    color: var(--slhd-primary);
    margin-top: 0;
    padding-top: 0;
}

.content-section.bg-light .content_tekst p {
    color: #333;
}

/* Override Bootstrap's bg-dark with custom color */
section.content-section.bg-dark,
section.content-section.bg-blue {
    background-color: var(--slhd-primary) !important;
    padding: 60px 0;
    color: white;
}

section.content-section.bg-dark .content_titel,
section.content-section.bg-blue .content_titel {
    color: var(--slhd-yellow);
}

section.content-section.bg-dark .content_tekst p,
section.content-section.bg-blue .content_tekst p {
    color: white;
}

.content_titel {
    color: var(--slhd-yellow);
    font-family: 'Poppins', sans-serif;
    font-size: 1.875rem;
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.content_tekst {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content_tekst p {
    line-height: 1.8;
    color: var(--slhd-yellow);
    font-size: 1rem;
}

.content_image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.content_image img {
    max-width: 350px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.more_link {
    color: var(--slhd-primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.bg_gray .more_link {
    color: white;
}

.more_link:hover {
    text-decoration: underline;
    color: #007bff;
}

.img_rond_300 {
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.auto_rond {
    border-radius: 50%;
    overflow: hidden;
    width: 100%;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

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

/* AMBASSADEURS SECTION */
#home_ambassadeurs {
    background-color: white;
    padding: 60px 0;
}

#home_ambassadeurs .content_titel {
    color: var(--slhd-primary);
    text-align: center;
}

.ambassadeur-carousel-item {
    padding: 30px;
    background: #f9f9f9;
    border-radius: 10px;
    margin: 20px 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    min-height: 175px;
}

.img_rond_125 {
    width: 125px;
    height: 125px;
    margin: 0 auto;
}

.auto_rond_border_SLHD_secundair {
    border: 4px solid var(--slhd-yellow);
}

.Quote {
    font-style: italic;
    font-size: 0.875rem;
    color: var(--slhd-primary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.Ambassadeur .Naam {
    font-weight: 700;
    color: var(--slhd-yellow);
}

.Ambassadeur .Omschrijving {
    color: var(--slhd-primary);
}

/* FOOTER */
.footer {
    background-color: var(--slhd-primary);
    color: #999999;
    padding: 50px 0 20px;
    margin: 0;
    width: 100%;
    border-top: solid 20px;
    border-image: repeating-linear-gradient(
        to right,
        rgb(243, 145, 0) 0px,
        rgb(243, 145, 0) 60px,
        rgb(249, 178, 0) 60px,
        rgb(249, 178, 0) 120px,
        rgb(253, 195, 0) 120px,
        rgb(253, 195, 0) 180px,
        rgb(255, 221, 0) 180px,
        rgb(255, 221, 0) 240px,
        rgb(253, 195, 0) 240px,
        rgb(253, 195, 0) 300px,
        rgb(249, 178, 0) 300px,
        rgb(249, 178, 0) 360px
    ) 1;
}

.footer .container {
    max-width: 100%;
    padding: 0 40px; /* Respect blue bars */
}

.footer_logo img {
    max-width: 150px;
    height: auto;
}

.footer_contact {
    line-height: 2;
    font-size: 1rem;
}

.font_groter {
    font-size: 1.125rem;
    font-weight: 600;
}

.footer_link_pos {
    color: var(--slhd-yellow);
    text-decoration: none;
}

.footer_link_pos:hover {
    text-decoration: underline;
    color: var(--slhd-secondary);
}

.footer_link_neg {
    color: #999999;
    text-decoration: none;
    font-size: 0.75rem;
}

.footer_link_neg:hover {
    color: var(--slhd-secondary);
}

.footer_social ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.footer_social ul li a {
    color: #999999;
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.footer_social ul li a:hover {
    color: var(--slhd-secondary);
}

.footer_copyright {
    font-size: 0.75rem;
    line-height: 1.8;
    margin-top: 20px;
}

/* Back to top */
#page_up {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
}

.page_up {
    display: block;
    width: 50px;
    height: 50px;
    background: #3B3D40;
    color: var(--slhd-secondary);
    text-align: center;
    line-height: 50px;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s;
}

.page_up:hover {
    background: #3B3D40;
    color: var(--slhd-secondary);
}

/* FormHeight container */
.FormHeight {
    min-height: 70vh;
    width: 100%;
    display: block;
    clear: both;
}

/* Responsive */
@media (max-width: 992px) {
    body {
        padding-left: 0;
        padding-right: 0;
    }
    
    .container,
    .container-fluid {
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .navbar {
        margin: 0;
    }
    
    .navbar .container-fluid {
        padding: 10px 30px;
    }
    
    .header_banner {
        margin: 0;
        height: 400px;
    }
    
    .banner_home_slogan {
        font-size: 3rem;
    }
    
    .teaser_home {
        margin: 0;
    }
    
    .navbar-content-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .navbar-animation {
        width: 240px;
        margin-bottom: 15px;
    }
    
    .navbar-collapse {
        width: 100%;
        margin-top: 15px;
    }
    
    .navbar-nav {
        flex-direction: column !important;
        width: 100%;
    }
    
    .navbar-nav .nav-item {
        width: 100%;
        text-align: center;
        margin: 3px 0;
    }
    
    .footer {
        margin: 0;
        width: 100%;
    }
    
    .footer .container {
        padding: 0 30px;
    }
    
    .footer_logo,
    .footer_contact,
    .footer_scholengroep,
    .footer_social {
        text-align: center;
        margin-top: 30px;
    }
    
    /* Hide blue bars on mobile */
    .blue-bar-left,
    .blue-bar-right {
        display: none;
    }
    
    .teaser_home {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .banner_home_slogan {
        font-size: 2rem;
    }
    
    .header_banner {
        height: 350px;
    }
    
    .teaser_titel {
        font-size: 1.5rem;
    }
}
/* Main title styling for section */
.content_titel_main {
    color: var(--slhd-yellow);
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -2px;
    margin-bottom: 40px;
    text-align: center;
}

/* Image column styling */
.content_image_column {
    margin-bottom: 30px;
    text-align: center;
}

.content_image_column .content_titel {
    margin-bottom: 20px;
    text-align: center;
}

/* Hide the checkbox - placed at body level */
.lightbox-toggle {
    display: none;
}

/* Thumbnail styling */
.lightbox-trigger {
    display: block;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lightbox-trigger:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.thumbnail {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.lightbox-trigger:hover .thumbnail {
    transform: scale(1.05);
}

/* Zoom hint */
.zoom-hint {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(253, 195, 0, 0.9);
    color: var(--slhd-primary);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.lightbox-trigger:hover .zoom-hint {
    opacity: 1;
}

/* Lightbox overlay - at body level, starts hidden */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 20px;
    z-index: 99999;
}

/* Lightbox image */
.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
    pointer-events: none;
}

/* Close hint */
.close-hint {
    position: absolute;
    top: 30px;
    right: 30px;
    background-color: var(--slhd-yellow);
    color: var(--slhd-primary);
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease 0.2s;
    pointer-events: none;
}

/* When checkbox is checked, show the lightbox */
.lightbox-toggle:checked + .lightbox-overlay {
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
}

.lightbox-toggle:checked + .lightbox-overlay .lightbox-image {
    transform: scale(1);
}

.lightbox-toggle:checked + .lightbox-overlay .close-hint {
    opacity: 1;
}

/* Prevent body scroll when any lightbox is open */
body:has(.lightbox-toggle:checked) {
    overflow: hidden;
}

.testimonial-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
    border-radius: 10px;
    padding: 40px 80px; /* Meer ruimte voor pijltjes */
    min-height: 300px; /* Minimum hoogte voor consistentie */
}

.ambassadeur-slides {
    display: flex;
    animation: autoSlide 36s infinite;
    transition: transform 0.5s ease-in-out;
}

/* Auto-scroll animatie */
@keyframes autoSlide {
    0%, 31% { 
        transform: translateX(0%); 
    }
    33%, 64% { 
        transform: translateX(-100%); 
    }
    66%, 97% { 
        transform: translateX(-200%); 
    }
    100% { 
        transform: translateX(0%); 
    }
}

/* Stop animatie bij hover */
.carousel-wrapper:hover .ambassadeur-slides {
    animation-play-state: paused;
}

.ambassadeur-carousel-item {
    min-width: 100%;
    max-width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
    padding: 0 10px;
}

/* Avatar meer naar links en kleiner */
.ambassadeur-carousel-item .col-md-4 {
    flex: 0 0 25%; /* Smaller - was 33.33% */
    max-width: 25%;
}

.ambassadeur-carousel-item .col-md-8 {
    flex: 0 0 75%; /* Larger - was 66.67% */
    max-width: 75%;
    padding-left: 30px;
}

/* Quote tekst binnen grenzen houden */
.Quote {
    font-style: italic;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

.Ambassadeur {
    margin-top: 15px;
}

.Naam {
    font-weight: bold;
    color: #f39c12; 
}

.Omschrijving {
    color: #666;
}

/* Pijltjes styling */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(100, 100, 100, 0.7);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 30px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    line-height: 1;
}

.carousel-control:hover {
    background: rgba(80, 80, 80, 0.9);
    color: white;
    text-decoration: none;
}

.carousel-control.prev {
    left: 15px;
}

.carousel-control.next {
    right: 15px;
}

/* Navigatie dots */
.carousel-dots {
    text-align: center;
    padding: 20px 0;
    margin-top: 10px;
}

.carousel-dots a {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #ddd;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
}

.carousel-dots a:hover {
    background: #999;
}

/* Standaard actieve dot (eerste) */
.carousel-dots a:first-child {
    background: #333;
}

/* Target selectors voor handmatige navigatie */
#slide-1:target ~ .carousel-wrapper .ambassadeur-slides {
    transform: translateX(0%) !important;
    animation: none;
}

#slide-2:target ~ .carousel-wrapper .ambassadeur-slides {
    transform: translateX(-100%) !important;
    animation: none;
}

#slide-3:target ~ .carousel-wrapper .ambassadeur-slides {
    transform: translateX(-200%) !important;
    animation: none;
}

#slide-1:target ~ .carousel-dots a:nth-child(1),
#slide-2:target ~ .carousel-dots a:nth-child(2),
#slide-3:target ~ .carousel-dots a:nth-child(3) {
    background: #333;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .carousel-wrapper {
        padding: 30px 60px;
        min-height: 400px;
    }
    
    .ambassadeur-carousel-item .col-md-4,
    .ambassadeur-carousel-item .col-md-8 {
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .ambassadeur-carousel-item .col-md-4 {
        margin-bottom: 20px;
    }
    
    .carousel-control {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .carousel-control.prev {
        left: 10px;
    }
    
    .carousel-control.next {
        right: 10px;
    }
    
    .Quote {
        -webkit-line-clamp: 8;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content_titel_main {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .lightbox-image {
        max-width: 95%;
        max-height: 85vh;
    }
    
    .close-hint {
        top: 20px;
        right: 20px;
        font-size: 0.875rem;
        padding: 8px 15px;
    }
	.carousel-wrapper {
        padding: 20px 50px;
    }
	.testimonial-carousel-container {
        padding: 20px 10px;
        width: 100%;
        max-width: 100%;
    }
    
    .carousel-wrapper {
        padding: 20px 50px 20px 20px;
        margin: 0 10px;
    }
    
    .ambassadeur-carousel-item {
        padding: 0 5px;
    }
    
    .ambassadeur-carousel-item .col-md-4,
    .ambassadeur-carousel-item .col-md-8 {
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .ambassadeur-carousel-item .col-md-4 {
        margin-bottom: 15px;
        text-align: center;
    }
    
    .Quote {
        font-size: 14px;
        line-height: 1.5;
        -webkit-line-clamp: 10;
        padding-right: 10px;
    }
    
    .Ambassadeur {
        font-size: 13px;
    }
    
    .carousel-control {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .carousel-control.prev {
        left: 5px;
    }
    
    .carousel-control.next {
        right: 5px;
    }
    
    /* Voor slide 3 zonder avatar */
    #slide-3 .col-12 {
        padding: 0 10px;
    }
}

/* Extra small screens */
@media (max-width: 576px) {
    .carousel-wrapper {
        padding: 15px 45px 15px 15px;
        margin: 0 5px;
    }
    
    .Quote {
        font-size: 13px;
    }
    
    .carousel-control {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}

/* Zorg dat de container nooit breder is dan viewport */
.testimonial-carousel-container {
    max-width: 100vw;
    overflow-x: hidden;
}

.carousel-wrapper {
    max-width: 100%;
    box-sizing: border-box;
}

ul.checkbox-list {
    list-style: none;
    padding-left: 0;
}

ul.checkbox-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 8px;
}

ul.checkbox-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><rect x="2" y="2" width="20" height="20" rx="2" fill="%23f39c12"/><path d="M7 12l3 3 7-7" stroke="white" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

ul {
    margin: 0 0 1em 0;
    padding: 0 0 0 1.2em; /* Matches typical paragraph indent */
}

ul > li {
    margin-bottom: 0.5em;
    padding-left: 0.3em;
}

ul > li > ul {
    margin-top: 0.25em;
    margin-bottom: 0.5em;
    padding-left: 1.5em; /* Additional indent for nested level */
}

ul > li > ul > li {
    margin-bottom: 0.25em;
    list-style-type: circle;
}