/* - - - MAIN - - - */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--regular-text);
    font-size: 0.9rem;
    margin: 0px;
    background-color: var(--surface);
}

.boxed {
    padding: 20px;
}

.container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.card-arrow {
    float: right;
    border-radius: 50%;
    transition-duration: 300ms;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.card-arrow img {
    height: 15px;

}

.card:hover .card-arrow {
    cursor: pointer;
    background-color: var(--subtle-primary-background)
}
.card:hover {
    cursor: pointer;
}
a {
    all:unset;
}

a:hover {
    cursor: pointer;
}

h1 {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 10px;
    font-family:var(--theme-text);
}

h2 {
    font-size: 1.4rem;
    font-family: var(--theme-text);
    font-weight: 500;

}

h3 {
    font-family: var(--theme-text);
    font-weight: 500;
    margin: 2px 0px;
}

.text {
    color: var(--text);
}

.small-sub-header {
    color: var(--subtle);
    font-size: 0.8rem;
    padding-top: 4px;
}

.gewone-tekst {
    font-style: normal;
    font-weight: 400;
    line-height: 1.4rem;
}

button {
    font-family: var(--regular-text);
    font-size: 0.9rem;
    padding: 0 1rem;
    height: 2.0rem;
}
button:hover {
    cursor:pointer;
}

.main-button {
    border-radius: var(--medium);
    border: none;
    background: var(--theme);
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: var(--schaduw);
}

.secondary-button {
    border-radius: var(--medium);
    border: none;
    background: var(--secondary);
    color: var(--surface);
    font-weight: 600;
    font-family: var(--regular-text);
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    box-shadow: var(--schaduw);
    display: flex;
    align-items: center;
    transition-duration: 300ms;
    width: fit-content;
    text-decoration: none;
}

.secondary-button:hover {
    cursor: pointer;
    background: var(--secondary-hover);
    box-shadow: var(--drop-shadow);
}

/* - - - meerlezen - - - */

.content.active div {
    max-height: 110px;
    overflow:hidden;
    margin-bottom: 20px;
}
.meerlezen {
    color: var(--secondary);
}
.meerlezen:hover {
    cursor:pointer;
    text-decoration:underline;
}

/* - - - dropdown button - - - */

.dropdown-button-container {
    overflow: hidden;
}

button.dropdown {
    border: 1px solid var(--subtle-border);
    background-color: var(--surface);
    transition-duration: 300ms;
    border-radius: var(--medium);
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-direction: row;
    align-items: center;
    padding: 8px;
    font-weight: 600;
    position: relative;
    width: fit-content;
}

.dropdown span:first-child img {
    padding-top: 3px;
}

button.dropdown:hover {
    cursor: pointer;
    box-shadow: var(--schaduw);
}

button.dropdown span:nth-child(3) {
    border-left: 1px solid var(--subtle-border);
    padding: 0px 4px;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
}

.dropdown-container {
    font-family: var(--theme-text);
    padding: 15px;
    border-radius: var(--medium);
    box-shadow: var(--drop-shadow);
    position: absolute;
    background: var(--surface);
    display: flex;
    flex-direction: column;
    gap: 15px;
    transform: translateX(-50%);
    opacity: 0;
    transition-duration: 300ms;
    visibility: hidden;
}

.dropdown-container img {
    vertical-align: middle;
    padding-bottom: 2px;
}

.dropdown-container div:hover {
    cursor: pointer;
    font-weight: 500;
}

/* - - - dropdown button active */

.active .dropdown-container {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
}

.active button.dropdown span:nth-child(3) {
    background-color: var(--background);
}



/* - - - end of dropdown button - - - */

@media screen and (min-width: 576px) {
    h1 {
        font-size: 2rem;

    }
}

@media screen and (min-width: 992px) {
    .boxed {
        max-width: 992px;
        margin: auto;
    }
}

/* - - - HEADER - - - */

/* - - - navigation - - - */

#hamburger-top-container {
    display: flex;
    flex-direction: column;
    align-items: end;
    overflow: hidden;
    padding: 15px;
}

@media screen and (max-width: 576px) {
    #hamburger-top-container {
        position: fixed;
        right: 0px;
        top: 0px;
    }

    #hamburger-top-container.active {
        border-radius: 0 0 0 var(--medium);
    }

    .hamburger-container {
        top: 30px;
        right: 20px
    }

    #hamburger-top-container {
        width: 90px;
        height: 140px;
    }
}

