.menu-page {
    padding: 120px 5% 4rem;
    background-color: #FFE5B4; /* Main peach background */
}

.menu-page h1 {
    text-align: center;
    color: #1a1a1a; /* Black text */
    margin-bottom: 2rem;
}

.section-title {
    text-align: left;
    color: #1a1a1a; /* Black text */
    margin: 3rem 0 2rem;
    font-size: 1.8rem;
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid #ff6b00;
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.category-btn {
    padding: 0.5rem 1.5rem;
    border: none;
    background-color: #FFDAB9; /* Lighter peach for buttons */
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
}

.category-btn.active,
.category-btn:hover {
    background-color: #ff6b00;
    color: #fff;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.menu-item {
    background-color: #FFDAB9; /* Lighter peach for menu items */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.menu-item h3 {
    padding: 1rem 1rem 0.5rem;
    color: #1a1a1a; /* Black text */
}

.menu-item p {
    padding: 0 1rem;
    color: #333; /* Dark gray text */
    font-size: 0.9rem;
    min-height: 40px;
}

.menu-item .price {
    display: block;
    padding: 0.5rem 1rem;
    color: #ff6b00;
    font-weight: 600;
    font-size: 1.2rem;
}

.order-btn {
    width: 100%;
    padding: 1rem;
    border: none;
    background-color: #ff6b00;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.order-btn:hover {
    background-color: #e65100;
}

@media (max-width: 768px) {
    .menu-categories {
        flex-wrap: wrap;
    }
    
    .menu-item {
        max-width: 350px;
        margin: 0 auto;
    }
} 