body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7e1; /* White background color */
}
.all{
    background-color:  #f7f7e1;
}
header {
    width: 100%; /* Full width */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: fixed;
    color: #333; /* Adjusted text color for better contrast */
    box-sizing: border-box; /* Include padding in width calculation */

}
.back{
    background-color: #f7f7e1;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.logo img {
    width: 100px;
    border-radius: 30%;
}

nav {
    display: flex;
    align-items: center;
}

#nav-list {
    list-style-type: none;
    display: flex;
    margin: 0;
    padding: 0;
    
}

#nav-list li {
    margin: 0 15px;
}

#nav-list li a {
    color: #333; /* Adjusted link color for better contrast */
    text-decoration: none;
    padding: 5px 10px;
    font-weight: bold;
    line-height: 1px;
    display: inline-block;
    transition: 1s;
}

#nav-list li a:hover {
    /* background-color: rgb(116, 239, 116); */
    color: rgb(13, 178, 13);
    border-radius: 5px;
    text-decoration:underline;
    font-weight: bold;
    padding: bottom 0.2em; ;
    transition: .2s;
}

#hamburger-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.search-bar {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 15px;
    background-color: #f7f7e1;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
}

.search-bar input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.search-bar input:focus {
    border-color: #4CAF50;
    outline: none;
}

.search-results {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    max-height: 400px;
    overflow-y: auto;
    margin-top: 10px;
}

.search-result-item {
    display: flex;
    padding: 15px;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s;
}

.search-result-item:hover {
    background-color: #f5f5f5;
}

.search-result-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
}

.search-result-content {
    flex: 1;
}

.search-result-content h3 {
    margin: 0 0 5px 0;
    color: #333;
}

.search-result-content p {
    margin: 0 0 10px 0;
    color: #666;
    font-size: 14px;
}

.view-details {
    display: inline-block;
    padding: 5px 15px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background-color 0.3s;
}

.view-details:hover {
    background-color: #45a049;
}

.no-results, .error {
    padding: 20px;
    text-align: center;
    color: #666;
}

.error {
    color: #ff0000;
}

@media (max-width: 768px) {
    #nav-list {
        display: none;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    header{
        width: 100%;
    }
    #nav-list li {
        margin: 10px 0;
    }

    #hamburger-menu {
        display: block;
    }

    .search-bar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 60px;
        padding: 10px 50px 10px 10px;
        background-color: #f7f7e1;
        display: flex;
        align-items: center;
        z-index: 1001;
    }

    .search-bar input {
        width: 100%;
        height: 40px;
        padding: 8px 15px;
        border: 2px solid #ddd;
        border-radius: 8px;
        font-size: 16px;
    }

    .search-close {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 24px;
        color: #333;
        cursor: pointer;
        padding: 5px;
        z-index: 1002;
    }

    .search-results {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        max-height: calc(100vh - 60px);
        background-color: white;
        overflow-y: auto;
        margin-top: 0;
        padding: 10px;
        z-index: 1000;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .search-result-item {
        background: #f7f7e1;
        margin-bottom: 10px;
        border-radius: 8px;
        padding: 15px;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .search-result-item img {
        width: 60px;
        height: 60px;
        object-fit: cover;
        border-radius: 8px;
    }

    .search-result-content {
        flex: 1;
    }

    .search-result-content h3 {
        margin: 0 0 5px 0;
        font-size: 16px;
    }

    .search-result-content p {
        margin: 0 0 5px 0;
        font-size: 14px;
        color: #666;
    }

    .search-result-content .price {
        color: #4CAF50;
        font-weight: bold;
    }

    .view-details {
        display: inline-block;
        padding: 5px 15px;
        background-color: #4CAF50;
        color: white;
        text-decoration: none;
        border-radius: 4px;
        margin-top: 5px;
        font-size: 14px;
    }

    .no-results {
        text-align: center;
        padding: 20px;
        color: #666;
    }
}
/* hero section start */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
}

header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #fff;
    color: #333;
    box-sizing: border-box;
}

.hero {
    position: relative;
    width: 100%;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: url('../css/image/tryback') no-repeat center center/cover;
    margin: 0;
    padding: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
}

