

/*** Navbar Start ***/
.navbar .navbar-nav .nav-link {
    
    font-size: 16px;
    transition: .5s;
}

.navbar {
    height: 100px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.fixed-top.bg-white .navbar .navbar-nav .nav-link:hover,
.fixed-top.bg-white .navbar .navbar-nav .nav-link.active {
    color: #d83f11;
}



@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-secondary);
    color: var(--bs-primary);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    border-radius: 10px !important;
    transition: .5s;
    opacity: 1;
}

#searchModal .modal-content {
    background: rgba(255, 255, 255, .8);
}
/*** Navbar End ***/

/*** Hero Header ***/
.hero-header {
    /**background: linear-gradient(rgba(248, 223, 173, 0.1), rgba(248, 223, 173, 0.1)), url();**/
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.carousel-item {
    position: relative;
}

.carousel-item a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25px;
    background: linear-gradient(rgba(255, 181, 36, 0.7), rgba(255, 181, 36, 0.7));
}

.carousel-control-next,
.carousel-control-prev {
    width: 48px;
    height: 48px;
    border-radius: 48px;
    border: 1px solid var(--bs-white);
    background: var(--bs-primary);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-next {
    margin-right: 20px;
}

.carousel-control-prev {
    margin-left: 20px;
}

.page-header {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(./img/bg_food.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (min-width: 992px) {
    .hero-header,
    .page-header {
        margin-top: 152px !important;
    }
}

@media (max-width: 992px) {
    .hero-header,
    .page-header {
        margin-top: 97px !important;
    }
    
}
/*** Hero Header end ***/


.buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.order-now, .book-table {
    background-color: #d83f11;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.book-table {
    background-color: #ffffff;
    color: #d83f11;
    border: 1px solid #d83f11;
}

.order-now:hover {
    background-color: black;
    color: #d83f11;
    border-color: black;
}
.book-table:hover{
    background-color:whitesmoke;
    color: black;
}

/* General Styling for Card Container */
.card2 {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto; /* Enables horizontal scrolling */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    
}

.card2::-webkit-scrollbar {
    width: 1px; /* Scrollbar width */
}

.card2::-webkit-scrollbar-thumb {
    background-color: #d83f11; /* Scrollbar color */
    border-radius: 10px; /* Scrollbar thumb round corners */
}

/* Card Styling */
.card {
    flex: 0 0 auto; /* Prevents cards from stretching */
    border-radius: 10px; /* Rounded corners */
    overflow: hidden; /* Ensure images fit inside the card */
    margin: 10px; /* Space between cards */
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Default Card Size for Large Devices */
.card img {
    width: 300px; /* Default width for large devices */
    height: 200px; /* Default height for large devices */
    object-fit: cover; /* Ensures the image covers the card without distortion */
}
.card:hover{
    transform: scale(1.05); /* Slightly enlarge the card */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow effect */

}
/* Responsive Styling for Medium Devices (Tablets) */
@media (max-width: 992px) {
    .card img {
        width: 250px; /* Adjust width for medium devices */
        height: 190px; /* Adjust height for medium devices */
    }

    h1 {
        font-size: 1.8rem; /* Adjust heading size for medium devices */
    }
}

/* Responsive Styling for Small Devices (Mobile Phones) */
@media (max-width: 576px) {
    .card img {
        width: 190px; /* Smaller width for mobile devices */
        height: 150px; /* Smaller height for mobile devices */
    }

    h1 {
        font-size: 1.5rem; /* Adjust heading size for small devices */
    }

    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .card {
        margin: 5px; /* Less margin between cards on small screens */
    }
}


/*** featurs Start ***/
.featurs .featurs-item .featurs-icon {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 10px;
}

.featurs .featurs-item .featurs-icon::after {
    content: "";
    width: 35px;
    height: 35px;
    background: var(--bs-secondary);
    position: absolute;
    bottom: -10px;
    transform: translate(-50%);
    transform: rotate(45deg);
    background: var(--bs-secondary);
    
    
}
/*** featurs End ***/

.custom-container {
    background-color: #FFF7EE; 
    padding: 20px;
    border-radius: 2%;
}
.product-item{
    background-color: #FFF7EE; 
    border-radius: 1px;
    border: solid;
    border-color: rgb(121, 117, 117);
    

}
.product-item:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.product-img img {
    border-radius: 10px;
    transition: transform 0.3s;
}

.product-img img:hover {
    transform: scale(1.1);
}
/**contact us**/
/* From Uiverse.io by Yaya12085 */
.container-fluid form{
    display: flex;
    justify-content: center;
    align-items: center;/* Ensures the container takes the full height of the viewport */
    background-color: #f8f9fa; /* Optional: background color for contrast */
} 
.form {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    width: 300px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 30px 30px -30px rgba(27, 26, 26, 0.315);
    margin: auto; /* Center the form horizontally */
}

.form .title {
    color: #d83f11;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; /* Center the title text */
}

.form input {
    outline: 0;
    border: 1px solid rgb(219, 213, 213);
    padding: 8px 14px;
    border-radius: 8px;
    width: 100%;
    height: 50px;
}

.form textarea {
    border-radius: 8px;
    height: 100px;
    width: 100%;
    resize: none;
    outline: 0;
    padding: 8px 14px;
    border: 1px solid rgb(219, 213, 213);
}

.form button {
    align-self: flex-end;
    padding: 8px;
    outline: 0;
    border: 0;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    background-color: #d83f11;
    color: #fff;
    cursor: pointer;
}

