/* CSS variables */
:root {
    --bs-body-font-family: "Poppins", serif;
    --bs-success-rgb: 0, 186, 68;
    --bs-link-color-rgb: 16, 97, 245;
    --bs-link-hover-color-rgb: 11, 79, 196;
    --bs-dark-text-color-rgb: 17, 48, 157;
    --bs-warning-rgb: 255, 170, 0;
    --bs-primary-rgb: 17, 48, 157;
    --bs-light-rgb: 236, 243, 255;
    --bs-body-line-height: 1.7;
    --bs-body-font-size: 1.1rem;
}

.raleway {
    font-family: "Raleway", serif;
    font-optical-sizing: auto;
    font-style: normal;
}

a {
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Raleway", serif;
    font-optical-sizing: auto;
    font-style: normal;
    margin-bottom: 1rem;
}

.text-primary {
    color: rgb(var(--bs-link-color-rgb)) !important;
}

h1 {
    font-weight: 800;
    color: rgb(var(--bs-dark-color-rgb));
}

h2, h3, h4, h5, h6 {
    font-weight: 800;
    color: rgb(var(--bs-dark-text-color-rgb));
}

.text-primary-dark {
    color: rgb(var(--bs-dark-text-color-rgb));
}

.btn-outline-light {
    border-color: #CAD2EC;
    color: rgb(var(--bs-dark-text-color-rgb));
}

.btn-success {
    background-color: #00BA44;
}

body .btn {
    padding-left: 40px !important;
    padding-right: 40px !important;
}

.btn-outline-primary-dark {
    color: rgb(var(--bs-dark-text-color-rgb));
    border-color: rgb(var(--bs-dark-text-color-rgb));
}

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

.fs-7 {
    font-size: 0.9rem!important;
}

/* Modern hyperlinks */
a.effect {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

a.effect:hover {
    transform: translateY(-3px); /* Beweeg iets omhoog */
}

#logo {
    height: 150px;
    transition: all .2s ease-in-out;
}

/* scrolled */
.scrolled {
    box-shadow: var(--bs-box-shadow) !important;
}

.scrolled #logo {
    height: 60px;
}

header {
    height: auto !important;
    transition: height .3s ease;
}

header .logo {
    align-items: center;
    display: flex;
}

header .nav-item {
    align-items: center;
    display: flex;
}

header .nav-item .nav-button {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    display: block;
    padding: .75rem 1.25rem;
    color: rgb(0, 0, 0);
    border-radius: var(--bs-border-radius-lg) !important;
    text-decoration: none !important;
}

header .dropdown-toggle::after {
    content: "\f078";
    font-family: "Font Awesome 6 Pro";
    margin-left: 8px;
    transition: transform 0.1s ease;
    display: inline-block;
    border: none;
    font-weight: 600;
    vertical-align: inherit;
    font-size: 0.8rem;
}

header .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(-180deg);
}

header .dropdown-toggle {
    background-color: transparent;
    transition: background-color 0.4s ease;
}

header .dropdown-toggle[aria-expanded="true"], header .nav-button:hover, header .dropdown-menu .dropdown-item:hover {
    background-color: #ECF4FE;
    text-decoration: none;
    color: rgb(var(--bs-link-color-rgb));
}

header .dropdown-menu {
    border: none;
    box-shadow: var(--bs-box-shadow) !important;
}

header .dropdown-menu .dropdown-item {
    padding: 0.5rem 1.75rem;
}

.list-group-header {
    display: block;
    padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
    color: rgb(var(--bs-link-color-rgb));
    font-weight: 600;
    font-size: 1.1rem;
}
.list-group-divider {
    height: 15px;
}

.gap-6 {
    gap: 4rem!important;
}

.gap-7 {
    gap: 5rem!important;
}

.gap-8 {
    gap: 6rem!important;
}

.gap-9 {
    gap: 7rem!important;
}

.gap-10 {
    gap: 8rem!important;
}

.hero-section {
    position: relative;
    min-height: 800px;
    width: 100%;
}

.hero-bg,
.hero-bg-mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-bg {
    background-image: url('/templates/default/images/header-frontpage.jpg');
//background-image: url('/templates/default/images/header-auto.jpg');
}

.hero-bg-mobile {
    background-image: url('/templates/default/images/header-frontpage.jpg');
    background-position: -432px -203px, center;
}

.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/templates/default/images/header-overlay.svg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.fade-text {
    display: inline-block;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.hidden {
    opacity: 0;
    transform: translateY(-10px); /* Beweeg de tekst iets naar boven bij fade-out */
    pointer-events: none;
}

.hero-section .hero-categories .btn {
    border-radius: var(--bs-card-border-radius) !important;
    font-size: 1.3rem;
    font-weight: 600;
}

.hero-section .hero-categories .btn:hover {
    background-color: rgb(var(--bs-link-color-rgb));
    color: #fff;
    border-color; #CAD2EC;
}

.hero-section .hero-categories .btn:hover .text-primary {
    color: #fff !important;
}

.hero-section h1 {
    font-size: 3rem;
}

.hero-section h2 {
    font-size: 3rem;
}

.rating-dark-lg {
    display: flex;
    width: 206px;
    height: 250px;
    background-image: url("/templates/default/images/logo-blauw.svg");
    background-repeat: no-repeat;
    background-size: cover;
    align-items: center;
    justify-content: center;
    color: rgb(var(--bs-light-rgb));
    padding-bottom: 30px;
}

/* Responsive voor mobiel */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
    }
    .hero-content h1 {
        font-size: 1.6rem;
    }
    .hero-content h2 {
        font-size: 1.6rem;
    }
    .hero-section .btn {
        font-size: 1.1rem;
    }

    header .login::after {
        content: "";
        margin-left: 0;
    }

    /* back to bootstrap original */
    body .py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
}

.subscribe-block {
    border-radius: 1.5rem;
    background-color: #fdefe8;
    position: relative;
    padding: 40px;
}

/* Effects */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
    will-change: opacity, transform;
}

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

.border-radius-md {
    border-radius: 1.5rem;
}

.container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Hover.css customize */
.hvr-icon-wobble-horizontal::before {
    background: rgb(var(--bs-link-color-rgb));
    height: 1px;
}