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



    :root {
        --text-color1: #fff;
        --text-color2: #dcdcdc;
        --text-color3: #C0C0C0;
        --text-color4: #8a8a8a;
        --accent-color: rgba(45, 125, 246, 1);
        --card-bg: linear-gradient(145deg, 
            rgba(255, 255, 255, 0.08), 
            rgba(255, 255, 255, 0.05));
        --card-border: 1px solid rgba(255, 255, 255, 0.1);
        --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', Arial, sans-serif;
}

html {
    height: 100dvh;
}

body {
    min-height: 100vh;
}

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #131313;
    background: radial-gradient(circle at 20% 30%, rgba(255, 0, 0, 0.1) 10%, rgba(255, 0, 0, 0.1) 30%, transparent 50%),  
               radial-gradient(circle at 80% 70%, rgba(0, 0, 255, 0.1) 15%, rgba(0, 0, 255, 0.1) 35%, transparent 60%),  
               #131313;
    /* background-attachment: fixed;  */
    font-family: 'Nunito', Arial, sans-serif;
}

body {
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.btn {
    position: relative;
    overflow: hidden;

    padding: 12px 24px;
    border: none;
    border-radius: 12px;

    font-size: 14px;
    font-weight: 600;
    cursor: pointer;

    display: flex;
    align-items: center;
    gap: 8px;

    color: var(--color-white);
    z-index: 0;

    transition: transform 0.25s ease;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn > * {
    position: relative;
    z-index: 1;
}

.btn--primary {
    background: linear-gradient(
        135deg,
        rgba(45, 125, 246, 0.9),
        rgba(26, 91, 191, 0.9)
    );
}

.btn--primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 91, 191, 0.9),
        rgba(19, 64, 140, 0.9)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn--primary:hover::before {
    opacity: 1;
}

.btn--error {
    background: linear-gradient(
        135deg,
        rgba(244, 67, 54, 0.9),
        rgba(229, 57, 53, 0.9)
    );
}

.btn--error::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(211, 47, 47, 0.95),  
        rgba(183, 28, 28, 0.95)  
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn--error:hover::before {
    opacity: 1;
}

.btn--secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-color3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn--secondary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.08);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn--secondary:hover {
    color: var(--text-color1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.18); /* GEEN blauw */
}

.btn--secondary:hover::before {
    opacity: 1;
}


.scroll-container {
    position: relative;
    width: 100dvw;
    height: calc(100dvh - 70px); 
    overflow: hidden;
}

/* Scroll Content */
.scroll-content {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    scrollbar-width: none; /* For Firefox */
}

/* Hide default scrollbar in WebKit browsers */
::-webkit-scrollbar {
    display: none;
}

/* Custom Scrollbar */
.custom-scrollbar {
    position: absolute;
    top: 0;
    right: 0;
    width: 7px;
    height: 100%;
    background-color: transparent;
    pointer-events: none;
}

/* Custom Scrollbar Body */
.custom-scrollbar-body {
    position: absolute;
    top: 0;
    right: 0;
    width: 7px; 
    height: 100%;
    background-color: transparent;
    pointer-events: none; /* Allow clicks to pass through */
    z-index: 500; /* Ensure it's above other content */
}

.scrollbar-thumb {
    position: absolute;
    width: 100%;
    background-color: #555; /* Color of the scrollbar thumb */
    border-radius: 5px; /* Rounded corners */
    pointer-events: auto; /* Allow dragging */
    z-index: 501; /* Ensure it's above the scrollbar track */
    transition: background-color 0.3s ease, opacity 0.3s ease;
}

.scrollbar-thumb:hover,
.scrollbar-thumb:active {
    background-color: var(--accent-color);
}

/* Mobile Scrollbar Styles */
@media (max-width: 1024px) {
    .custom-scrollbar-body {
        width: 4px; /* Thinner scrollbar */
    }

    .custom-scrollbar-body .scrollbar-thumb {
        background-color: rgba(136, 136, 136, 0.5); /* Different color for mobile */
        opacity: 0; /* Start hidden */
        transition: opacity 500ms ease; /* Smooth fade-out */
    }

    .custom-scrollbar-body .scrollbar-thumb.visible {
        opacity: 1; /* Show instantly */
        transition: opacity 0s; /* No transition when appearing */
    }
}

