*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

:root{
    --font-primary: "Montserrat", sans-serif;
    --font-cursive:  "Nanum Pen Script", cursive;

    --white: #FFFFFF;
    --black: #000000;
    --green: #BCCF4A;
    --red: #C43F47;
    --off-white: #F7F7F7;
    --brown: #754545;
}

p, span, label, input, textarea, select, button, a{
    font-family: var(--font-primary);
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    color: var(--black);
    line-height: 1.4em;
    letter-spacing: .1em;
}

.fc-selected-date {
    background-color: #378006 !important;
    opacity: 1;
    border-radius: 4px;
}

h1{
    font-size: 8em;
    line-height: .8em;
    font-weight: normal;
    font-family: var(--font-cursive);
}

h2{
    font-size: 4em;
    font-weight: normal;
    font-family: var(--font-cursive);
}

.flex{
    display: flex;
}
.flex-end{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.gap-1{
    gap: 1em;
}
.gap-2{
    gap: 2em;
}
.gap-3{
    gap: 3em;
}
.gap-4{
    gap: 4em;
}

.mt-1{
    margin-top: 1em;
}

.mt-2{
    margin-top: 2em;
}

.mt-3{
    margin-top: 3em;
}

.flex-center{
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-col{
    flex-direction: column;
}

.w-100{
    width: 100%;
}

.primary_btn{
    padding: 12px 16px;
    font-size: 1.2em;
    color: var(--white);
    background-color: var(--red);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    /* text-transform: uppercase; */
}
    .primary_btn:hover{
        opacity: 0.8;
    }
.secondary_btn{
    padding: 12px 16px;
    font-size: 1.2em;
    color: var(--white);
    background-color: var(--green);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    /* text-transform: uppercase; */
}
    .secondary_btn:hover{
        opacity: 0.8;
    }

div.hr_line_red{
    margin: 0 auto;
    width: 200px;
    height: 2px;
    border-radius: 100px;
    background-color: var(--red);
}
div.hr_line_green{
    margin: 0 auto;
    width: 200px;
    height: 2px;
    border-radius: 100px;
    background-color: var(--green);
}

div.header{
    padding: 1em 4em;
    background-color: var(--white);
    justify-content: space-between;
    align-items: center;
}
    div.header_left{
        max-width: 300px;
        width: 100%;
    }
        div.header_left img{
            width: 100%;
            height: 100px;
            object-fit: contain;
        }
    div.header_right{
        width: 100%;
    }
        div.menu_item a:hover{
            text-decoration: underline;
        }
div.double_btn{
    display: flex; 
    justify-content: flex-start;
    align-items: center;
    gap: 2em;
    flex-wrap: wrap;
}
div.hero{
    position: relative;
    height: calc(100vh - 136px);
    background: white;;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url("../images/hero_bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom-right-radius: 400px; 
}
div.hero2{
    position: relative;
    height: 30vh;
    background: white;;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url("../images/hero_bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
    div.hero_inner{
        width: 100%;
        padding: 0px 5em;
    }
    div.hero h1{
        max-width: 1000px;
        color: var(--white);
    }
div.accomodations{
    padding: 2em;
}
div.accomodations_page{
    background-color: var(--off-white);
}
    div.accomodations_inner{
        max-width: 1200px;
        width: 100%;
        margin-top: 2em;
    }
        div.accomodatie_card{
            max-width: 550px;
            width: 100%;
            background-color: var(--off-white);
            box-shadow: 4px 4px 16px rgba(0,0,0,0.2);
            border-radius: 10px;
        }
        div.accomodations_page div.accomodatie_card{
            background-color: var(--white);
        }
        div.accomodatie_card_img{
                width: 100%;
                height: 350px;
            }
                div.accomodatie_card_img img{
                    width: 100%;
                    height: 350px;
                    object-fit: cover;
                    border-top-left-radius: 10px;
                    border-top-right-radius: 10px;
                }
            div.accomodatie_card_body{
                padding: 1em;
            }
                div.accomodatie_card_body h3{
                    font-size: 2em;
                    font-weight: normal;
                    font-family: var(--font-cursive);
                }
            div.accomodatie_card_marks{
                width: 100%;
                display: flex;
                justify-content: flex-start;
                gap: .5em;
                flex-wrap: wrap;
                margin-top: .5em;
            }
                div.accomodatie_mark{
                    padding: .3em;
                    border-radius: 100px;
                    display: flex;
                    gap: .4em;
                    align-items: center;
                    background-color: var(--white);
                    border: 1px solid var(--brown);
                }
                    div.accomodatie_mark span{
                        font-size: .8em;
                    }
            div.accomodatie_card_action{
                width: 100%;
                display: flex;
                justify-content: flex-end;
                margin-top: 1em;
            }
      
div.omgeving2{
    position: relative;
    padding: 8em 2em;
    background-color: var(--red);
    overflow: hidden;
}
   
div.omgeving2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% + 1px);
    height: 100px;
    background-color: var(--off-white);
    transform: rotate(2deg) translateY(-100px);
    transform-origin: top left;
    z-index: 1;
    overflow: hidden;
}
div.omgeving2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--white);
    transform: rotate(-2deg) translateY(100%);
    transform-origin: top left;
    z-index: 1;
    overflow: hidden;
}
div.omgeving_page{
    position: relative;
    padding: 8em 2em;
    background-color: var(--red);
    overflow: hidden;
}
div.omgeving{
    position: relative;
    padding: 8em 2em;
    background-color: var(--red);
    margin-top: 100px;
    overflow: hidden;
}
   
div.omgeving::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% + 1px);
    height: 100px;
    background-color: white;
    transform: rotate(2deg) translateY(-100px);
    transform-origin: top left;
    z-index: 1;
    overflow: hidden;
}
div.omgeving::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--off-white);
    transform: rotate(-2deg) translateY(100%);
    transform-origin: top left;
    z-index: 1;
    overflow: hidden;
}
    div.omgeving_inner{
        max-width: 1200px;
        align-items: center;
    }
        div.omgeving_left, div.omgeving_right{
            width: 100%;
        }
            div.omgeving_left *{
                color: var(--white);
            }
            div.omgeving_left div.hr_line_green{
                margin-left: 0;
                margin-bottom: 2em;
            }
            div.omgeving_left p:last-child{
                margin-top: 2em;
            }
            div.omgeving_right{
                display: flex;
                justify-content: center;
                align-items: center;
                max-width: 450px;
            }
            div.omgeving_right img{
                width: 100%;
                aspect-ratio: 1 / 1;
                border-radius: 10000px;
                object-fit: cover;
            }
