/* Fonts */
:root {
    --nav-font: Trebuchet MS, "Nunito", sans-serif;
    --nav-color: #2C374F; /* The default color of the main navmenu links */
    --nav-hover-color: #607296; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #2c374f; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #2C374F; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #FFF; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #DDF; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}


#preloader:before {
  border: unset;
  border-color: unset;
  border-radius: unset; 
  width: 80px;
  height: 60px;
  background: url(/img/Logo-AnnJanuarius.png);
  background-repeat: no-repeat;
}

/* Basisstijl, eenvoudig te themen */
:root {
    --vv-accent: #9b5de5;
}

.bg-accent {
    background: var(--vv-accent);
}

.text-accent {
    color: var(--vv-accent);
}

.shadow-soft {
    box-shadow: 0 10px 30px rgba(0,0,0,.07);
}

.hero {
    background: linear-gradient(180deg, rgba(155,93,229,.08), rgba(155,93,229,0));
}

.tier-card:hover {
    transform: translateY(-2px);
    transition: transform .2s ease;
}

body {
    background-color: #FFFBEF;
    color:#555;
}
.card-body {color:#555;}


.author-card {
    overflow: visible; /* zodat de foto buiten de rand mag "hangen" */
}

.author-dummy {
    float: right;
    width: 100px;
    height: 75px;
}
.author-photo {
    position: absolute; 
    top: -40px;  /* iets boven de card */
    right: 0px; /* in de rechterhoek */
    width: 130px;
    height: 130px;
    border-radius: 50%; /* cirkel */
    object-fit: cover; /* mooi bijsnijden */
    border: 1px solid #999;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.animal-dummy {
    float: right;
    width: 100px;
    height: 75px;
}
.animal-photo {
    position: absolute;
    top: -40px; /* iets boven de card */
    right: 0px; /* in de rechterhoek */
    width: 130px;
    height: 130px;
    border-radius: 50%; /* cirkel */
    object-fit: cover; /* mooi bijsnijden */
    border: 0px solid #999;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}


.tiers-scroller {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.tiers-track {
    display: flex;
    gap: 1.5rem;
    animation: slide-left 18s linear infinite;
}

    .tiers-track > * {
        flex: 0 0 350px; /* breedte van elke card, pas aan naar smaak */
    }

@keyframes slide-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%); /* doorschuiven naar links */
    }
}
#tiers .swiper-slide {
    height: 430px;
}
#tiers .swiper-wrapper {
    height: 450px;
}

.bg-accent {
    background: #090;
}
h1, h2.h1, h2, .navbar-brand, .nav-link, h3.h4, h3.h5, a {
    color: #8d174d
}
    a:hover, .nav-link:focus, .nav-link:hover {
        color: #AD3666
    }

.h5, h5 {
    font-size: 1.5rem;
    font-family: 'Spectral', serif;
}


.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #8d174d;
    --bs-btn-border-color: #8d174d;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #AD3666;
    --bs-btn-hover-border-color: #AD3666;
    --bs-btn-focus-shadow-rgb: 193, 58, 112;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #8d174d;
    --bs-btn-active-border-color: #8d174d;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #8d174d;
    --bs-btn-disabled-border-color: #8d174d;
}

.btn-outline-primary {
    --bs-btn-color: #8d174d;
    --bs-btn-border-color: #8d174d;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #8d174d;
    --bs-btn-hover-border-color: #8d174d;
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #8d174d;
    --bs-btn-active-border-color: #8d174d;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #8d174d;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #8d174d;
    --bs-gradient: none;
    font-weight:800;
}

.swiper-pagination-bullet-active {
    background: #8d174d;
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #8d174d;
}

#testi-wrapper {
    position: relative;
    min-height: 1px;
}

/*
.testi-set {
    opacity: 0;
    transition: opacity 1s ease;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

    .testi-set.active {
        opacity: 1;
        position: relative;
    }
    */

.testi-slot {
    position: relative;
    min-height: 100%; /* zodat de hoogte behouden blijft */
}

.testi-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

    .testi-item.active {
        opacity: 1;
        position: relative; /* zorgt dat de actieve figure de layout bepaalt */
    }

.accordion-body {
    background-color: #FFF5F3;
}
.accordion-button:focus {
    box-shadow: unset;
}
.testi-slot {height:320px;}