@media (max-width: 992px) {
    .scroll-container {
        height: calc(100dvh - 60px);
    }
}


#showbox-holder {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100dvw;
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#showbox-holder.fade-out {
    animation: fadeOut 0.25s forwards;
}

@keyframes fadeOut {
    from { opacity: 1; }
    to   { opacity: 0; }
}

#showbox {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(255, 0, 0, 0.1) 10%, rgba(255, 0, 0, 0.1) 30%, transparent 50%),  
    radial-gradient(circle at 80% 70%, rgba(0, 0, 255, 0.1) 15%, rgba(0, 0, 255, 0.1) 35%, transparent 60%),  
    #131313;
}

#loader-container {
    position: fixed;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(100px);
    display: flex; 
    justify-content: center; 
    align-items: center; 
}

.loader {
    width: 100px; 
    height: 100px; 
    position: relative;
}

.circular {
    animation: rotate 2s linear infinite;
    width: 100px; 
    height: 100px; 
    transform-origin: center center;
    position: absolute;
}

.path {
  stroke: var(--accent-color);
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
  stroke-width: 2.5;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

#top-group {
    width: 100%;
    /* background: rgba(255, 255, 255, 0.1); */
    padding-bottom: 40px;
    border-radius: 0px 0px 40px 40px;
    /* box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15), 
                0px 3px 6px rgba(0, 0, 0, 0.1); Soft layered shadow */
}


#navbar {
    display: flex;
    align-items: center;
    width: 100%;
    height: fit-content;
    padding: 20px clamp(10px, 5%, 40px); 
    box-sizing: border-box;
    position: absolute;
    top: 0;
    z-index: 1000;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

#navbar.scrolled {
    background-color: #323232f3;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

#navbar.footer {
    position: relative;
    bottom: 0;
    width: 100%;
    background-color: #323232f3;
    padding: 15px 0; /* Add some padding */
}

#navbar.footer #navbar-group{
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    width: 100%;
    padding: 0 20px; 
    margin: 0;
}

#footer-buttons {
    display: flex;
    gap: 25px;
}



@media (max-width: 750px) {
    #navbar.footer {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #navbar.footer #navbar-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-left: 0px;
    }

    #navbar.footer #footer-buttons {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 25px;
    }

    #navbar.footer #navbar-group h1 {
        margin: 0px;
        order: 1;
    }
}


#navbar-group {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    gap: 25px;
}

#navbar-region {
    display: flex;
    align-self: flex-start;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

#navbar-button,
#navbar-region a,
#navbar h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #b4b4b4;
    transition: all 0.3s ease;
    cursor: default;
}

#navbar h1 {
    margin-right: 25px;
}

#navbar-group a,
#navbar-button,
#navbar-region a.clickable {
    text-decoration: none;
    cursor: pointer;
}

#navbar-button:hover,
#navbar-region a.clickable:hover {
color: var(--accent-color);
transform: translateY(-2px);
}

#navbar-button.active {
    color: var(--accent-color);
}

#header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 1.7vw;
    margin-bottom: 20px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

#header-logo img {
    width: clamp(20px, 22vw, 220px);
    height: auto;
    max-height: 220px;
    object-fit: contain;
}

#header-text {
    position: absolute;
    bottom: 0px; 
    width: 100%;
    text-align: center;
    color: white;
    padding: 10px;
}

#header h1 {
    font-size: clamp(35px, 6vw, 60px);
    font-weight: 700;
    color: var(--text-color1);
    margin: 0;
}

#header h2 {
    font-size: clamp(20px, 3.5vw, 35px);
    font-weight: 500;
    color: var(--text-color2);
    margin: 0;
}


#header-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 1vw;
    padding: 0 10px;
    box-sizing: border-box;
}