.hero-content {
    position: relative;
    color: white;
    text-align: center;
    padding: 20px;
    z-index: 2; /* Ensure content stays above overlay */
}

.hero-content h1 {
    font-size: 3rem;
    margin: 0;
}

.hero-content p {
    font-size: 1.5rem;
    margin: 10px 0 0 0;
}

.hero-content .hotel-name {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Mobile styles */
@media (max-width: 768px) {
    .hero {
        height: 60vh; /* Reduced height on mobile */
        width: 100%;
    }

    .hero-overlay {
        background: rgba(0, 0, 0, 0.6); /* Keep dark overlay, slightly darker for better readability */
    }

    .hero-content {
        width: 100%;
        padding: 15px;
    }

    .hero-content .hotel-name {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin: 5px 0;
    }
}
/* about the dololo */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color:#eee;
}

header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #eee;
    color: #333;
    box-sizing: border-box;
    position: sticky; /* Make the header sticky */
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

section {
    padding: 40px 20px;
    margin: 20px 0;
}

#why-choose-us {
    text-align: center;
}

#why-choose-us h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    position: relative;
}

#why-choose-us h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background-color: #ffa500;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    border-radius: 2px;
}

#why-choose-us p {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.image-container img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-container img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.text-container {
    text-align: left;
}

.text-container h3 {
    font-size: 2rem;
    color: black;
    margin-bottom: 10px;
    position: relative;
}

.text-container h3::after {
    content: '';
    width: 40px;
    height: 4px;
    background-color: #ffa500;
    position: absolute;
    left: 0;
    bottom: -10px;
    border-radius: 2px;
}

.text-container p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}
/* location */
.half-underline{
        background-color:  #f7f7e1;;
        font-size: 50px;
        color:black;
        max-width: 800px;
        margin: 0 auto 40px;
        margin-top: 60px;
}
.half-underline {
    display: inline-block;
    position: relative;
}
.half-underline::after {
    content: '';
    position: absolute;
    text-decoration: 4px;
    left: 0;
    bottom: 0;
    width: 50%; /* Adjust this value to change the length of the underline */
    height: 6px; /* Adjust this value to change the thickness of the underline */
    background-color:orange; /* Adjust this value to change the color of the underline */
}


@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr;
    }

    .feature {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .text-container {
        text-align: center;
    }

    .text-container h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}
/* dishes section */
.dishes-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
    
}
.dis{
    text-align: center;
    font-size: 50px;
    color:black
   
}
.dishes {
    display: inline-block;
    position: relative;
    text-align: center;
    margin-top: 1px;
    margin-bottom: 0px;
}
.dishes::after {
    content: '';
    position: absolute;
    text-decoration: 4px;
    left: 0;
    bottom: 0;
    width: 50%; /* Adjust this value to change the length of the underline */
    height: 6px; /* Adjust this value to change the thickness of the underline */
    background-color:orange; /* Adjust this value to change the color of the underline */
}
/* .dishes:hover{
    text-decoration: underline;
     */


.dish {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    
}
.dish :hover{
    transform: scale(1.05);
}

.dish img {
    max-width: 100%;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.order-button {
    background-color: rgb(13, 178, 13);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

.order-button:hover {
    background-color: #7ad207;
    transform: scale(1.05);
}

@media (max-width: 600px) {
    .dishes-section {
        grid-template-columns: 1fr;
    }
}
/* dishes section */
.dishes-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
}

.dish {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dish img {
    max-width: 100%;
    border-radius: 8px;
}

button {
    background-color: #1e90ff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #104e8b;
}

@media (max-width: 600px) {
    .dishes-section {
        grid-template-columns: 1fr;
    }
}
/* order section */
.order-section {
    margin-top: 80px;
    padding: 40px 20px;
    background-color: #f7f7e1;
}

.order-section .container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.order-section h2 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 2em;
    position: relative;
}

.order-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: orange;
}

.form-group {
    margin-bottom: 25px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
    font-size: 1.1em;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1em;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #4CAF50;
    outline: none;
}