@media screen and (min-width: 576px) {
    nav {
        position: relative;
        right: 20px;
        top: 20px;
    }

    .hamburger-container {
        top: 20px;
    }

    #hamburger-top-container.active {
        border-radius: var(--medium);
    }

    #hamburger-top-container {
        width: 90px;
        height: 130px;
    }

}

.hamburger-container {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 5px;
    transition-duration: 300ms;
    padding-bottom: 10px;
    position: absolute;
}

.hamburger-bar {
    height: 3px;
    border-radius: 2px;
    width: 20px;
    background-color: var(--text);
    transition-duration: 300ms;
}

.hamburger-container:hover {
    cursor: pointer;
}

.first-bar {
    width: 30px;
}

.active .first-bar {
    transform: rotate(45deg)translate(5px, 6px);
}

.second-bar {
    width: 25px;
}

.active .second-bar {
    transform: translateY(100px);
    transition-duration: 300ms;
    opacity: 0;
}

.active .third-bar {
    transform: rotate(-45deg) translate(5px, -6px);
    width: 30px;
}

.nav-container {
    transition-duration: 300ms;
    transform: translateY(-30%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-family: var(--theme-text);
    position: absolute;
    bottom: 15px;
    left: 20px;
    visibility:hidden;
}

.nav-container div:hover {
    cursor: pointer;
    font-weight: 500;
}

.active .nav-container {
    transform: translateY(0);
    opacity: 1;
    visibility:visible;

}

#hamburger-top-container.active {
    box-shadow: var(--drop-shadow);
    background-color: var(--surface);
}
.main-header {
    height: 100px;
}
nav {
    height: 160px;
}
.main-header img {
    max-height: 70px;
    padding-top: 20px;
}
@media screen and (min-width: 992px) {
    .main-header img {
        padding-top: 30px;
    }
}


/* - - - first section - - - */

.sub-header {
    font-size: 1rem;
    line-height: 1.4rem;
    padding-bottom: 1.4rem;
    font-weight: 400;
}

.break {
    display: block;
}

.checkbox-list {
    list-style-image: url('../images/checkbox.svg');
}

.checkbox-list li {
    height: 1.6rem;
    padding-left: 10px;
}

@media screen and (min-width: 576px) {

    .break {
        display: inline;
    }

    .sub-header {
        font-size: 1.1rem;
        line-height: 2rem;
    }
}

/* - - - CARDS SECTION - - - */

.first-section ul {
    margin-bottom: 10px;
}
.first-section {
    padding-top: 0px;
}

.card {
    min-width: 280px;
    box-sizing: border-box;
    padding: 15px;
    border-radius: var(--round);
    box-shadow: var(--drop-shadow);
}

@media screen and (max-width: 575px) {
    .card-container {
        gap: 20px;
    }
    }

@media screen and (min-width: 696px) {
    .card {
        max-width: 49%
    }

    .card:nth-child(3) {
        max-width: 100%;
    }
}

@media screen and (min-width: 992px) {
    .card {
        min-width: 305px;
        box-sizing: border-box;
    }

    .container {
        flex-direction: row;
        flex-wrap: nowrap;
    }
}

