

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

:root{
    --primary-dark: #895777;
    --primary:  #fcf5f5;
    --secondary: #8f6f84;
    --secondary-dark: #c89797;
    --star-yellow: #FFD430;
    --white: #FFFFFF;
    --black: #18191B;
    --light-gray: #efefef;
    --off-white: #F3F3F3;
    --gray: #a7aabd;
    --brown: #bfa5a7;

    --font-primary: "Cormorant Garamond", serif;
    --font-normal: "Montserrat", sans-serif;
}


h1, h2, h3, h4{
    font-family: var(--font-primary);
    color: var(--black);
}
p, a, button, input, select, textarea, span, label, ul, li{
    font-family: var(--font-normal);
    color: var(--black);
    text-decoration: none;
}

p, li{
    font-size: 1.1em;
}

ul{
    margin-left: 1em;
}

h1{
    font-size: 3em;
}
h2{
    font-size: 2.5em;
}
h3{
    font-size: 2em;
}
h4{
    font-size: 1.5em;
}

.mt-8{
    margin-top: 8px;
}
.mt-16{
    margin-top: 16px;
}
.mt-32{
    margin-top: 32px;
}
.gap-8{
    gap: 8px;
}
.gap-16{
    gap: 16px;
}
.gap-32{
    gap: 32px;
}
hr.def{
    margin: 0 auto;
    width: 100px;
    background-color: var(--primary);
    color: var(--primary);
    border-color: var(--primary);
}

hr.def_light{
    margin: 0 auto;
    width: 100px;
    background-color: var(--secondary);
    color: var(--secondary);
    border-color: var(--secondary);
}

.fa-arrow-right{
    color: var(--primary);
    margin-left: 8px;
}

.flex{
    display: flex;
}

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


.flex-wrap{
    flex-wrap: wrap;
}

.def-padding{
    padding: 64px 16px
}

.w-100{
    width: 100%;
}

.inner-1280{
    max-width: 1280px;
    width: 100%;
}
.inner-1100{
    max-width: 1100px;
    width: 100%;
}
.inner-800{
    max-width: 800px;
    width: 100%;
}
.more_btn, .more_btn *{
    cursor: pointer;
    transition: all 100ms ease-in-out;
}
    .more_btn span{
        font-size: 1.1em;
    }
    .more_btn:hover i{
        margin-left: 12px;
    }
    div.double_btn{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
    }
.primary_btn{
    min-width: 150px;
    padding: 12px 18px;
    background-color: var(--secondary);
    color: var(--white);
    border: none;
    border: 2px solid var(--secondary);
    outline: none;
    cursor: pointer;
    font-size: 1.1em;
}
    .primary_btn:hover{
        opacity: 0.8;
    }
.primary_btn_order{
    width: 100%;
    padding: 10px 6px;
}
    .primary_btn_order i{
        margin-right: 10px;
    }
.secondary_btn{
    min-width: 150px;
    padding: 12px 18px;
    color: var(--white);
    border: none;
    border: 2px solid var(--white);
    outline: none;
    cursor: pointer;
    background: transparent;
    font-size: 1.1em;
}
    .secondary_btn:hover{
        opacity: 0.8;
    }
.secondary_btn_black{
    min-width: 150px;
    padding: 12px 16px;
    color: var(--black);
    border: none;
    border: 2px solid var(--black);
    outline: none;
    cursor: pointer;
    background: transparent;
    font-size: 1.1em;
}
    .secondary_btn_black:hover{
        opacity: 0.8;
    }
div.header_container{
    z-index: 9999;
    width: 100%;
}
div.header{
    position: sticky;
    background-color: var(--white);
}
div.header_inner{
    margin: 0 auto;
    padding: 12px 1.3em;
    max-width: 1300px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 2em;
    align-items: center;
}
    div.header_left{
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }
        div.header_left img{
            width: 100%;
            height: 90px;
            object-fit: contain;
        }
        div.search_bar_container{
            padding: .8em;
            max-width: 600px;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            border: 1px solid var(--gray);
            border-radius: 999px;
            gap: .5em;
        }
            div.search_bar_container i{
                opacity: .4;
            }
            div.search_bar_container input{
                width: 100%;
                font-size: 1em;
                font-weight: normal;
                border: none;
                outline: none;
            }
            div.search_bar_container input::placeholder{
                opacity: .4;
            }
    div.header_right{
        width: 100%;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 32px;
    }
        div.menu_item{
            font-size: 1.2em;
        }
        div.menu_item_btn i{
            font-size: 1.5em;
        }
            div.menu_item a{
                color: var(--black);
            }
            a.menu_active{
                border-bottom: 2px solid var(--primary) !important;
            }
        div.header_right_res{
            display: none;
            width: 100%;
            justify-content: flex-end;
            align-items: center;
        }
        div.header_right_res i{
            font-size: 2em;
        }
        div.shopping_cart_holder{
            position: relative;
        }
            div.shopping_cart_counter{
                position: absolute;
                top: -10px;
                right: -10px;
                width: 25px;
                height: 25px;
                display: flex;
                justify-content: center;
                align-items: center;
                background-color: var(--primary);
                color: var(--white);
                border-radius: 9999px;
                font-family: var(--font-normal);
            }
    div.cat_header{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--secondary);
    }
        div.cat_header_inner{
            margin: 0 auto;
            max-width: 1000px;
            width: 100%;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            gap: 2em;
            padding: 1em;
        }
            div.cat_header_item p{
                color: var(--white);
                font-weight: bold;
            }
        div.cat_header_inner_res{
            display: none;
            width: 100%;
            position: relative;
        }
        div.cat_header_inner_title p{
            width: 100%;
            text-align: left;
            color: var(--white);
            padding: 1em;
        }
            div.cat_header_inner_dropdown{
                display: none;
                position: absolute;
                background-color: var(--secondary-dark);
                width: 100%;
                bottom: 0;
                transform: translateY(100%);
                padding: 1em;
                z-index: 9999;
            }
                div.cat_header_inner_dropdown_inner{
                    display: flex;
                    flex-direction: column;
                    gap: 2em;
                }