/* Order Items Section */
.order-items {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.order-items h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.order-item {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 80px;
    gap: 15px;
    align-items: center;
    background-color: white;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Buttons Styling */
.add-item-btn {
    background-color: #4CAF50;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s;
    width: auto;
    margin: 15px 0;
}

.add-item-btn:hover {
    background-color: #45a049;
}

/* Order Summary Section */
.order-summary {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border: 2px solid #e9ecef;
}

.estimated-time {
    background-color: #e8f5e9;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: center;
    border: 2px solid #c8e6c9;
}

.estimated-time h4 {
    color: #2e7d32;
    margin: 0;
    font-size: 1.1em;
}

.estimated-time p {
    color: #388e3c;
    margin: 5px 0 0 0;
    font-size: 1.2em;
    font-weight: bold;
}

/* Action Buttons */
.order-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.edit-btn, .review-btn, .confirm-btn {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.2s, background-color 0.3s;
}

.edit-btn {
    background-color: #ffa500;
    color: white;
}

.review-btn {
    background-color: #4a90e2;
    color: white;
}

.confirm-btn {
    background-color: #4CAF50;
    color: white;
}

.edit-btn:hover, .review-btn:hover, .confirm-btn:hover {
    transform: translateY(-2px);
    filter: brightness(110%);
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    animation: fadeIn 0.3s;
}

.modal-content {
    position: relative;
    background-color: #fff;
    margin: 15% auto;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.4s;
}

.success-modal {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 70px;
    color: #4CAF50;
    margin-bottom: 20px;
    animation: scaleIn 0.5s ease-out;
}

.success-modal h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 15px;
}

.success-modal p {
    color: #666;
    margin: 10px 0;
    font-size: 16px;
}

.close-modal-btn {
    background-color: #4CAF50;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 25px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.close-modal-btn:hover {
    background-color: #45a049;
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

/* footer section */
footer {
    background-color:rgb(4, 4, 48); /* Deep blue-gray */
    color: #eee; /* Light gray */
    padding: 10px 0; /* Reduced padding */
    text-align: center;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px; /* Reduced padding */
    
    margin-bottom: 0;
  }
  
  footer h2 {
    font-size: 1.2em; /* Slightly smaller font */
    margin-bottom: 5px; /* Reduced margin */
    color: #ecf0f1; /* Soft white-gray */
  }
  
  footer p, footer a {
    font-size: 0.9em; /* Slightly smaller font */
    color: #bdc3c7; /* Light gray */
    text-decoration: none;
    margin: 3px 0; /* Reduced margin */
  }
  
  footer a:hover {
    color: orange; /* Soft white-gray */
    padding-left: 0.2rem;
    
  }
  
  footer ul {
    list-style: none;
    padding: 0;
  }
  
  footer ul li {
    margin: 3px 0; /* Reduced margin */
  }
  
  footer p {
    margin-top: 10px; /* Reduced margin */
    font-size: 0.8em; /* Slightly smaller font */
    color: #95a5a6; /* Medium gray */
  }
  .links{
    padding-top: 55px;
    font-size: 20px;
}


  /* gallery section */
  #gallery {
    background-color:  #f7f7e1;;
    padding: 20px 0;
    text-align: center;
  }
  
  .galler {
    font-size: 2em;
    margin-bottom: 20px;
    color:black;
  }
  .galler {
    display: inline-block;
    position: relative;
}
.galler::after {
    content: '';
    position: absolute;
    text-decoration: 4px;
    left: 0;
    bottom: 0;
    width: 50%; /* Adjust this value to change the length of the underline */
    height: 6px; /* Adjust this value to change the thickness of the underline */
    background-color:orange; /* Adjust this value to change the color of the underline */
    margin-bottom: -10px;
}
  .gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  
  .gallery-item {
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 30px);
    margin: 10px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .gallery-item img {
    width: 100%;
    height: auto;
  }
  
  .gallery-item .description {
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  .gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .gallery-item:hover .description {
    opacity: 1;
  }

/* Add these styles to your existing CSS */
.order-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.edit-btn {
    background-color: #ffa500;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
}

.review-btn {
    background-color: #4a90e2;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 600px;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
}

.modal-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

/* Search Results Styling */
#search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
}

.search-result-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-result-item:hover {
    background-color: #f5f5f5;
}

.item-name {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.item-details {
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 0.9em;
    margin-bottom: 5px;
}

.item-price {
    color: #4CAF50;
    font-weight: bold;
}

.item-category {
    background-color: #e8f5e9;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8em;
}

.item-description {
    color: #777;
    font-size: 0.9em;
}

.no-results {
    padding: 20px;
    text-align: center;
    color: #666;
}

.error {
    padding: 20px;
    text-align: center;
    color: #f44336;
}

/* Update search bar styling */
.search-bar {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.search-bar input {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    transition: border-color 0.3s;
}

.search-bar input:focus {
    border-color: #4CAF50;
    outline: none;
}

/* Search Container and Bar Styles */
.search-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(247, 247, 225, 0.95);
    padding: 20px;
    display: none;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.search-bar {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.search-bar input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1.1em;
    transition: all 0.3s ease;
}

.search-bar input:focus {
    border-color: #4CAF50;
    outline: none;
    box-shadow: 0 0 5px rgba(74, 167, 78, 0.3);
}

.close-search {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.2em;
    color: #666;
    cursor: pointer;
    padding: 5px;
}

.close-search:hover {
    color: #333;
}

/* Search Results Styles */
#search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 400px;
    overflow-y: auto;
    margin-top: 5px;
}

.search-result-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-result-item:hover {
    background-color: #f5f5f5;
}

.result-info {
    flex: 1;
}

.result-name {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.result-description {
    color: #666;
    font-size: 0.9em;
}

.result-price {
    color: #4CAF50;
    font-weight: bold;
    margin-left: 15px;
}

.no-results {
    padding: 20px;
    text-align: center;
    color: #666;
}

/* Search Styles */
.search-wrapper {
    position: relative;
    width: 200px;
}

#searchInput {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

#searchInput:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 5px rgba(74, 167, 78, 0.3);
}

.search-results {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    margin-top: 5px;
}

.search-result-item {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.search-result-item:hover {
    background-color: #f5f5f5;
}

.result-name {
    font-weight: bold;
    color: #333;
    margin-bottom: 3px;
}

.result-description {
    font-size: 0.8em;
    color: #666;
}

.result-price {
    color: #4CAF50;
    font-weight: bold;
    margin-top: 3px;
}

.no-results {
    padding: 15px;
    text-align: center;
    color: #666;
}

/* Responsive styles */
@media (max-width: 768px) {
    .search-wrapper {
        width: 100%;
        margin: 10px 0;
    }
    
    .search-results {
        position: fixed;
        top: auto;
        left: 10px;
        right: 10px;
        max-height: 50vh;
    }
}

/* Feedback Section Styles */
.feedback-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.feedback-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    position: relative;
}

.feedback-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: orange;
}

.feedback-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
}

