:root {
    --primary-color: #fe404a;
    --secondary-color: #1b3255;
    --text-color: #27416d;
    --light-gray: #f8f9fa;
    --dark-gray: #5f6368;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a{
    text-decoration: none;
}
body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    background: #efeeeb;

    line-height: 1.5;
}

input[type='text'],
input[type='password'],
input[type='email'],
input[type='search'],
input[type='tel'],
input[type='url'],
textarea,
select {
    padding: 10px 15px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    margin-bottom: 1rem;
    background-color: #ffffff85;
}
.header {
    background: #efeeeb;
    /*box-shadow: 0 2px 10px rgba(0,0,0,0.1);*/
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.header__logo-icon {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.header__logo-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
}

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

.logo-dropdown {
    position: relative;
}

.logo-dropdown summary {
    list-style: none;
    cursor: pointer;
}

.logo-dropdown summary::-webkit-details-marker {
    display: none;
}

.logo-dropdown__menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    margin: 0;
    padding: 10px;
    list-style: none;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.25));
    backdrop-filter: blur(14px);
    box-shadow: 0 12px 28px rgba(27, 50, 85, 0.15);
    min-width: 220px;
    display: grid;
    gap: 8px;
    z-index: 10;
}

.logo-dropdown__menu li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 12px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.logo-dropdown__menu li:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-1px);
}

.logo-dropdown__menu .header__logo-text {
    color: var(--secondary-color);
}

.header__nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 15px 10px;
    display: inline-block;
    position: relative;
}

.header__nav-link:hover,
.header__nav-link.active {
    color: var(--primary-color);
}

.header__nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
}

.search-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.language-form {
    display: flex;
    align-items: center;
}

.language-form .header__nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.language-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 6px 10px 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.2));
    color: var(--text-color);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.4px;
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 16px rgba(27, 50, 85, 0.12);
    transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.language-select:focus {
    outline: none;
    border-color: rgba(254, 64, 74, 0.6);
    box-shadow: 0 6px 18px rgba(254, 64, 74, 0.2);
}

.language-select:hover {
    transform: translateY(-1px);
}

.language-form .header__nav-link::after {
    content: "";
    position: absolute;
    right: 8px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(27, 50, 85, 0.6);
    border-bottom: 2px solid rgba(27, 50, 85, 0.6);
    transform: translateY(-50%) rotate(45deg);
    pointer-events: none;
}