.pubquizstore {
    background: linear-gradient(180deg, #FFF 70%, #E5E5E5 100%);
}

.img-pubquizstore {
    background-image: url(../images/img-pubquizstore-small.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom center;
}

.sportkaart {
    background-image: url(../images/rect2247.png);
    background-size: cover;
    background-position: center;
}

.card-spacer,
.img-pubquizstore {
    height: 45vw;
    margin-top: 30px;
}

.sportkaart .card-text-container {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 90%, rgba(255, 255, 255, 0) 100%);
    height: 55%;
    margin: -15px;
    padding: 15px;
    border-radius: 15px 15px 0 0;
}

.lijstfier .img-container img {
    max-width: 90%;
    box-shadow: var(--schaduw);
    border-radius: var(--medium);
}

@media screen and (min-width: 696px) {
    .lijstfier .img-container img {
        max-width: 32%;
    }
}

.img-container {
    display: flex;
    flex-direction: row;
    overflow-x: scroll;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    flex-wrap: nowrap;
    padding: 10px;
    box-shadow: 30px 0px 30px 0px rgba(255, 255, 255, 0.80) inset, -30px 0px 30px 0px #FFF inset;
    background-color: var(--surface);
    margin: -5px;
}

.lijstfier .img-container {
    gap: 10px;
}

.img-container::webkit-scrollbar {
    display: none;
}


@media screen and (min-width: 696px) {
    .img-pubquizstore {
        background-image: url(../images/img-pubquizstore-small.webp);
    }

    .img-pubquizstore,
    .card-spacer {
        height: 23vw;
    }
}

@media screen and (min-width: 992px) {
    img.pubquizstore {
        background-image: url(../images/img-pubquizstore-small.webp);
    }

    .img-pubquizstore,
    .card-spacer {
        height: 160px;
        width: 100%;
    }

    .sportkaart {
        background-size: contain;
        background-position: bottom;
        background-repeat: no-repeat;
    }

    .lijstfier .img-container img {
        max-width: 60%;

    }
}

.tools {
    margin-bottom: 20px;
}

.tools .img-container {
    gap: 50px;
    height: 70px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

.tools img {
    max-height: 100%;
}

.tools .halve {
    max-height: 50%;
}


/* - - - - - -OVER GERBRICH SECTION - - - - - - */

.over-gerb {
    background-color: var(--primary-background);
}

.caroussel-container-img {
    margin-top: 5px;
}

.col-sub p {
    margin-top: 0px;
}

#name-clicker {
    width: 100%;
    background-color: var(--surface);
    border: 1.5px solid var(--text);
    border-radius: var(--round);
    align-items: center;
    display: flex;
    justify-content: space-between;

}

.caroussel-container2 {
    width: 70vw;
    overflow: hidden;
}

.caroussel-container-img {
    width: 40vw;
    height: 50vw;
    overflow: hidden;
    border-radius: var(--round);
}

.img3 {
    width: 0vw;
    transition-duration: 300ms;
}

.img3.active {
    width: 40vw;
}

.caroussel-container-img img {
    height: 50vw;
    min-width: 40vw;
}

#caroussel-inner-container3 {
    width: 280vw;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    transform: translateX(-70vw);
    min-height: 2.5rem;
}

#caroussel-inner-container-img {
    width: 160vw;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    transform: translateX(-40vw);
}

.name3 {
    width: 0vw;
    text-align: center;
    transition-duration: 300ms;
}
.name3 span:first-child {
font-weight: 500;
}

.name3.active {
    padding: 0;
    display: flex;
    width: 70vw;
    align-items: center;
    gap:10px;
}

.clicker-button {
    padding: 8px 10px;
    display: flex;
}

.clicker-button:hover {
    cursor: pointer;
}

@media screen and (max-width: 576px) {
    .col-main {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px;
    }

    .col-sub {
        width: 45%;
        padding: 15px 0;
    }
}

@media screen and (min-width:576px) {
    .over-gerb .container {
        flex-direction: column;
        position: relative;
    }

    .col-main {
        width: 60%;
    }
    .col-sub:first-child {
        position: absolute;
        right: 0;
        top: 0;
        width: fit-content;
    }

    .caroussel-container2 {
        width: 40vw;
        overflow: hidden;
    }

    .caroussel-container-img {
        width: 200px;
        height: 250px;
        overflow: hidden;
        border-radius: var(--round);
        /* 20 25 */
    }

    .img3.active {
        width: 200px;
        /* 20*/
    }

    .caroussel-container-img img {
        height: 250px;
        min-width: 200px;
        /* 25 20*/
    }

    #caroussel-inner-container3 {
        width: 160vw;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        transform: translateX(-40vw);
    }

    #caroussel-inner-container-img {
        width: 800px;
        /* 80*/
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        transform: translateX(-200px);
        /*-20 */
    }

    .name3.active {
        padding: 0;
        display: flex;
        gap: 5vw;
        width: 40vw;
        align-items: center;
    }

}

/* - - - DIENSTEN - - - */

.short-boxed {
    padding: 5px 20px 5px 20px;
}
#dienst-clicker {
    display: flex;
    justify-content: space-between;
}

.caroussel-container-dienst {
    overflow: hidden;
}