.form-group textarea {
    resize: vertical;
}

/* Star Rating Styles */
.rating {
    margin-bottom: 20px;
    text-align: center;
}

.star-rating {
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 5px;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 30px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: #ffd700;
}

.submit-feedback {
    background-color: #4CAF50;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-size: 1em;
    transition: background-color 0.3s;
}

.submit-feedback:hover {
    background-color: #45a049;
}

/* Success Modal Styles */
.success-icon {
    font-size: 48px;
    color: #4CAF50;
    text-align: center;
    margin: 20px 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .feedback-form {
        padding: 20px;
    }
}

/* Reviews Container Styles */
.reviews-container {
    max-width: 800px;
    margin: 0 auto 40px;
}

.review-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.reviewer-name {
    font-weight: bold;
    color: #333;
    font-size: 1.1em;
}

.review-date {
    color: #666;
    font-size: 0.9em;
}

.review-stars {
    color: #ffd700;
    margin: 10px 0;
}

.review-dish {
    color: #4CAF50;
    font-weight: bold;
    margin-bottom: 10px;
}

.review-comment {
    color: #555;
    line-height: 1.5;
}

/* Update feedback form styles */
.feedback-form {
    margin-top: 40px;
    border-top: 2px solid #eee;
    padding-top: 40px;
}

