@font-face {
    font-family: dodo;
    src: url(./Assets/Fonts/MrDodo-Regular.ttf);
}

@font-face {
    font-family: dodo-light;
    src: url(./Assets/Fonts/MrDodo-Light.ttf);
}

@font-face {
    font-family: dodo-bold;
    src: url(./Assets/Fonts/MrDodo-Bold.ttf);
}

:root {
    --zfblauw: #00afe8;
    --zfmagenta: #e71984;
    --zfzand: #f8f2e8;
    --zfdonker: #334050;

}

body {
    font-family: 'dodo', serif;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    overflow-x: hidden;
    max-width: 100%;
}

#Top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: var(--zfblauw);
    min-height: 2rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 2rem;
}

#socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: large;
}

#socials a {
    color: var(--zfmagenta);
    padding: 0 0.5rem;
    text-decoration: none;
}

#email {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: var(--zfzand)
}

#email a {
    text-decoration: none;
    color: var(--zfzand);
    padding-left: 1rem;
}

#logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height:6rem;
    padding: 1rem 0;
}

#logo img {
    width: auto;
    height: 100%;
    display: block;
    overflow-y: visible;
    z-index: 1;
    position: relative;
}

#Menubar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: var(--zfdonker);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 5rem;
    height: 6rem;
    position: -webkit-sticky;
    position: sticky;
    top:0;
    z-index: 4;
}

#Menuitems {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: xx-large;
    color: var(--zfzand);
    white-space: nowrap;
}

.Menuitem {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 1.5rem;
}

.Menuitem a {
    all: unset;
    cursor: pointer;
    -webkit-transition: -webkit-transform 0.2s ease-out;
    transition: -webkit-transform 0.2s ease-out;
    -o-transition: transform 0.2s ease-out;
    transition: transform 0.2s ease-out;
    transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}

.Menuitem a:hover {
    color: var(--zfmagenta);
    -webkit-transform: rotateZ(6deg) rotateX(15deg);
            transform: rotateZ(6deg) rotateX(15deg);
}

.Menuitem:nth-child(odd) a:hover {
    -webkit-transform: rotateZ(-6deg) rotateX(15deg);
            transform: rotateZ(-6deg) rotateX(15deg);
}

.Menuitem span {
    padding-left: 1rem;
}

#Lineup {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
}

#LuDropdown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    top: 2em;
    max-height: 0px;
    overflow: hidden;
    -webkit-transition: max-height 0.5s ease-in-out;
    -o-transition: max-height 0.5s ease-in-out;
    transition: max-height 0.5s ease-in-out;
    background-color: var(--zfdonker);
    z-index: 5;
}

#Lineup:hover #LuDropdown {
    max-height: 500px;
}

.DropdownItem {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 0.5rem 1.5rem;
    z-index: 5;
}

.DropdownItem:first-child {
    padding-top: 1rem;
}

.DropdownItem:last-child {
    padding-bottom: 1rem;
    ;
}

#Hero {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 5rem;
    background-color: var(--zfzand);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

#Hero img {
    width: 100%;
    height: auto;
}

#TextContainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 37rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.HeroText {
    color: var(--zfzand);
    background-color: rgba(51, 64, 80, 0.4);
    padding: 0.2rem 1rem;
}

.HeroTitle {
    font-size: 4rem;
}

.HeroSub {
    font-size: 3rem;
}

.HeroLink{
    display:flex;
    margin-top:1rem;
    justify-content: center;
    font-size: 3rem;
    color: var(--zfzand);
    background-color: var(--zfmagenta);
    padding: 0.2rem 1rem;
    border-radius: 1rem;
    cursor: pointer;
    text-align: center;
    width: 40%;
}

#Content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 5rem;
    background-color: var(--zfblauw);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
}
#Content.Vrijwilligerspagina{
    background-color: var(--zfzand);
}

#notStarted{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    color:var(--zfmagenta);
    font-size:2.5rem;
    height:500px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 2.5rem;
    background-color: var(--zfzand);
}


.kop {
    display: flex;
    font-size: 5rem;
    color: var(--zfzand);
    padding: 2rem 0;
    width: 100%;
    justify-content: center;
}