@media only screen and (max-width: 431px) {
    #tiers .swiper-slide {
        height: 490px;
    }

    #tiers .swiper-wrapper {
        height: 510px;
    }
}

/* Mobiel: menu zacht in-/uitklappen met fade */
@media (max-width: 991.98px) {
    .navbar-collapse {
        display: block !important; /* overschrijft Bootstrap collapse */
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.3s ease, opacity 0.3s ease;
    }

        .navbar-collapse.show {
            max-height: 500px; /* groot genoeg voor al je items */
            opacity: 1;
        }
}

/* Basisstijl toggler-knop */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

    /* De drie lijntjes */
    .navbar-toggler .toggler-line {
        display: block;
        width: 24px;
        height: 2px;
        background-color: #000; /* eventueel aanpassen naar jouw kleur */
        border-radius: 999px;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

        /* Kleine tussenruimte tussen de lijnen */
        .navbar-toggler .toggler-line + .toggler-line {
            margin-top: 5px;
        }

    /* Toestand wanneer menu open is (aria-expanded = true) */
    .navbar-toggler[aria-expanded="true"] .toggler-line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .navbar-toggler[aria-expanded="true"] .toggler-line:nth-child(2) {
        opacity: 0;
    }

    .navbar-toggler[aria-expanded="true"] .toggler-line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }



main.Verhalen #tiers .swiper-wrapper {
    height: 700px;
}

main.Verhalen #tiers .swiper-slide {
    height: 700px;
}

input[type="checkbox"] {
    accent-color: #960047;
}

/* ======= Cookie modal ===== */

.vv-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 1050;
    /* midden uitlijnen, maar standaard onzichtbaar en onklikbaar */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease;
    
}

.vv-modal-backdrop.show {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: vvFadeIn .18s ease-out;
    opacity: 1;
    visibility: visible;
    pointer-events: auto; /* pas als hij open is, vangt hij clicks */
}

.vv-modal {
    background: #fff;
    max-width: 520px;
    width: 92%;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,.2);
    transform: translateY(-10px);
    opacity: 0;
    transition: transform .2s ease, opacity .2s ease;
}

.vv-modal-backdrop.show .vv-modal {
    transform: translateY(0);
    opacity: 1;
}

.vv-modal h5 {
    margin: 0 0 8px;
}

.vv-modal p {
    margin: 0 0 1rem;
}

.vv-modal .actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 16px;
}
/* Close-knop (rond ×) rechtsboven */
.vv-modal .vv-modal-close {
    position: absolute;
    top: 8px;
    right: 8px; /* exacte hoek */
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    background: rgba(240,240,240,.96);
    color: #333;
    font-size: 20px;
    line-height: 1;
    font-weight: 600;
    box-shadow: 0 0 0 1px rgba(0,0,0,.05) inset;
    transition: background .2s, transform .15s, box-shadow .2s;
}

    .vv-modal .vv-modal-close:hover {
        background: #ececec;
        transform: scale(1.04);
    }

    .vv-modal .vv-modal-close:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(0,123,255,.25);
    }

/* Kleine offset als er een 2px accentborder is */
.vv-modal.vv-accent--rainbow .vv-modal-close {
    top: -10px;
    right: -10px;
}

/* Cookie sliders */
.vv-cookie-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0 5px 0;
    gap: 10px;
}

.vv-cookie-text {
    flex: 1 1 auto;
}

    .vv-cookie-text small {
        color: #666;
    }

.vv-cookie-buttons {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Switch-stijl */

.vv-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
}

    .vv-switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.vv-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    border-radius: 16px;
    background-color: #ccc;
    transition: .2s;
}

    .vv-slider:before {
        position: absolute;
        content: "";
        height: 18px;
        width: 18px;
        left: 3px;
        top: 3px;
        border-radius: 50%;
        background-color: #fff;
        transition: .2s;
    }

/* Aan = roze/pink tint, past bij jouw stijl */

.vv-switch input:checked + .vv-slider {
    background-color: #960047;
}

    .vv-switch input:checked + .vv-slider:before {
        transform: translateX(24px);
    }

/* Disabled state voor functionele cookies */

.vv-switch input:disabled + .vv-slider {
    opacity: 0.6;
    cursor: default;
}