#scroll_header{
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    display: none;
    background-color: var(--white);
    z-index: 9999;
    box-shadow: 0px 6px 16px rgba(0,0,0,0.2);
}
    #scroll_header div.menu_item a{
        color: var(--black);
    }
    #scroll_header div.header_left img{
        height: 100px;
    }
    #scroll_header div.header_inner{
        padding: 16px;
    }
    #scroll_header div.header_right_res i{
        color: var(--black);
    }
#resMenu{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--primary);
    z-index: 99999;
}
    div.header_close {
        position: absolute;
        top: 16px;
        left: 16px;
        cursor: pointer;
    }
        div.header_close i{
            position: relative;
            z-index: 999999;
            font-size: 2em;
            color: var(--black);
        }
    #resMenu div.header{
        flex-direction: column;
        height: 100%;
        justify-content: center;
        align-items: center;
        gap: 32px;
    }
div.hero{
    position: relative;
    background: var(--primary);
    height: 80vh;
    overflow:hidden;
}
    div.hero_waves{
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }
    div.hero_inner{
        margin: 0 auto;
        max-width: 1300px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2em;
        z-index: 999;
    }
        div.hero_inner div.hero_left{
            width: 100%;
        }
        div.hero_right{
            width: 100%;
            display: flex;
            justify-content: flex-end;
        }   
            .hero_right_img {
                width: 100%;
                max-width: 800px;
                margin: 0 auto;
            }

            .hero_right_img svg {
                width: 100%; 
                height: auto; 
                display: block; 
            }
    div.hero h1{
        line-height: 1em;
        font-size: 4em;
    }
    div.hero_left p{
        color: #555;
    }
    div.hero button{
        margin-top: 2.5em;
    }
    div.hero_content_holder{
        max-width: 700px;
        width: 100%;
    }
    div.chevron{
        position: absolute;
        bottom: 64px;
        left: 50%;
        transform: translateX(-50%);
    }
        div.chevron i{
            font-size: 2em;
            color: var(--white);
        }
    div.hero .double_btn{
        justify-content: flex-start;
        z-index: 1;
    }
    div.hbi_1{
        margin-right: -60px;
    }

div.contact{
    background-color: white;
    background-repeat: repeat;
}
    div.contact_inner{
        max-width: 1000px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 32px;
    }
        div.contact_inner div.contact_left *{
            color: black;
        }
        div.contact_left{
            max-width: 650px;
            text-align: center;
        }
            div.contact_left_top{
                padding-bottom: 16px;
            }
            div.contact_left_top h2{
                margin-bottom: 16px;
            }
            div.contact_left_body{
                margin-top: 16px;
                display: flex;
                flex-direction: column;
                gap: 16px;
            }
                div.contact_item a, div.contact_item {
                    display: flex;
                    gap: 8px;
                    font-size: 1.1em;
                }
                div.contact_item i{
                    width: 32px;
                    text-align: center;
                }
        div.contact_right{
            width: 100%;
            max-width: 800px;
        }
            div.contact_right form{
                width: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                gap: 16px;
                padding: 16px;
            }
