.navbar-nav .nav-link{
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 30px;
    transition: background 0.2s;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    -webkit-transition: background 0.2s;
    -moz-transition: background 0.2s;
    -ms-transition: background 0.2s;
    -o-transition: background 0.2s;
}

.navbar-nav .nav-link:hover{
    background-color: #d4b48c;
   
}

/* Banner Full Width */
.banner-full{
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url("img/banner.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 70vh;
    min-height: 400px;
}

.banner-content{
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
}

/* Food Card */

.food-card{
    height: 200px;
    object-fit: cover;
}

/* Custom Food List */
.custom-food-list{
    background-color: #fdf8f2;
    list-style: none;
    padding: 1.2rem 1.8rem;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border: 1px solid #e6d5c3;
    max-width: 500px;
}

.custom-food-list li{
    padding: 0.6rem 0.8rem;
    margin: 0.3rem 0;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    border: 1px solid transparent;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    font-weight: 500;
}

.custom-food-list li:hover{
    background-color: #d4b48c;
    border: 1px solid #b28b5e;
    color: white;
    cursor: pointer;
}

/* Gallery Images */
.gallery-img{
    width: 100%;
    height: 140px;
    object-fit: cover;
    transition: 0.2s;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
}

.gallery-img:hover{
    transform: scale(1.05);
    cursor: pointer;
}

/* staff  img*/
.staff-img{
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 3px solid #e6d5c3;
}

/* FAQ Accordion */

.faq-container{
    max-width: 800px;
    margin: 0 auto;
    background: #fffaf2;
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,05);
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
}

.faq-item{
    border-bottom: 1px solid #e6d5c3;
    padding: 1rem 0;
}

.faq-question{
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 1.2rem 0.5rem;
    color: #333;
    transition: 0.1s;
    -webkit-transition: 0.1s;
    -moz-transition: 0.1s;
    -ms-transition: 0.1s;
    -o-transition: 0.1s;
}

.faq-question i{
    transition: transform 0.3s;
    -webkit-transition: transform 0.3s;
    -moz-transition: transform 0.3s;
    -ms-transition: transform 0.3s;
    -o-transition: transform 0.3s;
}

.faq-question:active i{
    transform: rotate(180deg);
}

.faq-answer{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    -webkit-transition: max-height 0.3s ease-out;
    -moz-transition: max-height 0.3s ease-out;
    -ms-transition: max-height 0.3s ease-out;
    -o-transition: max-height 0.3s ease-out;
    background-color: #fdf8f2;
    border-radius: 12px;
    padding: 0 1.2rem;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.faq-answer.show{
    max-height: 200px; /* Adjust as needed */
    padding: 0.8rem 1.2rem;
}

.faq-answer p{
    margin: 0;
    color: #555;
}

/* responsive */
@media (max-width: 768px) { .banner-full { height: 50vh; } }