div.about{
    padding: 4em 2em;
    background-color: var(--off-white)
}
    div.about_inner{
        max-width: 1200px;
        justify-content: center;
        align-items: center;
    }
        div.about_right, div.about_left{
            width: 100%;
        }
        div.about_right:has(img) img{
            max-width: 550px;
        }
        div.about_left:has(img) img{
            max-width: 550px;
        }
            div.about_inner > div >img{
                width: 100%;
                height: 400px;
                /* aspect-ratio: 2 / 1; */
                object-position: top;
                object-fit: cover;
                border-radius: 10px;
            }

div.contact{
    padding: 4em 2em;
}
    div.contact_inner{
        max-width: 1200px;
        box-shadow: 4px 4px 16px rgba(0,0,0,0.2);
    }
        div.contact_left, div.contact_right{
            width: 100%;
        }
        div.contact_left{
            padding: 2em;
        }
        div.contact_right{
            width: 70%;
        }
            #map{
                height: 100%;
            }
            .leaflet-right{
                display: none;
            }
        form#sendMailForm{
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 2em;
        }
        div.form_item_double{
            width: 100%;
            display: flex;
            gap: 2em;
        }
            div.form_item{
                width: 100%;
            }
                div.form_item input, div.form_item select, div.form_item textarea{
                    border: none;
                    border-bottom: 1px solid var(--black);
                    width: 100%;
                    margin-top: .2em;
                    padding: .5em 1em;
                    outline: none;
                    transition: all 100ms ease-in-out;
                }
                div.form_item input:focus,
                div.form_item select:focus,
                div.form_item textarea:focus{
                    border-color: var(--green);
                }
                div.form_item_btn{
                    display: flex;
                    justify-content: flex-end;
                }