.feedback-form h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

#feedbackDish {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
}

/* Enhanced Feedback Form Styles */
.feedback-section {
    padding: 80px 20px;
    background-color: #f7f7e1;
}

.feedback-form {
    max-width: 600px;
    margin: 0 auto 40px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.rating-group {
    margin: 20px 0;
    text-align: center;
}

.rating-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
}

.star-rating {
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 8px;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 35px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: #ffd700;
}

/* Success Modal Styles */
.success-modal {
    text-align: center;
    padding: 40px;
}

.success-icon {
    font-size: 60px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.close-modal-btn {
    background-color: #4CAF50;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 20px;
    font-size: 1em;
    transition: background-color 0.3s;
}

.close-modal-btn:hover {
    background-color: #45a049;
}

/* Reviews Display Styles */
.reviews-section {
    max-width: 800px;
    margin: 40px auto;
}

.reviews-section h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.review-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-name {
    font-weight: bold;
    color: #333;
    font-size: 1.1em;
}

.review-date {
    color: #666;
    font-size: 0.9em;
}

.review-stars {
    color: #ffd700;
    margin: 10px 0;
    font-size: 1.2em;
}

.review-dish {
    color: #4CAF50;
    font-weight: bold;
    margin: 10px 0;
}

.review-comment {
    color: #555;
    line-height: 1.6;
}

/* Success Message Styles */
.success-message {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    animation: slideDown 0.5s ease-out;
}

.success-modal {
    text-align: center;
}

.success-icon {
    font-size: 60px;
    color: #4CAF50;
    margin-bottom: 20px;
    animation: scaleIn 0.5s ease-out;
}

.success-modal h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 15px;
}

.success-modal p {
    color: #666;
    margin: 10px 0;
    font-size: 16px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

/* Feedback Success Message Styles */
.feedback-success-message {
    max-width: 600px;
    margin: 20px auto;
    padding: 25px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    animation: slideInAndFade 0.5s ease-out;
    transition: opacity 0.5s ease;
}

.success-content {
    text-align: center;
}

.success-icon {
    font-size: 70px;
    color: #4CAF50;
    margin-bottom: 20px;
    animation: scaleInRotate 0.6s ease-out;
}

.feedback-success-message h3 {
    color: #2e7d32;
    font-size: 24px;
    margin-bottom: 15px;
}

.feedback-success-message p {
    color: #555;
    margin: 10px 0;
    font-size: 16px;
}

.success-details {
    margin-top: 15px;
    padding: 15px;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.success-details p {
    margin: 5px 0;
    color: #666;
}

@keyframes slideInAndFade {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleInRotate {
    0% {
        transform: scale(0) rotate(-180deg);
    }
    100% {
        transform: scale(1) rotate(0);
    }
}

.search-bar {
    position: relative;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
}

.search-result-item {
    display: flex;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-right: 10px;
}

.search-result-content {
    flex: 1;
}

.search-result-content h3 {
    margin: 0 0 5px 0;
    font-size: 16px;
}

.search-result-content p {
    margin: 0 0 5px 0;
    font-size: 14px;
    color: #666;
}

.no-results {
    padding: 15px;
    text-align: center;
    color: #666;
}

.error {
    padding: 15px;
    text-align: center;
    color: #ff0000;
}

/* Add these styles to your existing CSS */
.price {
    color: #4CAF50;
    font-weight: bold;
    font-size: 16px;
    margin: 5px 0;
}

.search-result-item {
    display: flex;
    padding: 15px;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s;
    cursor: pointer;
}

.search-result-item:hover {
    background-color: #f5f5f5;
}

.search-result-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.view-details {
    align-self: flex-start;
    margin-top: 10px;
}

/* Add this to your existing CSS */
.category {
    display: inline-block;
    background-color: #f0f0f0;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 12px;
    color: #666;
    margin: 5px 0;
}

/* Add margin to the main content to prevent header overlap */
main, section:first-of-type {
    margin-top: 80px;
}
