/* General Styles */
body {
    font-family: Arial, sans-serif;
}

/* Header Section */
.header-section {
    text-align: center;
    padding: 20px 0;
}

.header-section h1 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #b01f24;
}

.header-section img {
    height: 50px;
}

/* Menu Section */
.menu-section {
    height: 65px;
    background-color: #fff;
    padding: 10px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.menu {
    padding: 0;
    margin: 0;
}

.menu-item {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    color: #5d2e2a;
    position: relative;
}

.menu-item:hover {
    text-decoration: none;
    color: #b01f24;
    border-bottom: 3px solid #b01f24;
}

/* Selected Menu Item */
.menu-item.active {
    color: #b01f24;
}

/* Sticky Menu */
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Search Section Styles */


.search-section {
    background-color: #b01f24;
    padding: 40px 0;
    text-align: center;
    position: relative;
    
}

.search-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 600px;
}

.search-input {
    border-radius: 50px;
    padding: 12px 20px;
    border: none;
    font-size: 18px;
    color: #000000;
    width:50px ;
    background-color: #ffffff;
}

.search-icon {
    background-color: #b01f241a;
    color: white;
    border-radius: 50px 0 0 50px;
    padding-left: 15px;
}

/* .search-btn {
    
    background-color: #ffffff;
    border-radius:  50px ;
    font-size: 16px;
} */

.input-group {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    background-color: #b01f24;
}

/* Suggestions Container */
.suggestions {
    background-color: #b01f24;
    color: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 1000;
    padding: 10px 20px;
    display: none; /* Initially hidden */
    text-align: left;
}

.suggestions p {
    margin: 0;
    padding: 5px 0;
    cursor: pointer;
    font-size: 16px;
}

.suggestions p:hover {
    background-color: #b01f24;
    font-weight: bold;
}

/* Make sure suggestions show up when there are results */
.show-suggestions {
    display: block;
}

/* Recipe Card Section */
.recipe-card .card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.recipe-card .card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.15);
}

.recipe-card .card-title {
    font-weight: bold;
    color: #b01f24;
}

.recipe-card .fixed-image {
    height: 200px;
    object-fit: cover;
    width: 100%;
    border-bottom: 1px solid #ddd;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .search-section input {
        width: 80%;
    }

    .menu-item {
        display: block;
        text-align: center;
        padding: 10px;
    }
}

