:root{
    --ff-heading: "Playfair Display", serif;
    /* --ff-body: "Source Code Pro", monospace; */
    --ff-body: "Nunito Sans", sans-serif;
    --fs-400: 1rem;
    --fs-500: 1.25rem;
    --fs-600: 1.50rem;

    --col-text: #000;
    --col-hover: crimson;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    font-family: var(--ff-body);
    font-size: var(--fs-500);
}

/*Base elements*/
p{
    margin-bottom: 20px;
    line-height: 1.8;

}

h2{
    font-family: var(--ff-heading);
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: -.2rem;
    line-height: .85;
    font-style: normal;
    font-optical-sizing: auto;
    color: var(--col-text)
}

h3{
    font-weight: 700;
}

a, span{
    text-decoration: none;
    color: var(--col-text);
    margin-right: 20px;
}

a h2{
    color: var(--col-text);
}

a h2:hover, a:hover{
    color: var(--col-hover);
}

i{
    vertical-align: middle;
    font-weight: 700;
    margin-right: 5px;
    margin-top: -2px;
    font-size: var(--fs-600);
}

.bold{
    font-weight: 700;
    margin:  0;
}


.second_line{
    font-size: .85rem;
    line-height: .85rem;
}

.shop article, .product{
    line-height: 1;
}

.product form, .product button{
    text-decoration: none;
}

/* Structual */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Section */
.header{
    max-height: 200px;
    overflow: hidden;
    background-color: #fff;
    margin-bottom: 50px;
}

.header img{
    height: 200px;
    width: auto;
    object-fit: contain;
    margin-left: -5px;
}


footer{
    margin-bottom: 100px;
    margin-top: 50px;
}

footer .container{
    border-top: 1px solid #000;
    padding: 40px 20px;
}


.hero .splide__track{
    height: 600px;
}

.hero img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}


.container > section{
    margin-bottom: 70px;
}

.shop > .product_container{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-bottom: 5px;
    flex-wrap: wrap;
    gap: calc(7% / 2);
}

.shop .product_container article{
    width: 31%;
    margin-bottom: 10px;
}

.shop div article .frame {
    height: 200px;
    overflow: hidden;
}

.shop div article img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}


.shop article:hover *{
    color: var(--col-hover);
}



.product img{
    max-width: 100%;
    margin-bottom: 30px;
}

.product form{
    margin-top: 50px;
}

.product label{
    width: 100px;
    display: inline-block;
}

.product input{
    padding: 10px;
    border-top: none;
    border-right: none;
    border-left: none;
    border-radius: 0;
    border-bottom: 1px solid #000;
    width: 300px;
    margin-top: 30px;
}

.product input:focus{
    outline: none;
}

.product button{
    padding: 10px;
    margin-top: 30px;
    width: 410px;
}


.reservationform{
    width: 100%;
    background-color: #ddd;
    padding: 60px;
    margin: 40px 0px;
    text-align: center;
}

.reservationform h2{
    margin-bottom: 10px;
}

.reservationform form{
    color: #000;
    width: 100%;
    gap: 1rem;
}

.reservationform form div{
    display: flex;
    width: 100%;
    gap: 1rem;
    margin: 20px 0px;
    margin-bottom: 0;
}

.reservationform form div > *{
    flex: 0 0 40%;
    padding: 15px 15px;
    border: none;
    font-family: var(--ff-body);
}
.reservationform form div > *:focus{
    outline: none;
}

.reservationform form div > button{
    flex: 0 0 20%;
    background-color: #333;
    color: #fff;
}

.reservationform form div > button:hover{
    background-color: var(--col-hover);
}

.reservationform form {
    text-align: left;
    outline: none;
}


.reservationform form label {
    font-size: .85rem;
    color: #333;
}

.masonry { 
    column-count: 3; 
    column-gap: 1rem; 
} 

.masonry .item { 
    break-inside: avoid; 
    margin-bottom: 2rem; 
    line-height: 1.5rem;
}

.item:hover *{
    color: var(--col-hover);
}

.block{
    display: block;
}

.masonry img { 
    width: 100%; 
    display: block; 
}

.product-link{
    display: block;
}

.product-link .title{
    font-weight: 700;
}

.product-link span{
    white-space: nowrap;
    font-weight: 500;
    display: block;
    font-size: 1rem;
}

.product-link .price{
    font-size: 1rem !important;
}

.single h3{
    font-weight: 500;
    font-style: italic;

}

.single h3 span{
    font-weight: 700;
    margin: 0;
    font-style: normal;
}

.single{
    line-height: 1.3rem;
    font-size: 1rem;
}



/* Responsive Design */
@media (max-width: 660px) {



    .reservationform form div {
        flex-direction: column;
    }
    .reservationform form div > * {
        flex: 1 1 auto;
    }

}



@media (max-width: 768px) {

    .shop > .product_container{
        gap: 4%;
    }

    .shop .product_container article{
        width: 48%;
    }


    .hero .splide__track{
        height: 400px;
    }

    .masonry { 
        column-count: 2; 
    } 



}

@media (max-width: 480px) {

    body{
        font-size: var(--fs-400);
    }

    .header img{
        height: 150px;
    }

    .product label{
        width: 100px;
        display: block;
        margin-top: 30px;
    }

    .product input{
        width: 100%;
        margin-top: 0px;
    }

    .product button{
        width: 100%;
    }

    .shop > .product_container{
        gap: 0%;
    }

    .shop .product_container article{
        width: 100%;
    }

    .hero .splide__track{
        height: 250px;
    }

    .masonry { 
        column-count: 1; 
    } 


}