nav {
    display: flex;
    justify-content: space-between;
    align-items: center;  
    padding: 10px 20px;  
}

nav a {
    margin-left: 20px;
    color: black;
    text-decoration: none;
    font-weight: bold;
    font-size: 30px;
}

h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.nav-links {
    display: flex;
    align-items: center;
    margin-left: auto; 
}

#food-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 20px;
}

.food-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: left;
    padding: 10px;
}

.food-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5px 0;
}

.food-name {
    font-weight: bold;
    font-size: 18px;
}

.food-price {
    font-size: 18px;
    color: green;
}

.food-rating {
    color: #ff9900;
}

.order-btn {
    padding: 5px 10px;
    background: #ff4081;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
}

.search-container {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.search {
    width: 300px;
    padding: 10px 15px;
    font-size: 16px;
    border: 2px solid #ff4081;
    border-radius: 25px;
    outline: none;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.search:focus {
    border-color: #ff77a9;
    box-shadow: 0 4px 12px rgba(255, 64, 129, 0.4);
}