:root{
    --font-roboto: "Roboto", sans-serif;
    --font-playfair: "Playfair Display", serif;
    --color-primary-blue: #0b104d;
    --color-dark-black: #1a1a1a;
    --color-body-text: #636680;
    --color-icon-gold: #f7981f;
}

html, body{
    height: 100%;
    background: #fff;
    color: #1a1a1a;
    font-size: 14px;
    font-family: var(--font-playfair);
    margin: auto;
}

.hero-fluid{
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-bg{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-container{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    padding: 40px 20px;
}

.hero-logo-container{
    width: 100%;
    max-width: 400px;
}

.hero-logo-container img{
    width: 100%;
}

.menu-fluid{
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 9;
}

.menu-container{
    height: 50px;
    z-index: 9;
    background: #fefef3;
    border-radius: 50px;
    box-shadow: 0 0 20px 2px rgb(89 87 23 / 20%);
    display: none;
}

.menu-inner{
    display: flex;
    height: 100%;
    align-items: center;
    padding: 0px 8px 0 8px;
    gap: 30px;
}

.menu-logo-wrap{
    height: 42px;
}

.menu-logo-wrap img{
    height: 100%;
}

.menu-item-wrap{
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-item{
    padding: 0 20px;
    cursor: pointer;
    text-decoration: none;
    font-size: 15px;
    height: 40px;
    display: flex;
    align-items: center;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.menu-item:hover, .menu-item-active{
    background: #a75229;
    color: #f5f5ef;
}

.container-fluid{
    height: 100%;
    overflow: hidden;
    position: relative;
}

#intro-container{
    padding: 0;
}

.container-bg{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.container-bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container-over{
    position: relative;
    width: 100%;
    height: 100%;
    background: rgb(37 21 15 / 86%);
}

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

.main-intro-wrap{
    width: 100%;
    max-width: 800px;
}

.main-intro-title, .main-intro-p{
    color: #fff;
    text-align: center;
    font-family: var(--font-playfair);
}

.main-intro-title{
    font-size: 46px;
    font-weight: 400;
    text-decoration: underline;
    margin-bottom: 30px;
}

.main-intro-p{
    font-size: 16px;
    line-height: 28px;
}

#deli-container{
    background: #efebe5;
    display: flex;
    align-items: center;
}

.deli-item-container{
    width: 100%;
    border: 3px solid #000000;
    padding: 5px;
}

.deli-item-photo{
    width: 100%;
    height: 200px;
}

.deli-item-photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deli-item-title{
    font-size: 20px;
    text-align: center;
    margin-top: 5px;
    padding: 5px;
    font-weight: 500;
}

.container-title{
    font-size: 46px;
    margin-bottom: 50px;
    font-weight: 400;
    text-align: center;
}

.container-title span{
    text-decoration: underline;
}

.container-button{
    margin: 50px auto;
    width: max-content;
    height: 42px;
    background: #fff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 10px 0 20px;
    font-size: 16px;
    cursor: pointer;
    color: #1a1a1a;
}

.container-button i{
    font-size: 25px;
}

#reservation-container{
    padding: 0;
}

.reservation-logo-container{
    max-width: 300px;
    margin: auto;
    margin-bottom: 30px;
}

.whatsapp-button{
    font-family: var(--font-roboto);
    background: #25D366;
    color: #fff;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    margin: 30px auto 0;
    padding: 0 15px;
    font-size: 16px;
    gap: 10px;
    border-radius: 40px;
    line-height: 1;
}

.whatsapp-button i{
    font-size: 22px;
}

.whatsapp-button:hover{
    text-decoration: none;
    color: #fff;
}

#blog-container{
    background: #963310;
    color: #fff;
    display: flex;
    align-items: center;
}

.blog-item-container{
    cursor: pointer;
}

.blog-item-photo{
    width: 100%;
    overflow: hidden;
    height: 250px;
    border: 3px solid #fff;
    overflow: hidden;
}

.blog-item-photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.2s ease;
}

.blog-item-title{
    padding: 10px 0;
    font-size: 20px;
    text-align: center;
    font-weight: 500;
}

.blog-item-container:hover .blog-item-photo img{
    width: 105%;
    height: 105%;
}

.blog-item-container:hover .blog-item-title{
    text-decoration: underline;
}

#contact-fluid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
}

.contact-photo-col img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-col{
    box-sizing: border-box;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-map-container{
    height: 300px;
    width: 100%;
    max-width: 500px;
    border: 3px solid #1a1a1a;
    padding: 10px;
    margin-bottom: 20px;
}

.contact-map-container iframe{
    width: 100%;
    height: 100%;
}

.contact-p{
    font-size: 16px;
    line-height: 28px;
    text-align: center;
}

.contact-p span{
    font-weight: 500;
}

.menu-burger-btn{
    display: none;
}

.mobile-menu-fluid{
    display: none;
}



@media screen and (max-width: 768px){
    
    .container-fluid{
        height: auto;
        padding-top: 80px;
        padding-bottom: 80px;
    }
    
    .main-intro-wrap{
        padding: 15px;
        padding-top: 80px;
        padding-bottom: 80px;
        box-sizing: border-box;
    }
    
    .main-intro-title, .container-title{
        font-size: 32px;
    }
    
    .main-intro-p{
        font-size: 14px;
        font-weight: 24px;
    }
    
    .row{
        gap: 30px
    }
    
    #contact-fluid{
        grid-template-columns: 1fr;
    }
    
    .menu-item-wrap{
        display: none;
    }
    
    .menu-burger-btn{
        display: flex;
        width: 50px;
        height: 40px;
        align-items: center;
        justify-content: center;
        font-size: 24px;
    }
    
    .menu-inner{
        justify-content: space-between;
    }
    
    .menu-container{
        width: calc(100% - 40px);
    }
    
    .mobile-menu-fluid{
        position: fixed;
        z-index: 8;
        background: rgba(0, 0, 0, 0.3);
        width: 100%;
        height: 100%;
    }
    
    .mobile-menu-container{
        padding: 20px;
        padding-top: 80px;
    }
    
    .mobile-menu-inner{
        background: #fefef3;
        border-radius: 25px;
        padding: 15px;
        display: none;
    }
    
}