#header-buttons button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: clamp(80px, 20vw, 180px);
    height: clamp(30px, calc(20vw / 4), 40px);
    border: none;
    border-radius: 8px;
    gap: 6px;
    background: linear-gradient(135deg, rgba(45, 125, 246, 0.9), rgba(26, 91, 191, 0.9));
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    box-sizing: border-box;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
    padding: 0 8px;
    transform-origin: center;
    will-change: transform;
}

#header-buttons button i {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
}

#header-buttons button:hover {
    background: linear-gradient(135deg, rgba(45, 125, 246, 1), rgba(26, 91, 191, 1));
    transform: scale(1.03);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

#header-buttons button:hover i {
    transform: scale(0.97);
}

@media (max-width: 600px) {
    #header-buttons {
        gap: 8px;
    }
    #header-buttons button {
        font-size: 12px;
        width: clamp(70px, 25vw, 120px);
    }
}


#index-container {
    margin-top: 100px;
    display: flex;
    justify-self: center;
    align-items: center;
    /* background: linear-gradient(135deg, rgba(45, 125, 246, 0.9), rgba(26, 91, 191, 0.9)); */
    backdrop-filter: blur(20px);
    padding: 40px;
    /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2); */
    border-radius: 20px;   
    padding-bottom: 100px;
}

.circle {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    position: relative;
    /* background-image: url('images/test.png');  */
    background-size: cover; 
    background-position: center; 
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    aspect-ratio: 1 / 1;
}

.icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.5s ease;
    z-index: 1;
    transform-origin: center;
}

.icon .icon-box1,
.icon .icon-box2,
.icon .icon-box3 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    will-change: transform;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

.icon .icon-box1 {
    background: linear-gradient(135deg, #00bfa5, #00a9a3); 
}

.icon .icon-box2 {
    background: linear-gradient(135deg, #e64741, #d32f2f); 
}

.icon .icon-box3 {
    background: linear-gradient(135deg, #f9a825, #e6b241); 
}

.icon:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.icon .icon-box1 i,
.icon .icon-box2 i,
.icon .icon-box3 i {
    color: #fff;
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}



.icon-label {
    position: absolute;
    color: white;
    font-weight: bold;
    text-align: center;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.8;
}



.icon:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon:nth-child(2) {
    bottom: 25%;
    left: 7.5%;
    transform: translate(-50%, 50%);
}

.icon:nth-child(3) {
    bottom: 25%;
    right: 7.5%;
    transform: translate(50%, 50%);
}


.icon:nth-child(1).center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.2); 
    z-index: 2;
    transition: all 0.5s ease; 
}

.icon:nth-child(2).center {
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%) scale(1.2); 
    z-index: 2;
    transition: all 0.5s ease; 
}

.icon:nth-child(3).center {
    bottom: 50%;
    right: 50%;
    transform: translate(50%, 50%) scale(1.2); 
    z-index: 2;
    transition: all 0.5s ease; 
}

.content {
    margin-left: 50px;
    max-width: 350px;
}

.content h2 {
    font-size: 32px;
    color: white;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1; 
}

.content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 30px;
    transition: all 0.5s ease; 
    height: auto;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.button {
    padding: 15px 30px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease, transform 0.3s ease;
}
.button:hover {
    background: #45a049;
    transform: translateY(-2px);
}