#Content.autorodeo{
    background-color: var(--zfzand);
    flex-flow: column wrap;
    align-items: center;
}
.RodeoKop{
    font-size: 5rem;
    color: var(--zfdonker);
    padding: 2rem 1rem;
    text-align: center;
}
#Rodeosub{
    display: flex;
    flex-flow: column wrap;
    width: 100%;
    align-content: space-around;
    align-items: center;
}
.subKop{
    display: flex;
    font-size: 2.5rem;
    padding:1rem;
    margin-bottom: 1rem;
    color:var(--zfdonker)
}
#Rodeouitslagen{
    display:flex;
    flex-flow:row wrap ;
    width: 100%;
    justify-content: space-around;
    padding-bottom: 2rem;
}
.rodeoLink{
    width: 35%;
    font-size: 1.2rem;
    background-color: var(--zfblauw);
    text-align: center;
    text-decoration: none;
    margin: 0.5rem;
    padding: 0.5rem;
    color: var(--zfzand);
    -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
            box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}
.rodeoLink:hover{
    background-color: var(--zfmagenta);
}

.ytvideo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 1rem;

}

.sfeerimage.kader {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 25%;
    height: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 2rem 0;
}

.sfeerimage.kader img {
    width: 100%;
    -webkit-mask-image: url(/html/Assets/HENG_Vierkant_schuin_kader.svg);
            mask-image: url(/html/Assets/HENG_Vierkant_schuin_kader.svg);
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    -webkit-mask-size: contain;
            mask-size: contain;
}

.sfeerimage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 30%;
    height: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 2rem 0;
}

.sfeerimage img {
    width: 100%;
    -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
            box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    border-radius: 10px;
    -webkit-transition: -webkit-transform 0.2s ease-in-out;
    transition: -webkit-transform 0.2s ease-in-out;
    -o-transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

.sfeerimage:nth-child(odd) img:hover {
    -webkit-transform: rotateZ(4deg);
        -ms-transform: rotate(4deg);
            transform: rotateZ(4deg);
}

.sfeerimage:nth-child(even) img:hover {
    -webkit-transform: rotateZ(-4deg);
        -ms-transform: rotate(-4deg);
            transform: rotateZ(-4deg);
}

#Programma {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    background-color: var(--zfzand);
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.Dag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 27%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 1rem;
}

.TopBlok {
    display: block;
}

.ProgrammaBlok {
    display: block;
    padding-top: 1rem;
}

.ProgrammaBlok img {
    width: 100%;
    height: auto;
    -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
            box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.card-container {
    -webkit-perspective: 1000px;
            perspective: 1000px;
    width: 100%;
}

.card {
    height: 200px;
    position: relative;
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
    -webkit-transition: -webkit-transform 0.6s ease-in-out 0.1s;
    transition: -webkit-transform 0.6s ease-in-out 0.1s;
    -o-transition: transform 0.6s ease-in-out 0.1s;
    transition: transform 0.6s ease-in-out 0.1s;
    transition: transform 0.6s ease-in-out 0.1s, -webkit-transform 0.6s ease-in-out 0.1s;
    -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
            box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.card:hover, .card:active{
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
}

.card-front,
.card-back {
    width: 100%;
    height: 100%;
    position: absolute;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    color: var(--zfzand);
}

.cardtitle {
    font-size: 2rem;
}

.cardsubtext {
 font-size: 1rem;
 padding:1rem;
}

.card-front {
    background-color: var(--zfmagenta);
}

.card-back {
    background-color: var(--zfblauw);
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
}

.textvak{
    padding: 0 10%;
    font-size: x-large;
}

#DownloadKnop{
    padding: 0 12%;
    background-color: var(--zfmagenta);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 50%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 2rem 0;
    height: 3rem;
    -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
            box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

#DownloadLink{
    color:var(--zfzand);
    text-decoration: none;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

#DownloadLink span{
    padding-right: 0.5rem;
}

#DownloadKnop:has(#DownloadLink:hover){
    background-color: var(--zfdonker);
}

#Vrijwilligers,#Commissies{
    padding-top: 1rem;
}

#SponsorRow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-height: 11rem;
    background-color: var(--zfmagenta);
    overflow-x: hidden;
}

