/* Content Section Styling */
.content {
    text-align: center;
    padding: 20px;
}

/* Food Container */
.food-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Food Item Styling */
.food-item {
    width: 180px;
    height: 220px;
    background: #f8f8f8;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    opacity: 0;
    animation: fadeIn 0.6s ease-in-out forwards;
}

/* Food Item Image */
/* Food Item Image - Increased Size */
.food-item img {
    width: 120px;  /* Increased size */
    height: 120px; /* Increased size */
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease-in-out;
}


/* Hover Effects */
.food-item:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.food-item:hover img {
    transform: rotate(10deg) scale(1.1);
}

/* Text Below Image */
.food-item p {
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

/* Arrival Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .food-container {
        flex-direction: column;
        align-items: center;
    }
}

/* Restaurants Section */
.restaurants {
    text-align: center;
    padding: 20px;
}

.restaurants h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

/* Restaurant Container */
.restaurant-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Individual Restaurant Item */
.restaurant-item {
    width: 200px;
    background: #f8f8f8;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    opacity: 0;
    animation: fadeIn 0.6s ease-in-out forwards;
}

/* Restaurant Image */
.restaurant-item img {
    width: 180px;
    height: 120px;
    border-radius: 10px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

/* Hover Effects */
.restaurant-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.restaurant-item:hover img {
    transform: scale(1.1);
}

/* Restaurant Name */
.restaurant-item p {
    margin: 10px 0;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

/* Rating */
.rating {
    font-size: 16px;
    color: #ff9800;
    font-weight: bold;
}

/* Arrival Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .restaurant-container {
        flex-direction: column;
        align-items: center;
    }
}



