.best-food-section {
    padding: 80px 20px;
    background: #fff8f0;
    text-align: center;
    margin-top: -100px;
}

.best-food-section .section-title {
    font-size: 3.5rem;
    color: #ff6600;
    margin-bottom: 10px;
}

.best-food-section .section-subtitle {
    color: #555;
    margin-bottom: 50px;
    font-size:2rem;
}

.best-food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    justify-items: center;
    margin-right: 15px;
}

.food-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 300px;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.food-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.food-info {
    padding: 15px;
}

.food-name {
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.food-desc {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #666;
}

.food-price {
    font-weight: bold;
    margin-bottom: 10px;
    color:#ff6600;
}

.view-btn {
    display: inline-block;
    padding: 8px 15px;
 background-color: #ff6600;
 color: #fff;
    border-radius: 5px;
    text-decoration: none;
}