#slideTrack {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-animation: scroll 25s linear infinite;
            animation: scroll 25s linear infinite;
}

.sponsor {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 25%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.sponsor img {
    height: 100%;
}

#faq {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: 5rem;
    background-color: var(--zfdonker);
    font-size: x-large;
    padding: 1rem 0;
}


.question:first-child {
    border-top: 1px solid var(--zfzand)
}

.question {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 10%;
    background-color: var(--zfblauw);
    padding: 0 2rem 0 1rem;
}

.answer {
    display: block;
    margin: 0 10%;
    max-height: 1px;
    overflow: hidden;
    -webkit-transition: all 0.4s ease-in;
    -o-transition: all 0.4s ease-in;
    transition: all 0.4s ease-in;
    background-color: var(--zfzand);
    padding: 0 1rem;
}

.answer a{
    color: var(--zfmagenta);
}

.answer.big {
    max-height: 20em;
}

.fa-plus {
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}

.fa-plus.crossed {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
}

#Footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: 5rem;
    background-color: var(--zfblauw);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
}
#footblock{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    padding-top:1rem;
}

#contact span{
    padding-right: 1rem;
}

#contact a{
    color: var(--zfmagenta);
}

#copyright {
    padding: 0.5rem;
    color: var(--zfzand);
}

#pdfs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: large;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}

#pdfs a {
    color: var(--zfmagenta);
}

.Divider {
    position: absolute;
    left: 0;
    bottom: 0;
}

.Divider-top {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}

.Divider-blue {
    fill: var(--zfblauw)
}

.Divider-magenta {
    fill: var(--zfmagenta)
}

.has-divider {
    position: relative;
}

@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
    }
}

@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
    }
}

iframe{
    height:1080px;
    width: 80%;
}


.fa-plus:hover{
    cursor: pointer;
}



#bedrijvenuurtje{
    font-size: x-large; 
    padding: 2rem;
    display: flex;
    flex-direction: column;
}
#bedrijvenuurtje span{
    padding: 1rem 0;
}
.uurtje >li{
    list-style-type: disclosure-closed;
}

#timeTable{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 2rem;
    background-color: var(--zfblauw);
}
#timeImage{
    display: flex;
    width: 80%;
    flex-direction: row;
    justify-content: space-between;
}
#timeImage>img{
    width: 49%;
}
#timeTable > #DownloadKnop{
    margin: 1rem;
}



/*Mobile Screen*/

@media screen and (max-width:850px),
screen and (max-width:850px) and (-webkit-min-device-pixel-ratio: 2){

    /*---Navbar---*/
    /*Burger is styled in own css*/
    #HamburgerMenu{
        display: block;
    }
    #Menubar{
        padding: 0 2rem;
        position: initial;
    }
    #Menuitems{
        display: none;
    }

    /*---Sfeerfotos---*/
    .kop{
        font-size: 3rem;
    }
    .ytvideo{
        display: none;
    }
    .sfeerimage{
        width: 80%;
    }
    /*Limit number of pictures, there are a .kop and .ytvideo, so the first image is child 3 this does not prevent downloading*/
    #Content .sfeerimage:nth-child(n+8){ 
        visibility: hidden;
        display: none;
    }

    /*---Programma---*/
    .Dag{
        width: 80%;
    }

    /*--Rodeo/Vrijwilligers--*/
    .textvak{
        font-size: large;
    }
    /*---Footer---*/
    #contact span{
        display: none;
    }
    #Footer{
        padding: 0 0.5rem;
        font-size: small;
    }    
    #pdfs{
        font-size: small;
    }

    #faq{
        font-size: medium;
    }

    #DownloadKnop{
        width: 90%;
        padding:0;
    }

    iframe{
        height:1580px;
        width: 100%;
    }

    #bedrijvenuurtje{
        font-size: medium; 

    }

    #timeTable{
    flex-direction: column-reverse;
    }

    #timeImage{
    width: 90%;
    flex-direction: column;
    align-items: center;
    }   

    #timeImage>img{
    width: 100%;
}

    .HeroLink{
        font-size: 2rem;
        width: 80%;
    }

    .rodeoLink{
    width: 90%;
    font-size: 1rem;
    }
}