@media (max-width: 850px) {
    #index-container {
        flex-direction: column;
        text-align: center;
        padding: clamp(1rem, 2vw, 2rem);
        padding-bottom: 100px;
    }

    #index-container > *:first-child {
        margin-top: clamp(36px, 12vw, 48px);
    }

    .circle {
        width: clamp(150px, 63vw, 250px); 
        height: clamp(150px, 63vw, 250px); 
        margin-bottom: clamp(0.5rem, 2vw, 1.5rem); 
    }

    .content {
        margin-left: 0;
        max-width: 100%; 
    }

    .content h2 {
        justify-self: center;
        font-size: clamp(1.5rem, 8vw, 32px); 
        max-width: 350px;
        line-height: 1.2; 
        margin-top: clamp(20px, calc(10vw + 2rem), 48px); 
    }

    .content p {
        font-size: clamp(12px, 4vw, 16px); 
        line-height: 1.6; 
        margin-bottom: clamp(1rem, 3vw, 2rem); 
        max-width: 350px;
    }
    
    .button {
        font-size: clamp(0.875rem, 3vw, 1rem); 
    }

    .icon {
        width: clamp(50px, 20vw, 80px); 
        height: clamp(50px, 20vw, 80px); 
    }

    .icon .icon-box1,
    .icon .icon-box2,
    .icon .icon-box3 {
        width: clamp(40px, 15vw, 60px); 
        height: clamp(40px, 15vw, 60px); 
    }

    .icon .icon-box1 i,
    .icon .icon-box2 i,
    .icon .icon-box3 i {
        font-size: clamp(18px, 4vw, 25px); 
    }

    .icon-label {
        font-size: clamp(12px, 2.5vw, 14px); 
    }
}

#index-questions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 25px 20px;
    margin-bottom: 50px;
}

#index-questions h1 {
    font-size: clamp(18px, 8vw, 50px);
    font-weight: 700;
    color: var(--text-color1);
}

#index-questions h2 {
    font-size: clamp(10px, 4.8vw, 30px);
    font-weight: 500;
    color: var(--text-color2);
}

#index-questions button {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: clamp(90px, 45.8vw, 280px); 
    height: clamp(28px, calc(45.8vw / 6), 38px);
    border: none;
    border-radius: 12px; 
    gap: 8px; 
    background: linear-gradient(135deg, rgba(45, 125, 246, 0.9), rgba(26, 91, 191, 0.9));
    color: #fff;
    font-size: clamp(11px, 2.1vw, 13px); 
    font-weight: 600;
    cursor: pointer;
    box-sizing: border-box;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, background 0.3s ease-out;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
    transform-origin: center;
    will-change: transform;
    translate: 0;
}

#index-questions button:hover {
    background: linear-gradient(135deg, rgba(45, 125, 246, 1), rgba(26, 91, 191, 1));
    transform: scale(1.02) translateZ(0);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
}


/* List Buttons */
#list-buttons {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-self: center;
    width: 100%;
    max-width: 1055px;
    gap: 20px;
    padding: 20px;
    margin-bottom: 100px;
    padding: 0px 30px;
}

#search-input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 14px;
    outline: none;
    transition: background 0.3s ease;
    box-sizing: border-box;
}

#search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

#search-input:focus {
    background: rgba(255, 255, 255, 0.2);
}

/* Dropdown Container */
#dropdown-holder {
    display: flex;
    gap: 15px;
}



/* Containers */
#containers-holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 40px;
    gap: 20px;
}