#caroussel-inner-container-dienst {
    width: 400%;
    display: flex;
    flex-direction: row;
    gap: 15px;
    flex-wrap: nowrap;
    transform: translateX(-50%);
}

@media screen and (max-width: 576px) {

    .diensten-sectie {
        padding: 0px;
    }

    #caroussel-inner-container-dienst {
        width: 415%;
        transform: translateX(-50.4%);
    }
}

.dienst {
    transition-duration: 300ms;
    width: 0%;
}

.dienst.active {
    background-color: var(--primary-background);
    border-radius: var(--round);
    width: 100%;
    padding: 15px;
}

.dienst li span:nth-child(2) {
    float: right
}

.dienst ul, footer ul {
    padding-left: 20px;
    margin: 35px 0px 25px 0px;
}

.onderstuk {
    border-top: solid 0.5px var(--subtle-border);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
}

@media screen and (min-width:730px) {
    .dienst.active {
        width: 50%
    }

    /*992-20-20(padding)-15-15(gap)/3=307*/
    #caroussel-inner-container-dienst {
        width: 200%;
        transform: translateX(-25%)
    }
}


@media screen and (min-width:992px) {
    #dienst-clicker .clicker-button {
        display: none;
    }

    #caroussel-inner-container-dienst .active:nth-child(2),
    #caroussel-inner-container-dienst .dienst:first-child {
        display: none;
    }

    #caroussel-inner-container-dienst {
        width: 100%;
        transform: translateX(0);
    }

    .dienst.active {
        width: 307px
    }
}

@media screen and (min-width:992px) {
    

    .col-main {
        width: 70%;
    }

    
}



/* - - - CONTACT EN REVIEWS - - - */


@media screen and (max-width: 730px) {
    .contactcontainer {
        padding: 0px;
        margin-top: 50px;
    }

    .watanderenzeggen>header {
        border-radius: var(--round) var(--round) 0 0;

    }

    .contactsectie header {
        padding: 30px 20px;

    }

}

@media screen and (min-width: 730px) {
    .contactcontainer {
        display: flex;
        flex-direction: row-reverse;
        position: relative;
    }

    .watanderenzeggen {
        min-width: 400px;
        width: 40%;
        margin-top: 130px;
        min-height: 100%;
    }

    .scroll-container {
        min-height: 550px;
    }

    .contactsectie header {
        height: 130px;
        position: absolute;
        top: 20px;

    }

    .contactsectie {
        margin-top: 130px;
        width: 60%;
    }

    .contactformulier {
        height: 100%;
        box-sizing: border-box;
    }

    .contactformulier h2 {
        margin-top: 0px;
    }
}

/* - - - wat anderen zeggen - - - */

.watanderenzeggen>header {
    background-color: var(--theme)
}

.scroll-container {
    height: 400px;
    background-color: var(--background);
    padding: 20px;
    overflow-y: scroll;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    display: flex;
    gap: 15px;
    flex-direction: column;
    position: relative;
}

.scroll-top-container {
    position: relative;
}

.scroll-container-overlay {
    background: linear-gradient(180deg, rgba(255, 255, 255, 00) 0%, var(--background) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
}

.message {
    background-color: var(--surface);
    box-shadow: var(--schaduw);
    padding: 15px;
    border-radius: 0px 10px 10px 10px;
    max-width: 415px;
}

.contact-img {
    border-radius: 50%;
    overflow: hidden;
    height: 40px;
    width: 40px;
}

.contact-img img {
    max-width: 100%;
}

.message header {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

/* - - - contact - - -*/


.contactformulier {
    background-color: var(--theme);
}

.contactformulier ul {
    padding-left: 20px;
    margin: 35px 0px 25px 0px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contactformulier button.dropdown {
    padding: 8px;
}

input,
select,
option,
textarea {
    padding: 6px;
    border: none;
    margin-bottom: 10px;
    font-family: var(--regular-text);
    font-size: 0.9rem;
}

select option {
    padding: 10px;
    line-height: 0.9rem;
}

textarea {
    height: 6rem;
}

/* - - - FOOTER - - - */
footer {
    padding-top: 30px;
}
.subfooter {
    background-color: var(--text);
    color: var(--surface);
    padding: 5px;
    text-align:center;
}