div.footer{
    width: 100%;
    padding: 4em;
    background-color: var(--green);
    color: var(--white);
}
    div.footer_inner{
        max-width: 1300px;
        width: 100%;
        display: flex;
    }
        div.footer_item{
            padding: 0 2em;
            display: flex;
            flex-direction: column;
        }
            div.footer_item h3{
                margin-bottom: .5em;
                font-size: 2em;
                font-weight: normal;
                font-family: var(--font-cursive);
            }
            div.footer_item p, div.footer_item a{
                color: var(--white);
                margin-top: 1em;
            }
                div.footer_item a:hover{
                    text-transform: underline;
                }
            div.footer_item_img{
                justify-self: flex-end;
            }
                div.footer_item_img img{
                    max-width: 400px;
                    width: 100%;
                }


div.bottom{ 
    padding: 1em 4em;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 1em;
}



div.accom{
    width: 100%;
    background-color: var(--off-white);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 4em;
    gap: 2em;
}
    div.accom_inner{
        max-width: 1300px;
        width: 100%;
        display: flex;
        gap: 2em;
    }
        div.accom_info{
            max-width: 700px;
            width: 100%;
        }
        div.accom_images{
            width: 50%;
        }
            div.accom_main_images{
                max-width: 100%;
                width: 100%;
                height: 600px;
            }
                div.accom_main_images img{
                    width: 100%;
                    object-fit: cover;
                    height: 600px;
                    border-radius: 4px;
                }
            div.accom_thumb_images{
                width: 100%;
                display:flex;
                /* gap: 1em; */
                margin-top: 30px;
            }
                div.accom_thumb_images img{
                    max-width: 100px;
                    width: 100px !important;
                    height: 100px; 
                    object-fit: cover;
                    border-radius: 4px;
                }
                div.slick-track{
                    min-width: 100px;
                }
        div.accom_main_info{
            background: var(--white);
            border-radius: 10px;
            padding: 2em;
        }
        div.accom_book_container{
            margin-top: 2em;
            padding: 2em;
            background-color: var(--white);
            border-radius: 10px;
        }
        #doBookingErr{
            color: var(--red);
            margin-bottom: 8px;
        }
        div.accom_description{
            width: 100%;
            background-color: var(--white);
            border-radius: 10px;
            padding: 2em;
        }
            div.accom_description h3{
                font-size: 2em;
                font-weight: normal;
                font-family: var(--font-cursive);
            }
            div.accom_description div.hr_line_red{
                margin-left: 0;
                margin-bottom: 1.2em;
            }
            div.accom_description ul li{
                list-style-type: none;
                margin: 8px 0;
                font-family: var(--font-cursive);
                font-size: 1.4em;
                width: max-content;
            }
        div.accom_legenda{
            width: 100%;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            gap: 1em;
        }      
            div.accom_legenda > div{
                display: flex;
                gap: 4px;
                align-items: center;
                justify-content: flex-start;
            }
                div.accom_legenda > div span{
                    padding-top: 3px;
                }
            div.legenda_circle{
                width: 15px;
                height: 15px;
                border-radius: 1000px;
            }
            div.legenda_circle_red{
                background-color: #ff3440;
            }
            div.legenda_circle_orange{
                background-color: #ff8f00;
            }
        div.accom_actions{
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 1em;
        }
            div.accom_actions h3{
                font-size: 1.5em;
                font-weight: normal;
                font-family: var(--font-primary);
            }

.fc .fc-button-primary{
    background-color: var(--white) !important;
}

.fc-h-event{
    background-color: var(--red);
}