.container {
    width: 95%;
    max-width: 850px;
    background: rgba(255, 255, 255, 0.1);
    padding: clamp(5px, 3vw, 25px);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.header {
    color: var(--text-color1);
    font-size: clamp(18px, 4vw, 24px);
    font-weight: bold;
    background: linear-gradient(135deg, #2d7df6, #1a5bbf);
    padding: 20px;
    border-radius: 12px;
    /* margin-bottom: 20px; */
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
/* 
.info-group {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: height 0.3s ease, padding 0.3s ease, border 0.3s ease;
    overflow: hidden;
    position: relative;
    border: 2px solid transparent;
    padding: 0;
    border-radius: 15px;
    box-sizing: border-box;
}

.info-container {
    display: grid;
    grid-template-columns: calc(40% - 5px) calc(60% - 5px);
    gap: 10px;
    transition: all 0.3s ease;
}

.info-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    transition: transform 0.3s ease, opacity 0.3s ease;
    box-sizing: border-box;
}

.info-box.large {
    grid-column: span 2;
}

.label {
    color: #2d7df6;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 5px;
    pointer-events: none;
    user-select: none;
}

.value {
    color: var(--text-color1);
    font-size: clamp(14px, 3vw, 16px);
    font-weight: bold;
    margin-right: 20px;
}

.toggle-btn {
    color: var(--text-color1);
    cursor: pointer;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    align-self: flex-end;
    transition: transform 0.3s ease;
    will-change: transform;
    transform-origin: center;
}

.arrow {
    width: 20px;
    height: 20px;
    border: solid var(--text-color1);
    border-width: 0 2px 2px 0;
    transition: transform 0.3s ease;
}

.toggle-btn:hover {
    transform: scale(1.1);
}

.toggle-btn.active {
    transform: rotate(180deg);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.toggle-section:not(.hidden) {
    animation: fadeInUp 0.5s ease forwards;
}

.selected-border {
    border: 2px solid #2d7df6;
    border-radius: 15px;
    padding: 10px;
    margin-bottom: 10px;
    opacity: 1;
} */

/* Media Queries for Small Screens */
@media (max-width: 600px) {

    /* #header h1 {
        font-size: clamp(18px, 6vw, 24px);
    }

    #header h2 {
        font-size: clamp(10px, 3.5vw, 16px);
    } */

    #list-buttons {
        width: 100%;
    }

    #dropdown-holder {
        flex-direction: column;
    }

    .dropdown-button {
        font-size: 12px;
    }

    .dropdown-menu li {
        font-size: 12px;
    }

    .header {
        font-size: clamp(16px, 4vw, 20px);
        /* padding: 15px; */
    }

    .info-box {
        /* padding: 10px; */
    }

    .label {
        font-size: 10px;
    }

    .value {
        font-size: 14px; /* Set the font size to 14px for small screens */
    }

    .info-group {
        /* height: 56px; Set the height to 52px when not extended */
    }

}

@media (max-width: 300px) {

    #header h1 {
        font-size: clamp(16px, 6vw, 20px);
    }

    #header h2 {
        font-size: clamp(8px, 3.5vw, 14px);
    }

    #list-buttons {
        width: 100%;
    }

    .dropdown-button {
        font-size: 10px;
    }

    .dropdown-menu li {
        font-size: 10px;
    }

    .container {
        width: 100%;
    }

    .header {
        font-size: clamp(14px, 4vw, 18px);
        padding: 10px;
    }

    .info-box {
        padding: 8px;
    }

    .label {
        font-size: 8px;
    }

    .value {
        font-size: clamp(10px, 3vw, 12px);
    }
}



#header .discord-link a {
    font-size: clamp(14px, 2vw, 20px); /* Nog kleiner dan h2/h3 */
    font-weight: 400;
    color: var(--text-color2);
    text-decoration: none;
}








::-webkit-scrollbar {
    height: 7.5px; 
    width: 7.5px;
    background-color: #333; 
}


::-webkit-scrollbar-thumb {
    background-color: #555; 
    border-radius: 7.5px; 
}


::-webkit-scrollbar-thumb:hover {
    background-color: #777; 
}


::-webkit-scrollbar-track {
    background-color: transparent; 
}





#social-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0px auto;
    width: 100%;
    max-width: 600px;
    padding: 0 30px;
}

.separator-line {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 10px 0 20px 0;
    position: relative;
}

.line {
    flex: 1;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.or-text {
    padding: 0 15px;
    color: var(--text-color4);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#social-contact h2 {
    color: var(--text-color2);
    font-size: clamp(14px, 2.5vw, 18px);
    font-weight: 500;
    margin: 10px 0 15px 0;
    text-align: center;
}

.social-buttons {
    display: flex;
    width: 100%;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    color: white;
    width: 100%;
    background: linear-gradient(
        135deg,
        rgba(88, 101, 242, 0.9),
        rgba(88, 101, 242, 0.7)
    );
    border: 1px solid rgba(88, 101, 242, 0.3);
}

.social-button:hover {
    background: linear-gradient(
        135deg,
        rgba(88, 101, 242, 1),
        rgba(88, 101, 242, 0.85)
    );
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-button i {
    font-size: 16px;
}

@media (max-width: 500px) {
    #social-contact {
        padding: 0 15px;
        margin: 20px auto;
    }
    
    .or-text {
        padding: 0 12px;
        font-size: 11px;
    }
    
    #social-contact h2 {
        font-size: 13px;
        margin: 8px 0 12px 0;
    }
    
    .social-button {
        padding: 10px 16px;
        font-size: 13px;
    }
}