.search-input {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    width: 250px;
    font-size: 14px;
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hero-section {
    padding: 80px 0;

    text-align: center;
}

.hero-eyebrow {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 48px;
    font-weight: 400;
    margin: 15px 0;
    line-height: 1.2;
    text-align: center;
}

.title-section {
    padding: 80px 0;
    text-align: center;
}

.title-eyebrow {
    font-size: 20px;
    font-weight: 400;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.title-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin: 15px 0;
    line-height: 1.2;
}

.hero-description {
    font-size: 22px;
    color: var(--dark-gray);
    max-width: 800px;
    margin: 0 auto 30px;
}

.hero-video {
    width: 4vw;
    max-height: 600px;
    object-fit: cover;
    border-radius: 8px;
}

.bg-items-dark {
    --bs-bg-opacity: 1;
    background-color: rgb(26, 34, 51);
}


.jumplinks {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 70px;
    z-index: 900;
}

.jumplinks-list {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.jumplinks-link {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s;
}

.jumplinks-link:hover,
.jumplinks-link.active {
    background-color: rgba(40, 103, 178, 0.1);
    color: var(--primary-color);
}

.section {
    padding-bottom: 80px;
    padding-top: 20px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: var(--dark-gray);
    max-width: 800px;
    margin-bottom: 50px;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}
.web-container {
    /*width: 100%;*/
    padding: 2rem;
    background: rgba(212, 209, 197, 0.26);
    border-radius: 22px;
    border-style: solid;
    border-width: 1px;
    border-color: rgba(145, 137, 113, 0.13);
}

.hero-container {
    background: linear-gradient(0deg, rgba(212, 209, 197, 0.26) 10%, rgba(145, 137, 113, 0.13) 100%);
    padding: 2rem;
    border-radius: 22px;
}
.alert-container .hero-description {
    background: linear-gradient(0deg, rgba(254, 65, 75, 0.98) 10%, rgba(254, 65, 75, 0.98) 100%);
    color: rgb(239, 239, 239);
    padding: 2rem;
    border-radius: 22px;
}

.dark-container .hero-description {
    background: linear-gradient(0deg, var(--secondary-color) 10%, rgba(254, 65, 75, 0.98) 100%);
    color: rgb(239, 239, 239);
    padding: 2rem;
    border-radius: 22px;
}

.light-container {
    background: linear-gradient(0deg, rgba(245, 245, 242, 0.96) 10%, rgb(249, 249, 248) 100%);
    padding: 2rem;
    border-radius: 22px;
}

.bg-light {
    background: linear-gradient(0deg, rgba(212, 209, 197, 0.26) 10%, rgba(145, 137, 113, 0.13) 100%);
}

.card-item {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    flex: 1;
    min-width: 300px;
}

.card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.card-image {
    width: 100%;
    height: 200px;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-image img,
.card-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 25px;
}

.card-eyebrow {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.card-description {
    font-size: 16px;
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 20px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #1e4e8c;
    color: var(--white);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-icon {
    margin-left: 8px;
    display: inline-block;
    vertical-align: middle;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.partner-card {
    text-align: center;
    padding: 30px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.partner-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.partner-description {
    font-size: 16px;
    color: var(--dark-gray);
    line-height: 1.6;
}

.tools-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    justify-content: center;
}

.filter-btn {
    padding: 8px 20px;
    background-color: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    color: var(--primary-color);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.filter-btn.active .filter-check {
    display: inline-block;
}

.filter-check {
    display: none;
    width: 16px;
    height: 16px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.tool-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.tool-card:hover {
    transform: translateY(-5px);
}

.tool-image {
    width: 100%;
    height: 180px;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tool-content {
    padding: 20px;
}

.tool-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.tool-description {
    font-size: 20px;
    color: var(--dark-gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link {
    color: #b0b7c3;
    text-decoration: none;
    padding: 8px 0;
    display: block;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 30px;
    margin-top: 40px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.mobile-menu-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-color);
}
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: 2000;
    padding: 20px;
    transform: translateX(-100%);
    transition: transform 0.3s;
    display: none; /* <-- toevoegen */
}
@media (max-width: 992px) {
    .hero-title {
        font-size: 36px;
    }

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

    .partners-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .tools-grid {
        grid-template-columns: 1fr;
    }

    .search-form {
        display: none;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--white);
        z-index: 2000;
        padding: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s;
        display: block;
    }

    .mobile-menu.active {
        transform: translateX(0);
    }

    .mobile-menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
    }

    .mobile-nav {
        margin-top: 60px;
    }

    .mobile-nav-link {
        display: block;
        padding: 15px 0;
        color: var(--text-color);
        text-decoration: none;
        font-size: 18px;
        border-bottom: 1px solid #eee;
    }
}


/* Postcard styling for Bootstrap cards */
.postcard {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.postcard::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(-70deg, #424242, transparent 50%);
    opacity: 1;
    border-radius: 10px;
    z-index: 1;
}

.postcard.blue::before {
    background-image: linear-gradient(-30deg, rgba(0, 118, 189, 0.1), transparent 50%);
}

.postcard.red::before {
    background-image: linear-gradient(-30deg, rgba(189, 21, 11, 0.1), transparent 50%);
}

.postcard.green::before {
    background-image: linear-gradient(-30deg, rgba(121, 221, 9, 0.1), transparent 50%);
}

.postcard.yellow::before {
    background-image: linear-gradient(-30deg, rgba(189, 187, 73, 0.1), transparent 50%);
}

@media (min-width: 768px) {
    .postcard.blue::before {
        background-image: linear-gradient(-80deg, rgba(0, 118, 189, 0.1), transparent 50%);
    }
    .postcard.red::before {
        background-image: linear-gradient(-80deg, rgba(189, 21, 11, 0.1), transparent 50%);
    }
    .postcard.green::before {
        background-image: linear-gradient(-80deg, rgba(121, 221, 9, 0.1), transparent 50%);
    }
    .postcard.yellow::before {
        background-image: linear-gradient(-80deg, rgba(189, 187, 73, 0.1), transparent 50%);
    }
}

.postcard__bar {
    width: 50px;
    height: 10px;
    border-radius: 5px;
    transition: width 0.2s ease;
}

.postcard:hover .postcard__bar {
    width: 100px;
}

.bg-blue { background-color: var(--secondary-color) !important; }
.bg-red { background-color: var(--primary-color) !important; }
.bg-green { background-color: rgba(49, 99, 50, 0.81) !important; }
.bg-yellow { background-color: #C29E3FFF !important; }

.hover-blue:hover { color: var(--secondary-color) !important; }
.hover-red:hover { color: var(--primary-color) !important; }
.hover-green:hover { color: rgba(49, 99, 50, 0.81) !important; }
.hover-yellow:hover { color: #C29E3FFF !important; }

@media (max-width: 767px) {
    .card-body {
        padding: 1.5rem !important;
    }
}
.language-dropdown .dropdown-item {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    color: inherit;
    text-align: left;
    cursor: pointer;
    font-size: 0.875rem;
}

.language-dropdown .dropdown-item:hover {
    background-color: rgba(255,255,255,0.1);
}

/*.border-end{*/
/*    border-right: var(--bs-border-width) var(--bs-border-style) var(--secondary-color) !important;*/
/*}*/

.lazy-asset-img {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.lazy-asset-img.loaded {
    opacity: 1;
}

.lazy-asset-img.loading {
    filter: blur(5px);
}


.retro-layout .v-height {
    height: 240px;
}
.retro-layout .h-entry {
    display: block;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.retro-layout .gradient {
    position: relative;
}
.retro-layout .h-entry.gradient {
    position: relative;
}
.retro-layout .h-entry.mb-30 {
    margin-bottom: 30px;
}
.retro-layout .h-entry.gradient:before {
    z-index: 1;
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
}
.retro-layout .h-entry .featured-img {
    position: absolute;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
}
.retro-layout .text {
    position: absolute;
    bottom: 0;
    z-index: 10;
    padding: 20px;
    max-width: 350px;
}
.retro-layout .text span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    display: block;
    margin-bottom: 5px;
}
.retro-layout .h-entry .date {
    font-size: 15px;
}
.retro-layout .h-entry .team {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.81);
    font-weight: 200;
}
.retro-layout .text h2, .retro-layout .text .h2 {
    color: #fff;
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 0;
}
@media (max-width: 767.98px){
    .retro-layout .img-5 {
        height: 240px !important;
        margin-bottom: 30px;
        margin-top: 30px;
    }
}