div.footer{
    background-color: var(--secondary);
}
    div.footer *{
        color: var(--white);
    }
    div.footer h3{
        font-size: 2em;
    }
    div.footer_inner{
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 0 16px;
        gap: 32px;
    }
    div.footer_item{
        display: flex;
        flex-direction: column;
    }
        div.footer_item hr{
            margin: 16px 0;
        }
    div.footer_item:has(img){
        max-width: 400px;
        width: 100%;
        align-items: center;
    }
        div.footer_item img{
            width: 100%;
            object-fit: contain;
        }
        div.footer_item_body{
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
            div.footer_contact_item{
                display: flex;
                gap: 8px;
            }
                div.footer_contact_item i{
                    width: 32px;
                    text-align: center;
                }
div.bottom{
    padding: 8px 32px;
    background-color: var(--secondary);
}
    div.bottom_inner{
        justify-content: space-between;
    }
    div.bottom_inner *{
        color: var(--white);
    }

.slick-slide {
    margin: 0 4px;  
}
.slick-list {
    margin: 0 -4px;
}
.slick-next:before, .slick-prev:before{
    color: var(--primary) !important;
}
.slick-next{
    right: 0 !important;
}
.slick-prev{
    left: 0 !important;
}

    div.about_left{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
        div.about_left_img_container{
            max-width: 600px;
            width: 100%;
            border-radius: 4px;
        }
            div.about_left_img_container img{
                height: 500px;
                width: 100%;
                object-fit: cover;
                border-radius: 4px;
            }
    div.about_right h2{
        margin-bottom: 16px;
    }
div.what_is{
    background-color: var(--secondary);
}
    div.what_is h2, div.what_is p{
        color: white !important;
    }
    div.what_is h2{
        margin-bottom: 16px;
    }
    div.what_is_left button{
        margin-top: 32px;
    }
        div.what_is_img_container{
            max-width: 600px;
            width: 100%;
            border-radius: 4px;
        }
            div.what_is_img_container img{
                height: 500px;
                width: 100%;
                object-fit: cover;
                border-radius: 4px;
            }
        

.form_group_double {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

div.form_group {
    margin-bottom: 15px;
}

.form_item_double {
    width: 100%;
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}
.form_item {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}
.form_item_btn{
    align-self: flex-end;
}

.form_item_small {
    flex: 0 0 80px; 
}

.filter_input { 
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 5px;
    font-size: 16px;
}
.form_item input, .form_item select{
    outline: none;
    width: 100%;
    padding: 6px 4px;
    border: 1px solid #555;

}
label {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 5px;
    color: #555;
}

.booking-page {
    padding: 60px 5%;
}

.booking-step {
    display: none;
    padding-top: 30px;
    border-top: 1px solid #eee;
    margin-top: 30px;
}

.booking-step.active {
    display: block;
}

/* Stap 1: Service Cards */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.service-card {
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.service-card h4 {
    color: #d89e9f; /* Primaire kleur van je spa */
    margin-bottom: 10px;
}

.price-options label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.quantity-control button {
    background-color: #d89e9f;
    color: white;
    border: none;
    padding: 5px 12px;
    border-radius: 4px;
    cursor: pointer;
}

.quantity-control button:disabled {
    background-color: #ddd;
    cursor: not-allowed;
}

.summary {
    background-color: #f9f4f5;
    padding: 20px;
    border-radius: 8px;
    text-align: right;
}

.primary-btn {
    background-color: #d89e9f;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
}

.primary-btn:disabled {
    background-color: #ccc;
}

/* Stap 2: Kalender & Tijdsloten */
#booking-calendar {
    padding: 10px;
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 20px;
}

.time-slot-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 0;
}

.time-slot-grid button {
    background-color: #fff;
    color: #333;
    border: 1px solid #d89e9f;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.time-slot-grid button:hover,
.time-slot-grid button.selected {
    background-color: #d89e9f;
    color: white;
}

/* Stap 3: Formulier */
#booking-form input, 
#booking-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

@media only screen and (max-width: 1100px) {
    div.about_inner {
        flex-direction: column;
    }
    div.what_is_inner {
        flex-direction: column-reverse;
    }
}
@media only screen and (max-width: 1040px) {
    
}
@media only screen and (max-width: 1000px) {
   
}
@media only screen and (max-width: 1600px) {
   
}
@media only screen and (max-width: 960px) {
    
}
@media only screen and (max-width: 940px) {
    div.header_right{
        display: none;
    }
    div.header_right_res{
        display: flex;
    }
}
@media only screen and (max-width: 900px) {
    div.footer_inner{
        justify-content: space-evenly;
        flex-wrap: wrap;
    }
}
@media only screen and (max-width: 875px) {
    div.contact{
        background-size: 120%;
    }
}
@media only screen and (max-width: 800px) {
    div.contact_inner{
        flex-direction: column;
    }
    div.contact_left{
        max-width: 100%;
    }
}
@media only screen and (max-width: 750px) {
    .form_group_double {
        flex-direction: column;
        gap: 0;
    }
}
@media only screen and (max-width: 700px) {
    div.hero h1{
        font-size: 10vw;
    }
}
@media only screen and (max-width: 650px) {
    div.hero{
        height: unset;
        padding: 16px !important;
    }
    div.hero_inner{
        flex-direction: column-reverse;
        gap: unset;
    }
    div.hero_right_img svg{
        height: 230px;
    }
    div.hero_right, div.hero_left{
        justify-content: center;
        text-align: center;
    }
}
@media only screen and (max-width: 600px) {
    div.contact{
        background-size: 175%;
    }
}
@media only screen and (max-width: 581px) {
    div.footer_inner{
        justify-content: start;
    }
}
@media only screen and (max-width: 550px) {
    div.hero h1{
        font-size: 13vw;
    }
    h2{
        font-size: 10vw;
    }
    h3{
        font-size: 8vw;
    }
}
@media only screen and (max-width: 500px) {
    div.form_item_double{
        flex-direction: column;
    }
}
@media only screen and (max-width: 400px) {

}