#main-content {
    flex: 1; 
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* 
.contact-form {
    display: flex;
    flex-direction: column;
    justify-self: center;
    padding: 20px 30px;
    border-radius: 8px;
    width: 100%;
    max-width: 600px;
    flex: 1;
}

.contact-form .info-box {
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.1);
}

.contact-form .info-box input,
.contact-form .info-box .info-dropdown,
.contact-form .info-box textarea {
    background-color: transparent;
    font-size: 16px;
    font-weight: 600;
    border: none;
    color: #fff;
}

.selected-text {
    color: #fff;
}

.contact-form .info-box .info-dropdown {
    cursor: default;
}

.contact-form .info-box input:focus,
.contact-form .info-box textarea:focus {
    border: none;
    outline: none;
    background-color: transparent;
}

.contact-form .info-box:focus-within {
    background: rgba(255, 255, 255, 0.2);
}

.contact-form .info-box input::placeholder,
.contact-form .info-box .info-dropdown {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form .info-box.dropdown .dropdown-menu {
    border-radius: 12px;
}

.contact-form h2 {
    margin-bottom: 15px;
    color: var(--text-color2);
    text-align: center;
}

.contact-form .info-box label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: var(--text-color3);
}

.contact-form .info-box input::placeholder,
.contact-form .info-box select::placeholder,
.contact-form .info-box textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form .info-box textarea {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

.contact-form button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(45, 125, 246, 0.8), rgba(26, 91, 191, 0.8));
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    transition: scale 0.3s ease, background 0.3s ease;
    will-change: contents;
    user-select: none;
    margin-top: 20px;
}
.contact-form button:hover {
    background: linear-gradient(135deg, rgba(45, 125, 246, 1), rgba(26, 91, 191, 1));
    scale: 1.02;
}

.contact-form .privacy-note h1{
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
    color: var(--text-color4);
}

.contact-form .privacy-note h1 a { 
    color: rgb(27, 100, 209);
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s ease;
}

.contact-form .privacy-note h1 a:hover {
    color: rgba(45, 125, 246, 1);
}

.contact-form .error {
    color: red;
    font-size: 12px;
    margin-top: -10px;
    margin-bottom: 10px;
}

.contact-form .dropdown-wrapper {
    border-radius: 12px;
} */

#success-message {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.9), rgba(50, 150, 100, 0.9));
    color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateX(300px); /* Start 20px below its final position */
    transition: all 0.5s ease;
    z-index: 1000;
}

#success-message.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0); /* Move to its final position */
}

#error-message {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.9), rgba(198, 40, 40, 0.9));
    color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateX(300px); /* Start 20px below its final position */
    transition: all 0.5s ease;
    z-index: 1000;
}

#error-message.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0); /* Move to its final position */
}

.popup {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: linear-gradient(135deg, rgba(50, 50, 50, 0.95), rgba(30, 30, 30, 0.95));
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    max-height: 62vh;
    position: relative;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border: 1px solid #4b4b4b;
    transform: scale(0.8); 
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.popup.active .popup-content {
    transform: scale(1); 
}

.privacy-text {
    max-height: calc(62vh - 100px);
    overflow-y: auto;
    padding-right: 20px;
}

.popup-content h2 {
    margin-top: 0;
    color: #fff;
}

.popup-content h3 {
    margin-top: 20px;
    color: var(--accent-color);
}

.popup-content h3:first-of-type {
    margin-top: 0;
}

.popup-content p {
    line-height: 1.6;
    color: #e0e0e0;
}

.popup-content ul {
    margin: 10px 0;
    padding-left: 20px;
}

.popup-content ul li {
    margin-bottom: 10px;
    color: #e0e0e0;
}

.popup-content ul li a {
    text-decoration: underline;
    color: #e0e0e0;
    transition: color 0.3s ease;
}

.popup-content ul li a:hover {
    cursor: pointer;
    color: var(--accent-color);
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--accent-color);
}

