/* Menu Page */
.menu-page {
    padding: 8rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-page__title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

/* Menu List */
.menu-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-item__image {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.menu-item__content {
    flex: 1;
    padding: 0 2rem;
}

.menu-item__title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.menu-item__description {
    color: #666;
    line-height: 1.6;
}

.menu-item__price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    padding-left: 2rem;
    border-left: 1px solid #eee;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-page {
        padding: 6rem 1rem 2rem;
    }

    .menu-page__title {
        font-size: 2rem;
    }

    .menu-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .menu-item__image {
        width: 100%;
        height: 200px;
        margin-bottom: 1rem;
    }

    .menu-item__content {
        padding: 1rem 0;
    }

    .menu-item__price {
        padding: 1rem 0 0;
        border-left: none;
        border-top: 1px solid #eee;
    }
} 