div.boeken{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: var(--off-white);
    padding: 4em;
}
    div.boeken_inner{
        max-width: 1200px;
        width: 100%;
        display: flex;
        gap: 2em;
    }
        div.boeken_naw_info{
            width: 100%;
            padding: 1em;
            background-color: var(--white);
            border-radius: 10px;
        }
            form#bookingForm{
                display: flex;
                flex-direction: column;
                width: 100%;
                gap: 1em;
            }
            input[type='checkbox']{
                width: 30px !important;
            }
        div.boeken_info{
            border-radius: 10px;
            max-width: 400px;
            width: 100%;
            background-color: var(--white);
            padding: 1em;
        }
        div.boeken_info img{
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            border-radius: 10px;
        }
        div.boeken_info h3{
            font-size: 1.8em;
            font-weight: normal;
            font-family: var(--font-cursive);
            margin-top: .5em;
        }
        div.boeken_info div.hr_line_red{
            width: 100%;
            margin: .5em 0;
        }
        div.boeken_info h4{
            font-size: 1.2em;
            font-weight: normal;
            font-family: var(--font-primary);
            margin-top: .5em;
        }


#res_header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    z-index: 99999;
    display: none;
}
    div.res_header_close{
        position: absolute;
        top: 2em;
        left: 2em;
    }
        div.res_header_close i{
            font-size: 1.2em;
            color: var(--black);
        }
    div.res_header_inner{
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 2em; 
    }
        div.menu_item_img{
            max-width: 200px;
            width: 100%;
            margin-top: 2em;
        }
            div.menu_item_img img{
                width: 100%;
                object-fit: contain;
            }

    div.header_right_res{
        display: none;
    }
        div.header_right_res i{
            font-size: 2em;
        }

    div.booking_payed{
        width: 100%;
        padding: 4em 2em;
    }
        div.booking_payed_inner{
            max-width: 1000px;
            width: 100%;
            margin: 0 auto;
        }
        div.booking_payed_inner div.hr_line_green{
            margin: 2em;
            margin-left: 0;
        }
            div.booking_payed_inner h3{
                font-size: 2em;
                font-weight: normal;
                font-family: var(--font-cursive);
            }
            div.booking_payed_inner p{
                margin-bottom: 1em;
            }

@media only screen and (max-width: 1120px) {
    div.header_right_res{
        display: block;
    }
    div.header_right{
        display: none;
    }
}


@media only screen and (max-width: 1100px) {
    div.accom_inner{
        flex-direction: column;
    }
    div.accom_images{
        max-width: 100%;
        width: 100%;
    }
    
}
@media only screen and (max-width: 1050px) {
    div.accomodations_inner, div.omgeving_inner{
        flex-direction: column;
    }
    div.about_inner{
        flex-direction: column;
    }
    div.about_inner_2{
        margin-top: 2em;
        flex-direction: column-reverse;
    }

    div.about_left:has(img) img{
        max-width: 100%;
    }
    div.about_right:has(img) img{
        max-width: 100%;
    }
    div.about, div.omgeving, div.accomodations h2 {
        text-align: center;
    }
    div.omgeving_left div.hr_line_green{
        margin-left: auto;
    }
    div.contact_inner{
        flex-direction: column;
    }

    div.footer_inner{
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        row-gap: 2em;
    }
        div.footer_inner > div{
            flex-wrap: wrap;
            row-gap: 2em;
        }
    div.accomodatie_card_action{
        justify-content: center;
    }
}
@media only screen and (max-width: 1000px) {
    div.boeken{
        padding: 2em 1em;
    }
}
@media only screen and (max-width: 930px) {
    div.boeken_inner{
        flex-direction: column-reverse;
    }
    div.boeken_info{
        max-width: 100%;
    }
    div.boeken_info img{
        height: 200px;
    }
}
@media only screen and (max-width: 820px) {
    div.hero{
        border-bottom-right-radius: 10em;
    }
    h1{
        font-size: 10vw;
    }
}

@media only screen and (max-width: 650px) {
    div.accom{
        padding: 2em 1em;
    }
    div.accom_main_info > h2{
        font-size: 11vw;
    }
    .fc-direction-ltr{
        height: 500px;
    }
    div.accom_book_container{
        padding: 2em 1em;
    }
}
@media only screen and (max-width: 600px) {
    div.form_item_double{
        flex-direction: column;
    }
    
    div.hero_inner{
        padding: 0 2em;
    }
    h1{
        font-size: 14vw;
    }

    div.contact{
        padding: 4em 1em;
    }

    div.footer{
        padding: 4em 2em;
    }
}