.custom-scrollbar-popup {
    position: absolute;
    top: 0;
    right: 19.5px;
    width: 7px;
    height: 100%;
    background-color: transparent;
    pointer-events: none;
    z-index: 1000;
}

.custom-scrollbar-popup .scrollbar-thumb {
    margin-top: 67px;
    position: absolute;
    width: 100%;
    background-color: #555;
    border-radius: 5px;
    pointer-events: auto;
    z-index: 1001;
    transition: background-color 0.3s ease;
}

.custom-scrollbar-popup .scrollbar-thumb:hover,
.custom-scrollbar-popup .scrollbar-thumb:active {
    background-color: var(--accent-color);
}

@media (max-width: 1100px) {
    #home-info {
        flex-direction: column; 
        align-items: center; 
        min-height: auto; 
    }

    #home-info #left,
    #home-info #right {
        width: 100%; 
        max-width: 100%; 
        text-align: center; 
        align-self: center; 
        top: 0; 
    }

    #home-info #left {
        margin-bottom: 50px;
    }

    #home-info #left img,
    #home-info #right img {
        margin: 0 auto 20px; 
    }

    #home-info #left-text,
    #home-info #right-text {
        align-items: center; 
    }

    #home-info h1 {
        font-size: clamp(24px, 6vw, 48px); 
    }

    #home-info h2 {
        font-size: clamp(14px, 3vw, 20px); 
    }
}

@media (max-width: 650px) {
    #list-buttons {
        flex-direction: column;
        align-items: center;
    }

    #dropdown-holder {
        flex-direction: column;
        width: 100%;
    }

    #hulpdienst-dropdown,
    #regio-dropdown {
        width: 100%;
    }

    #dropdown-holder .dropdown {
        width: 100%;
    }
}

@media (max-width: 394px) {

    #wrapper {
        flex: 1; 
        height: calc(100dvh - 72px);
    }

}






/* OVER ONS */

#about-us {
    padding: 40px 16px;
    margin-top: 20px;
}

.about-container {
    display: flex;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    min-height: 300px;
    align-items: stretch; /* Ensures children (including border) stretch to full height */
    gap: 10px; /* Adds spacing between border and content */
}

.about-container .border {
    width: 5px;
    background: linear-gradient(135deg, rgba(45, 125, 246, 0.9), rgba(26, 91, 191, 0.9)); /* Proper gradient */
    flex-shrink: 0;
    border-radius: 10px;
}

.about-content {
    flex: 1; /* Allows content to take up remaining space */
    text-align: left;
}


.about-text {
    font-size: clamp(14px, 2.5vw, 18px);
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 1.5rem;
}

.about-text:last-child {
    margin-bottom: 0;
}

.about-link {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}



.no-results {
    text-align: center;
    padding: 20px;
    color: var(--text-color4);
    font-size: 16px;
    line-height: 1.5;
}

.no-results p {
    margin: 10px 0;
}




.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 20px 50px;
    /* margin-top: 70px; */
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    position: relative;
}

.hero-text {
    position: absolute;
    bottom: 0px;
    margin-top: auto; 
    text-align: center;
    padding: 0 20px;
    z-index: 2;
}

.hero-title {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
    color: var(--text-color1);
    margin: 0 0 8px 0;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: clamp(18px, 3.5vw, 24px);
    font-weight: 500;
    color: var(--text-color3);
    margin: 0;
    line-height: 1.4;
    margin: 0 auto;
}

.hero-image {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-logo {
    width: clamp(120px, 25vw, 200px);
    height: auto;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.05);
}

/* Responsive aanpassingen */
@media (max-width: 768px) {
    .hero-section {
        padding: 50px 15px 40px;
        margin-top: 60px;
    }
    
    .hero-content {
        gap: 25px;
    }
    
    .hero-title {
        font-size: 32px;
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-image {
        height: 140px;
    }
    
    .hero-logo {
        width: 140px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 40px 10px 30px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-image {
        height: 120px;
    }
    
    .hero-logo {
        width: 120px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll Animations */
.section-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.section-visible {
    opacity: 1;
    transform: translateY(0);
}